:root {
    --black: #1b1b1b;
    --charcoal: #2E2E2E;
    --grey: #666666;
    --light-grey: #B0B0B0;
    --white: #f7f8f8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background: var(--white);
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    background: var(--charcoal);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 70px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    white-space: nowrap;
    margin-left: 10px;
}

.hamburger {
    display: none;
    font-size: 30px;
    color: var(--white);
    cursor: pointer;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 400;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 20px;
}

.nav-links a:hover {
    color: var(--light-grey);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('Image/hero-Image.png') no-repeat center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    width: 530px;
    height: auto;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 30px;
}

.btn {
    padding: 12px 30px;
    background: var(--white);
    color: var(--black);
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s, transform 0.3s;
}

.btn:hover {
    background: var(--light-grey);
    transform: scale(1.05);
}

/* General Section Styling */
section {
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--charcoal);
    position: relative;
}

h2::after {
    content: '';
    width: 100px;
    height: 3px;
    background: var(--grey);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* About Section */
.about {
    background: var(--white);
    padding: 80px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 18px;
    color: var(--grey);
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* Services Section (Updated to Overlay Text on Image) */
.services {
    background: var(--charcoal);
    padding: 80px 0;
}

#scene {
    display: flex;
    align-items: center;
    justify-content: left;
    width: 100%;
    height: 50vh;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    overflow: hidden;
}

#scene #left-zone {
    background: #fff;
    height: 75%;
    flex-grow: 0;
    display: flex;
    width: 350px;
    align-items: center;
    justify-content: left;
}

#scene #left-zone .list {
    display: flex;
    list-style: none;
    align-content: stretch;
    flex-direction: column;
    flex-grow: 1;
    margin: 0;
    padding: 0;
}

#scene #left-zone .list li.item input[type=radio] {
    display: none;
}

#scene #left-zone .list li.item input[type=radio] ~ label {
    display: block;
    opacity: 0.5;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
}

#scene #left-zone .list li.item input[type=radio] ~ label:first-letter {
    text-transform: uppercase;
}

#scene #left-zone .list li.item input[type=radio] ~ label:hover {
    opacity: 0.75;
    cursor: pointer;
}

#scene #left-zone .list li.item input[type=radio]:checked ~ label {
    opacity: 1;
}

#scene #left-zone .list li.item input[type=radio]:checked ~ label.label_microneedling {
    color: var(--charcoal);
    border-right: solid 4px var(--charcoal);
}

#scene #left-zone .list li.item input[type=radio]:checked ~ label.label_lazerHairRemoval {
    color: var(--charcoal);
    border-right: solid 4px var(--charcoal);
}

#scene #left-zone .list li.item input[type=radio]:checked ~ label.label_ChemicalPeels {
    color: var(--charcoal);
    border-right: solid 4px var(--charcoal);
}

#scene #left-zone .list li.item input[type=radio]:checked ~ label.label_Facials {
    color: var(--charcoal);
    border-right: solid 4px var(--charcoal);
}

#scene #left-zone .list li.item input[type=radio]:checked ~ label.label_dermaplaning {
    color: var(--charcoal);
    border-right: solid 4px var(--charcoal);
}

#scene #left-zone .list li.item input[type=radio]:checked ~ label.label_makeup {
    color: var(--charcoal);
    border-right: solid 4px var(--charcoal);
}

#scene #middle-border {
    background-color: #eee;
    height: 75%;
    flex-grow: 1;
    max-width: 2px;
    z-index: 0;
}

#scene #right-zone {
    background: #fff;
    height: 100%;
    flex-grow: 3;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-image 0.5s ease;
}

#scene #right-zone.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

#scene #right-zone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

#scene #right-zone .content-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 20px;
}

#scene #right-zone .content-overlay h1 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 15px;
}

#scene #right-zone .content-overlay p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    max-width: 80%;
    margin: 0 auto 20px;
}

#scene #right-zone .content-overlay .view-more {
    font-size: 14px;
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
}

#scene #right-zone .content-overlay .view-more:hover {
    color: var(--charcoal);
}

/* Why Choose Us Section */
.why-us {
    background: var(--charcoal);
    padding: 80px 0;
}
.why-us h2{
    color: var(--white);
}

.why-us .intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    color: var(--white);
}

