* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



 body{
    background-color: #f7f7f2;
 }
 p{
      font-family: "Comfortaa", sans-serif;
 }
   




    /* 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;
        }

      










 /* hero section */
         

        .hero-section {
            min-height: 70vh;
            width: 100%;
            background: linear-gradient(rgba(17, 17, 18, 0.85), rgba(0, 0, 0, 0.85)), 
                        url('../images/mb.png') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
        }

        .container-section {
            width: 100%;
            max-width: 1200px;
            text-align: center;
        }

        .content {
            max-width: 700px;
            margin: 0 auto;
        }

       .contents h1 {
            font-size: clamp(32px, 6vw, 64px);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 30px;
        }

        .gradient-text {
            background: linear-gradient(90deg, #FFA6C9, #f6e1d3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .white-text {
            color: white;
        }

        .sub {
            color: #e2e8f0;
            font-size: clamp(18px, 3vw, 24px);
            margin-bottom: 40px;
            line-height: 1.5;
        }

        .button {
            background: linear-gradient(13deg, #ff69b4, #ffa6c9);
            color: white;
            border: none;
            border-radius: 35px;
            padding: 18px 40px;
            font-size: 15px;
            font-weight: 600;
          
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: inline-block;
        }

        .button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 5px #f6e1d3;
        }

        @media (min-width: 768px) {
            .hero-scetion {
                background: linear-gradient(90deg, rgba(33, 34, 35, 0.95) 50%, rgba(15, 23, 42, 0.3) 100%),
                            url('../images/banner_img.jpg') right center/cover;
            }

            .container-section {
                text-align: left;
            }

            .contents {
                margin: 0;
                max-width: 600px;
                margin-left:80px

            }
        }

        @media (min-width: 1024px) {
            .hero-section {
                padding: 60px 40px;
            }

            .contents {
                max-width: 650px;
            }
        }
      

        
        @media (max-width: 468px) {
               .hero-section {
               
                
             background:linear-gradient(rgba(29, 30, 32, 0.85), rgba(15, 15, 15, 0.85)), 
                            url('../images/mb.png');
                            background-size: cover;
                            position:center;
                           background-repeat:no-repeat;
                         min-height: 60vh;
                       
                        
            } 
        }
     

       .contents {
                margin: 0;
                max-width: 600px;
                margin-left: 0px

            }

      
        /* Video Section */
   



     .video-section {
            position: relative;
            width: 100%;
            height: 100vh;
            margin-top: 70px;
        
            overflow: hidden;
        }

        .video-section video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            padding: 20px;
        }

        .video-content h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .video-content p {
            font-size: 1.5rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        @media (max-width: 768px) {
            .video-content h1 {
                font-size: 2rem;
            }
            
            .video-content p {
                font-size: 1.2rem;
            }
        }


      @media (max-width: 486px) {
           .video-section{
                position: relative;
            width: 100%;
            height: 50vh;
        
            overflow: hidden;
             
           }

      }





        
     

        /* Services Grid */
        .services-grid {
            display: flex;
            justify-content: center;
            gap: 8rem;
            flex-wrap: wrap;
            margin-top: 40px;
            margin-bottom: 30px;
        }

        .service-card {
         
            border-radius: 15px;
            padding: 25px;
            text-align: left;
            max-width: 300px;
            width: 100%;
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .service-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        .service-title {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color:#1a1a1a;
        }

        .service-details p {
            margin: 8px 0;
            color:#1a1a1a;
            font-size: 0.95rem;
        }

        .service-price {
            font-size: 1.3rem;
            font-weight: bold;
        
            margin: 15px 0;
        }

        .book-btn {
            background-color: black;
            color: #fafafa;
            padding: 12px 25px;
            border: none;
      
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
            margin-top: 10px;
             font-family: 'Comfortaa', sans-serif;
        }

       

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
         
            .services-grid {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }

            .service-card {
                max-width: 80%;
            }

          .hero h2{
            font-size:1.5rem;
          }
        }

        @media (max-width: 480px) {
         

              
          .hero h2{
            font-size:1rem;
          }



            .service-title {
                font-size: 1.3rem;
            }

            .book-vip-btn {
                padding: 10px 25px;
                font-size: 1rem;
                 font-family: 'Comfortaa', sans-serif;
            }


            .subtitle{
                color:#FF69B4;
            }
        }










        /* second-container */

 

               #book{
                 
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }  

        .hero {
            text-align: center;
            margin-bottom: 60px;
        }
             

           .hero h2{
              font-size:2rem;
              padding: 10px;
            }






        .hero p {
            font-size: 1.2rem;
        
            max-width: 600px;
            margin: 0 auto;
        }

        .options-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 60px;
            justify-content: center;
        }

        .card {
          
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            flex: 1 1 350px;
            max-width: 400px;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
        }

        .card-image {
            width: 90%;
            height: 40vh;
            background-size: cover;
            background-position: center;
            position: relative;
          
        } 

      


        .hair-styling {
            background:h1 ;
        }

        .meet-greet {
            background:h1;
        }

        .consultation {
            background: h1;
        }

        .card-content {
            padding: 30px;
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .card-description {
            color: #1a1a1a;
            margin-bottom: 25px;
            font-size: 1rem;
        }

        .action-btn {
            background: black;
            color: #fafafa;
            border: none;
            padding: 15px 15px;
          
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
             font-family: 'Comfortaa', sans-serif;
        }

        .action-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
        }

        .featured-card {
            flex: 1 1 100%;
            max-width: 500px;
            margin: 0 auto;
        }

       /* detailes section */



        /* Mobile Responsive */
        @media (max-width: 768px) {
            .wrapper {
                padding: 20px 15px;
            }
           

            .hero p {
                font-size: 1.1rem;
            }

            .options-grid {
                flex-direction: column;
                gap: 30px;
            }

            .card {
                flex: 1 1 auto;
                max-width: none;
            }

            .card-image {
                height: 250px;
            }

            .card-content {
                padding: 25px;
            }


            .action-btn {
                width: 100%;
         
            }
        }

        @media (max-width: 480px) {
           


            
            .hero h2 {
                font-size: 1.5rem;
                line-height: 1;
            }

            .hero p {
                font-size: 1rem;
                line-height: 1.5;
            }

            .card-description{
                line-height: 2;
            }
    
            }

            .card-content {
                padding: 20px;
            }

            .details-section {
                padding: 20px;
            }

   
              .action-btn {
                width:90%;
              padding: 10px 10px;
              font-size: 0.7rem;
            }
        
    






        /* third-container */



    .third-container {
        padding: 0;
            min-height: 40vh;
               display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem;
            position: relative;
        }

        .service-highlights {
            display: flex;
            gap: 4rem;
            margin-bottom: 4rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .service-item {
            text-align: center;
            max-width: 300px;
        }

        .service-icon {
           max-width: 90%;
          height: 40vh;
          border-radius: 20px;
            overflow: hidden; 
          
        }

        .service-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .service-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            margin-top: 0.5rem;
            color: #1a1a1a;
        }

        .service-description {
            color: #333333;
            font-size: 1rem;
       
            
        }

        

        .main-title {
            font-size: 2rem;
            font-weight: bold;
            color: #1a1a1a;
            margin-bottom: 0.6rem;
            text-align: center;
        }

        .main-subtitle {
            font-size: 1.2rem;
            color: #333333;
            margin-bottom: 1rem;
            text-align: center;
            max-width: 500px;
        }

        .cta-button {
            background:#FF69B4;
            color: #fafafa;
            border: none;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 4rem;
        }

        .cta-button:hover {
            background: #FF69B4;
            transform: translateY(-2px);
        }

        .gallery {
            padding: 2rem;
            margin-bottom: 2rem;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .gallery-item {
            border-radius: 20px;
            overflow: hidden;
            background: #222;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.02);
        }

        .gallery-item img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .main-title {
                font-size: 2.5rem;
            }

            .service-highlights {
                flex-direction: column;
                gap: 2rem;
                align-items: center;
            }

            .service-item {
                max-width: 280px;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.5rem;
            }

            .gallery-item img {
                height: 300px;
            }

            .third-container {
                padding: 1rem;
            }

            .cta-button {
                padding: 0.8rem 2rem;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {

            .gallery{
                padding: 0.7rem;
            }
            .main-title {
                font-size: 2rem;
            }
  
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.8rem;
            }
            .gallery-item img {
                height: 250px;
               
            }

    .service-description {
            color: #333333;
            font-size: 1rem;
            line-height: 1.5;
           
       
            
        }

            
        .gallery-item img {
            width: 100%;
            height: 30vh;
            object-fit: cover;
        }
        }















        /* fourth-container */
           .fourth-container {
                 
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                        url('../images/home_bg.jpeg');
            background-size: cover;
            background-position: center;
            min-height: 60vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem;
            position: relative;
        }

        .brand-name {
            font-size: 0.8rem;
            letter-spacing: 3px;
            margin-bottom: 2rem;
            opacity: 0.8;
            font-weight: 300;
            color:#f7f7f2;
        }

        .hero-title {
            font-size: 3rem;
            letter-spacing: 8px;
            margin-bottom: 2rem;
            font-weight: 300;
            color:#FFA6C9;
        }

        .social-handle {
            font-size: 1.5rem;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            font-weight: 300;
            color:#f2f2f2
        }

        .subtitle {
            font-size: 0.9rem;
            letter-spacing: 2px;
            opacity: 0.8;
            color:#F6E1D3;
            max-width: 600px;
            font-weight: 300;
        }




        /* faq section */

          .faq-title {
            text-align: center;
            font-size: 3rem;
            color:#000;
            margin-bottom: 3rem;
            letter-spacing: 3px;
            font-weight: 300;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .faq-item {
          
            padding: 1.5rem;
            border-radius: 8px;
          
            transition: transform 0.3s ease, background 0.3s ease;
        }

        .faq-item:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.08);
        }

        .faq-question {
            font-size: 1.1rem;
            color:#121212;
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .faq-answer {
            font-size: 0.95rem;
            line-height: 1.6;
            opacity: 0.9;
            font-weight: 300;
            color:#1a1a1a;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
                letter-spacing: 4px;
            }

            .social-handle {
                font-size: 1.2rem;
                letter-spacing: 1px;
            }

            .brand-name {
                font-size: 0.7rem;
                letter-spacing: 2px;
            }

            .subtitle {
                font-size: 0.8rem;
                letter-spacing: 1px;
            }

            .faq-title {
                font-size: 2.5rem;
                letter-spacing: 2px;
            }

            .faq-section {
                padding: 2rem 1rem;
            }

            .faq-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .faq-item {
                padding: 1.25rem;
            }

            .fourth-container {
                min-height: 50vh;
                padding: 1rem;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.5rem;
                letter-spacing: 2px;
            }

            .social-handle {
                font-size: 1rem;
            }

            .faq-title {
                font-size: 2rem;
            }

            .faq-question {
                font-size: 1rem;
            }

            .faq-answer {
                font-size: 0.9rem;
            }
        }