
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 body{
    background-color: #000000;
 }




 /* scroll2Dtop */
 
    /* Scroll to top button styles */
        #scrollToTop {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #3498db;
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
        }

        /* Show button when scrolled */
        #scrollToTop.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* Hover effects */
        #scrollToTop:hover {
            background: #2980b9;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.3);
        }

        /* Active state */
        #scrollToTop:active {
            transform: translateY(0);
        }

        /* Alternative square button style */
        .square-btn {
            border-radius: 8px !important;
            width: 45px;
            height: 45px;
        }

        /* Alternative with icon */
        .arrow-up {
            font-size: 16px;
        }

        /* Smooth scroll behavior */
        html {
            scroll-behavior: smooth;
        }

      






/* Navigation */
.navbar {
    background-color:  #FFA6C9;
    padding: 0.5rem 0;
    position: relative;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    color: black;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin-left: 2rem;
}

.nav-link {
    color: black;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}


.nav-link.active {
    color: black;
}


.nav-link:hover {
    color: #ddd;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero-sections {
    padding: 80px 0;
   
   
}

.page-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: #FF69B4;
    margin-bottom: 2rem;
    font-family: serif;
     font-family: 'Pacifico', cursive;
       
}

.hero-text {
    font-size: 1.1rem;
    font-weight: 300;
    color: #F6E1D3;
    line-height: 2;
    max-width: 800px;
    margin: 0 auto;
  
}

/* Studio Section */
.studio-section {
    padding: 80px 0;
}

.studio-image {
    max-width: 800px;
    margin: 0 auto;
}

.studio-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.studio-image img:hover {
    transform: scale(1.02);
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 80px 0;
}

.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #ffa6c9;
    margin-bottom: 1.5rem;
    
    font-family: 'Poppins';
}

.section-text {
    font-size: 1.1rem;
    font-weight: 300;
    color: #F6E1D3;
    line-height: 2;
}

/* Luxury Banner */
.luxury-banner {
    background-color: #FFA6C9;
    padding: 24px 0;
    text-align: center;
}

.luxury-text {
    font-size: 2rem;
    font-weight: 400;
    color: #000000;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

/* Important Information */
.important-info-section {
    padding: 40px 0 80px;
}

.info-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: #2a2a2a;
    border: 3px solid  #F6E1D3;
    border-radius: 8px;
    padding: 40px;
}

.info-title {
    font-size: 1.8rem;
    font-weight: 400;
    color:  #F6E1D3;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
}

.policy-section {
    margin-bottom: 2rem;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-heading {
    font-size: 1.5rem;
    font-weight: 400;
    color: #FF69B4;
    text-align: center;
    font-family: serif;
    font-style: italic;
    margin-bottom: 1rem;
}

.policy-text {
    font-size: 1rem;
    font-weight: 300;
    color: #F6E1D3;
    line-height: 1.6;
    text-align: center;
}

/* Footer */
/* .footer {
    background-color: #000000;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-content {
    color: #DAA520;
    font-size: 0.9rem;
} */

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 120px;
        flex-direction: column;
        background-color: #333;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 0;
    }

    .nav-link {
        padding: 1rem;
        display: block;
        border-bottom: 1px solid #444;
    }

    .nav-link:hover {
        background-color: #444;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .two-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .luxury-text {
        font-size: 1.5rem;
        letter-spacing: 0.2em;
    }

    .info-box {
        padding: 20px;
        margin: 0 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* Tablet Styles */
@media screen and (max-width: 1024px) and (min-width: 769px) {
    .nav-left {
        gap: 1.5rem;
    }

    .container {
        padding: 0 1.5rem;
    }
}

/* Small Mobile Styles */
@media screen and (max-width: 480px) {
    .banner-content {
        font-size: 0.8rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .hero-text, .section-text {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .luxury-text {
        font-size: 1.2rem;
    }

    .info-title {
        font-size: 1.5rem;
    }

    .policy-heading {
        font-size: 1.3rem;
    }
}









        /* fifth-container */
        
        .footer {
          
            color: #F6E1D3;
            padding: 3rem 2rem 1rem;
            position: relative;
            overflow: hidden;
              border-top: 1px solid #333;
        }

    

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-main {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 3rem;
            margin-bottom: 2.5rem;
        }

        .footer-left {
            flex: 1;
        }

        .footer-right {
            flex: 1;
            display: flex;
            justify-content: flex-end;
        }

        .social-links {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .social-links h3 {
            color: #FF69B4;
            margin-bottom: 1rem;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .social-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: #e0e6ed;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 0.5rem 0;
            border-radius: 8px;
            position: relative;
        }

        .social-item:hover {
            color: #FF69B4;
            transform: translateX(10px);
            background: rgba(100, 255, 218, 0.1);
            padding-left: 1rem;
        }

        .social-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .navs-links {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .navs-links h3 {
            color: #FF69B4;
            margin-bottom: 1rem;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .navs-link {
            color: #F6E1D3;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 0.5rem 0;
            position: relative;
            font-size: 1rem;
        }

        .navs-link:hover {
            color: #FF69B4;
            transform: translateX(-10px);
        }

        .navs-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #FFA6C9;
            transition: width 0.3s ease;
        }

        .navs-link:hover::after {
            width: 100%;
        }

        .footer-bottom {
            border-top: 1px solid #F6E1D3;
            padding-top: 1.5rem;
            text-align: center;
            color: #F6E1D3;
            font-size: 0.9rem;
            position: relative;
        }

        .copyright {
            background: #FFA6C9;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 500;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
             .footer {
                padding: 2rem 1rem 1rem;
            }

            .footer-main {
                gap: 1.5rem;
            }

            .footer-left,
            .footer-right {
                flex: 1;
            }

            .footer-right {
                justify-content: center;
            } */

            .social-links h3,
            .navs-links h3 {
                font-size: 1.1rem;
                margin-bottom: 0.75rem;
            }

            .social-item,
            .navs-link {
                font-size: 0.9rem;
                padding: 0.4rem 0;
            }

            .social-item:hover {
                transform: translateX(8px);
                padding-left: 0.75rem;
            }

            .navs-link:hover {
                transform: translateX(-8px);
            }
        }

        @media (max-width: 480px) {
            .footer {
                padding: 1.5rem 0.75rem 1rem;
            }

            .footer-main {
                gap: 1.5rem;
            }

            .social-links h3,
            .navs-links h3 {
                font-size: 0.8rem;
            }

            .social-item,
            .navs-link {
                font-size: 0.6rem;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .footer-content > * {
            animation: fadeInUp 0.8s ease forwards;
        }

        .footer-main {
            animation-delay: 0.2s;
        }

        .footer-bottom {
            animation-delay: 0.4s;
        }