/* Mission and Vision Section */
.mission-vision {
    background: var(--white);
}
.mission-vision h2{
    color: var(--charcoal);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.mv-item {
    padding: 20px;
    background: var(--charcoal);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    color: var(--white);
}

.mv-item:hover {
    transform: translateY(-10px);
}

.mv-item h3 {
    color: var(--white);
    margin-bottom: 10px;
}

/* Values Section */
.values {
    background: var(--charcoal);
    padding: 80px 0;
}
.values h2{
    color: var(--white);
}

.values-grid {
    display: flex;
    gap: 30px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.value-item {
    background: var(--white);
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 200px;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.value-item h3 {
    font-size: 22px;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.value-item p {
    font-size: 16px;
    color: var(--charcoal);
}

/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    padding: 40px 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-contact, .footer-map {
    flex: 1;
    min-width: 300px;
}

.footer-contact h3, .footer-map h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-contact p, .footer-map p {
    margin: 10px 0;
}

.footer-contact a {
    color: var(--light-grey);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-map iframe {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.footer-copy {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 15px;
        height: 60px;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: var(--charcoal);
        padding: 20px 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 15px 0;
        text-align: center;
    }

    .nav-links a {
        font-size: 16px;
    }

    .logo-container {
        gap: 5px;
        align-items: center;
    }

    .logo-img {
        height: 100%;
        width: auto;
    }

    .logo-text {
        font-size: 16px;
    }

    .hero {
        height: 80vh;
    }

    .hero-logo {
        width: 300px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .btn {
        padding: 10px 25px;
        font-size: 14px;
    }

    section {
        padding: 60px 0;
    }

    .container {
        padding: 0 15px;
    }

    h2 {
        font-size: 28px;
    }

    h2::after {
        width: 80px;
    }

    .about {
        padding: 60px 0;
    }

    .about-content {
        flex-direction: column;
        gap: 30px;
    }

    .about-text p {
        font-size: 16px;
    }

    .about-image img {
        width: 100%;
        max-height: 300px;
        object-fit: cover;
    }

    #scene {
        flex-direction: column;
        width: 100%;
        height: auto;
    }

    #scene #left-zone {
        width: 100%;
        height: auto;
    }

    #scene #left-zone .list li.item input[type=radio] ~ label {
        font-size: 16px;
        height: 40px;
        line-height: 40px;
    }

    #scene #middle-border {
        display: none;
    }

    #scene #right-zone {
        width: 100%;
        height: 300px;
    }

    #scene #right-zone .content-overlay h1 {
        font-size: 24px;
    }

    #scene #right-zone .content-overlay p {
        font-size: 14px;
        max-width: 90%;
    }

    #scene #right-zone .content-overlay .view-more {
        font-size: 13px;
    }

    .why-us {
        padding: 60px 0;
    }

    .why-us .intro {
        font-size: 16px;
        padding: 0 10px;
    }

    .mv-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mv-item {
        padding: 15px;
    }

    .mv-item h3 {
        font-size: 20px;
    }

    .mv-item p {
        font-size: 14px;
    }

    .values {
        padding: 60px 0;
    }

    .values-grid {
        flex-direction: column;
        gap: 20px;
    }

    .value-item {
        flex: 1 1 auto;
        max-width: 100%;
    }

    .value-item h3 {
        font-size: 20px;
    }

    .value-item p {
        font-size: 14px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer-contact, .footer-map {
        min-width: 100%;
        text-align: center;
    }

    .footer-contact p, .footer-map p {
        font-size: 14px;
    }

    .footer-map iframe {
        height: 150px;
    }

   
    .products-content {
        flex-direction: column;
        gap: 10px;
    }
    .products-gallery {
        flex-direction: row;
        gap: 10px;
    }
    .products-gallery img {
        max-width: 120px;
        height: 140px;
    }
    .products-text p {
        font-size: 14px;
    }

    .secondary-nav {
        margin-top: 0;
    }

    body {
        padding-top: 70px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 8px 10px;
        height: 80px;
        flex-wrap: wrap;
    }
    

    .nav-links {
        top: 80px;
    }

    .logo-container {
        flex-direction: row;
        align-items: center;
        gap: 5px;
    }

    .logo-img {
        height: 60px;
    }

    .logo-text {
        font-size: 14px;
        margin-left: 25%;
    }

    .hamburger {
        font-size: 24px;
        align-self: center;
    }

    .nav-links a {
        font-size: 14px;
    }

    .hero {
        height: 70vh;
    }

    .hero-logo {
        width: 200px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .btn {
        padding: 8px 20px;
        font-size: 12px;
    }

    section {
        padding: 20px 0;
    }

    .container {
        padding: 0 10px;
    }

    h2 {
        font-size: 24px;
    }

    h2::after {
        width: 60px;
    }

    .about {
        padding: 40px 0;
    }

    .about-text p {
        font-size: 14px;
    }

    .about-image img {
        max-height: 250px;
    }

    #scene #left-zone .list li.item input[type=radio] ~ label {
        font-size: 14px;
        height: 35px;
        line-height: 35px;
    }

    #scene #right-zone {
        height: 250px;
    }

    #scene #right-zone .content-overlay h1 {
        font-size: 20px;
    }

    #scene #right-zone .content-overlay p {
        font-size: 13px;
    }

    #scene #right-zone .content-overlay .view-more {
        font-size: 12px;
    }

    .why-us {
        padding: 40px 0;
    }

    .why-us .intro {
        font-size: 14px;
    }

    .mv-grid {
        gap: 15px;
    }

    .mv-item {
        padding: 10px;
    }

    .mv-item h3 {
        font-size: 18px;
    }

    .mv-item p {
        font-size: 13px;
    }

    .values {
        padding: 40px 0;
    }

    .values-grid {
        gap: 15px;
    }

    .value-item {
        padding: 15px;
    }

    .value-item h3 {
        font-size: 18px;
    }

    .value-item p {
        font-size: 13px;
    }

    .footer-contact h3, .footer-map h3 {
        font-size: 18px;
    }

    .footer-contact p, .footer-map p {
        font-size: 13px;
    }

    .footer-map iframe {
        height: 120px;
    }

    .footer-copy {
        font-size: 12px;
    }

 
    .products-content {
        flex-direction: column;
        gap: 15px;
    }
    .product-image-left{
        padding-bottom: 0px;
    }

    .products-text p {
        font-size: 13px !important;
        margin-bottom: 0px !important;
    }

    .secondary-nav {
        margin-top: 0;
    }

    body {
        padding-top: 80px;
    }

    .product-image-left img {
        min-height: 200px !important;
        height: auto !important;
        max-height: 455px !important;
    }
}

