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




 /* 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;
        }

      








   .page-title{
      margin: 0 auto;
   }
 .page-title {
      text-align: center;
      margin-bottom:-50px;
      margin-top: 40px;
      color:#FF69B4;
      font-size: 3.5rem;
 }
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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


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

/* Studio Section */
.studio-section {
    padding: 40px 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: #000;
    margin-bottom: 1.5rem;
    
    font-family: 'Poppins';
}

.section-text {
    font-size: 1.1rem;
    font-weight: 300;
    color: #121212;
    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.5rem;
    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;
    }



    .important-info-section{
        padding: 0;
    }

  
    .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;
    }
    .container{
        padding: 0;
      
    }
    .policy-text{
        text-align: justify;
        font-size: 1rem;
    }

    .important-info-section{
        padding:4rem 0rem;
    }
}





 @media (max-width: 480px) {
    
 

     
.hero-text {
    font-size: 0.9rem;
    font-weight: 300;
    color: #121212;
    line-height: 2;
    max-width: 90%;
    text-align: justify;
    margin: 0 auto;
  
}
     .info-title{
        font-size: 0.9rem;
     }

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

     .policy-text{
        font-size: 0.8rem;
     }

 }







        .mission-vision-section{
            margin: 0 auto;

        }
    

         .column{
            margin:0 auto;
         }

        
        .section-title{
            text-align: center;
            
              
        }


        .section-text{
      
        margin: 0 auto;
        text-align:justify;
          max-width: 90%;
          word-spacing: 0rem;
          font-size: 0.9rem;
        

        }
    


