body{
    margin: 0;
    font-family: 'Georgia', 'Times New Roman', serif;
}
   /* NAVBAR*/
   .navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    background: #fff;
   }
   .logo{
    font-size: 18px;
    font-weight: bold;
    color: #FFB6C1;
   }
   .nav-links{
    font-size: 16px;
    display: flex;
    gap: 40px;
    align-items: center;
    margin: 0;
    padding: 0;
   }
   .nav-links li{
    list-style: none;
   }
   .nav-link{
    text-decoration: none;
    color: #333;
    cursor: pointer;
    transition: color 0.3s;
    display: block;
   }
   .nav-link:hover{
    color: #FFB6C1;
   }
   .login-btn{
    padding: 10px 24px;
    border: none;
    background: #FFB6C1;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 182, 193, 0.3);
   }
   .login-btn:hover{
    background: #ff69b4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.5);
   }
   .login-btn:active{
    transform: translateY(0);
   }
   /*HERO SELECTION*/
   .hero{
    text-align: center;
    padding: 100px 20px 60px;
   }
   .hero h1{
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 400;
    font-family: 'Georgia', 'Times New Roman', serif;
   }
   .hero p{
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
   }
   .hero-image{
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   }
   .salon-img{
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
   }
   /*STATS*/
   .stats{
    display: flex;
    justify-content: center;
    gap: 60px;
    background: #FFC0CB;
    color: #333;
    padding: 50px 20px;
    margin-top: 0;
   }
   .stat-box{
    text-align: center;
   }
   .stat-box h2{
    font-size: 32px;
    font-weight: 400;
    margin: 0 0 5px 0;
    font-family: 'Georgia', 'Times New Roman', serif;
   }
   .stat-box p{
    font-size: 14px;
    font-weight: 300;
    margin: 0;
   }
   /*ALL SERVICES*/
   .all-services{
    padding: 60px 50px;
    background: #000;
    border-radius: 20px;
    margin: 80px 40px;
   }
   .services-content{
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
   }
   .services-text{
    flex: 1;
    color: #fff;
   }
   .services-text h2{
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 30px;
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #fff;
   }
   .services-text p{
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 40px;
    opacity: 0.9;
   }
   .services-list{
    list-style: none;
    padding: 0;
    margin: 0;
   }
   .services-list li{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
   }
   .service-line{
    width: 40px;
    height: 2px;
    background: #FFB6C1;
    flex-shrink: 0;
   }
   .service-name{
    font-size: 18px;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
   }
   .services-images{
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    height: 600px;
   }
   .image-large{
    grid-row: 1 / 3;
   }
   .image-large img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
   }
   .images-small{
    display: flex;
    flex-direction: column;
    gap: 15px;
   }
   .image-small{
    flex: 1;
   }
   .image-small img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
   }
   /*SERVICES*/
   .services{
    padding:80px 40px;
    text-align: center;
   }
   .services h2{
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 40px;
    font-family: 'Georgia', 'Times New Roman', serif;
   }
   .service-grid{
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
   }
   .card{
    background: #000;
    padding: 20px;
    border-radius: 8px;
    width: 200px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
   }
   .card .img{
    width: 100%;
    height: 150px;
    background: #333;
    border-radius: 4px;
    margin-bottom: 10px;
    overflow: hidden;
   }
   .card .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
   }
   .card p{
    margin: 0;
    font-size: 16px;
    color: #fff;
   }
   /*SURPRISE BANNER*/
   .surprise-banner{
    background: #000;
    border-radius: 20px;
    margin: 80px 40px;
    padding: 60px 50px;
   }
   .banner-content{
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
   }
   .banner-title{
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 48px;
    font-weight: 400;
    color: #fff;
    margin: 0;
    flex-shrink: 0;
    min-width: 300px;
   }
   .banner-text{
    font-size: 14px;
    color: #fff;
    line-height: 1.6;
    margin: 0;
    flex: 1;
   }
   .banner-btn{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FFB6C1;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s;
   }
   .banner-btn:hover{
    background: #FFC0CB;
   }
   /*ABOUT US*/
   .about-us{
    padding: 80px 40px;
    background: #fff;
   }
   .about-content{
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
   }
   .about-text{
    flex: 1;
   }
   .about-text h2{
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 42px;
    font-weight: 400;
    color: #333;
    margin: 0 0 30px 0;
   }
   .about-text p{
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 0 0 20px 0;
   }
   .about-image{
    flex: 1;
   }
   .about-img{
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
   }
   /*WHY CHOOSE US*/
   .why-choose-us{
    padding: 80px 40px;
    background: #fff;
   }
   .why-content{
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
   }
   .why-image{
    flex: 1;
   }
   .why-img{
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
   }
   .why-text{
    flex: 1;
   }
   .why-text h2{
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 42px;
    font-weight: 400;
    color: #333;
    margin: 0 0 30px 0;
   }
   .why-text p{
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 0 0 20px 0;
   }
   .find-us{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
   }
   .find-us span{
    font-size: 16px;
    color: #333;
   }
   .find-btn{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FFB6C1;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
   }
   .find-btn:hover{
    background: #FFC0CB;
   }
   /*FOOTER*/
   .footer{
    background: #000;
    color: #fff;
    padding: 60px 40px 20px;
    margin-top: 0;
   }
   .footer-content{
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 40px;
    gap: 40px;
    flex-wrap: wrap;
   }
   .footer-section{
    flex: 1;
    min-width: 200px;
   }
   .footer-logo{
    font-size: 24px;
    font-weight: bold;
    color: #FFB6C1;
    margin: 0 0 10px 0;
    font-family: 'Georgia', 'Times New Roman', serif;
   }
   .footer-tagline{
    font-size: 14px;
    color: #ccc;
    margin: 0;
   }
   .footer-section h4{
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 20px 0;
    color: #fff;
    font-family: 'Georgia', 'Times New Roman', serif;
   }
   .footer-links{
    list-style: none;
    padding: 0;
    margin: 0;
   }
   .footer-links li{
    margin-bottom: 12px;
   }
   .footer-links a{
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
   }
   .footer-links a:hover{
    color: #FFB6C1;
   }
   .social-links{
    display: flex;
    gap: 15px;
   }
   .social-link{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
    text-decoration: none;
   }
   .social-link:hover{
    background: #FFB6C1;
    color: #000;
    transform: translateY(-3px);
   }
   .footer-bottom{
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
   }
   .footer-bottom p{
    margin: 0;
    font-size: 14px;
    color: #999;
   }
   @media (max-width: 968px){
    .banner-content{
     flex-direction: column;
     text-align: center;
    }
    .banner-title{
     min-width: auto;
    }
    .about-content{
     flex-direction: column-reverse;
    }
    .services-content{
     flex-direction: column;
    }
    .services-images{
     width: 100%;
     height: 500px;
    }
    .why-content{
     flex-direction: column;
    }
    .footer-content{
     flex-direction: column;
     text-align: center;
    }
    .footer-links{
     text-align: center;
    }
    .social-links{
     justify-content: center;
    }
   }