.book-now-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 10px;
}

.book-now-btn {
    background-color: var(--grey);
    color: #fff;
    padding: 10px 25px;
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: background 0.3s, color 0.3s;
    cursor: pointer;
    letter-spacing: 1px;
}

.book-now-btn:hover {
    background-color: var(--light-grey);
    color: var(--charcoal);
}

.our-products {
    background: var(--white);
    padding: 40px 0;
}

.our-products .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.products-content {
    display: flex;
    align-items: stretch;
    gap: 40px;
    justify-content: center;
}

.product-image-left {
    display: flex;
    align-items: stretch;
    flex: 0 0 350px;
    max-width: 400px;
    height: inherit;
}

.product-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    min-height: 350px;
    max-height: 100%;
}

.products-text {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.products-text p {
    font-size: 18px;
    color: var(--grey);
    margin-bottom: 20px;
}

.products-gallery {
    flex: 1;
    min-width: 300px;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.products-gallery img {
    width: 100%;
    max-width: 180px;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.products-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

@media (max-width: 900px) {
    .products-content {
        flex-direction: column;
        align-items: center;
    }
    .product-image-left {
        max-width: 90vw;
        width: 100%;
        height: auto;
        margin-bottom: 5px;
    }
    .product-image-left img {
        min-height: 180px;
        max-height: 300px;
    }
    .products-text {
        width: 100%;
        text-align: center;
    }
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Adjust this if you want more or fewer columns */
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Custom spans from your spreadsheet */
.item1  { grid-row: span 2; grid-column: span 1; }
.item2  { grid-row: span 1; grid-column: span 1; }
.item3  { grid-row: span 2; grid-column: span 1; }
.item4  { grid-row: span 1; grid-column: span 1; }
.item5  { grid-row: span 2; grid-column: span 1; }
.item6  { grid-row: span 1; grid-column: span 1; }
.item7  { grid-row: span 1; grid-column: span 1; }
.item8  { grid-row: span 1; grid-column: span 1; }
.item9  { grid-row: span 2; grid-column: span 1; }
.item10 { grid-row: span 1; grid-column: span 1; }



.Grid-container {
width: 100%;
margin: 0 auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Adjust this if you want more or fewer columns */
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Custom spans from your spreadsheet */
.item1  { grid-row: span 2; grid-column: span 1; }
.item2  { grid-row: span 1; grid-column: span 1; }
.item3  { grid-row: span 2; grid-column: span 1; }
.item4  { grid-row: span 1; grid-column: span 1; }
.item5  { grid-row: span 2; grid-column: span 1; }
.item6  { grid-row: span 1; grid-column: span 1; }
.item7  { grid-row: span 1; grid-column: span 1; }
.item8  { grid-row: span 1; grid-column: span 1; }
.item9  { grid-row: span 2; grid-column: span 1; }
.item10 { grid-row: span 1; grid-column: span 1; }



.Grid-container {
width: 100%;
margin: 0 auto;
}