﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
    .module-background {
        background-attachment: scroll; /* Fixes iOS background issues */
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(4) {
        grid-column: span 1;
    }
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(7) {
        grid-row: span 1;
    }
}


.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

/*body {
  margin-bottom: 60px;
}*/


:root {
    --luxury-gold: #D4AF37;
    --luxury-dark-gold: #B8941F;
    --luxury-rose-gold: #E8B4B8;
    --luxury-cream: #FAF8F5;
    --luxury-dark: #2C2C2C;
    --luxury-light-gray: #F8F9FA;
    --luxury-shadow: rgba(212, 175, 55, 0.15);
}

body {
    font-family: "Playfair Display", serif;
    line-height: 1.6;
    color: var(--luxury-dark);
    background-color: var(--luxury-cream);
    box-sizing: border-box;
}

.navbar {
    background: linear-gradient(135deg, var(--luxury-dark) 0%, #1a1a1a 100%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo {
    width: 75px;
    border-radius: 50%;
    margin-right: 15px;
    border: 2px solid var(--luxury-gold);
    display: inline-block;
}

.site-title {
    font-style: italic;
    font-size: 1.5rem;
    font-weight: 600;
/*    color: white;
    text-shadow: 0 2px 4px var(--luxury-gold);*/
    text-transform: uppercase;

    background: linear-gradient(90deg, var(--luxury-gold), var(--luxury-rose-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--luxury-gold) !important;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--luxury-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.btn-luxury {
    background: linear-gradient(135deg, var(--luxury-gold), var(--luxury-dark-gold));
    border: none;
    color: white !important;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--luxury-shadow);
}

.btn-luxury:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--luxury-shadow);
    color: white !important;
}

/* Module Containers */
.module-container {
    position: relative;
    margin: 0; /* Ensure no extra margin */
    padding: 0; /* Ensure no extra padding */
}

.module-background {
    padding: 50px 0;
    background: var(--luxury-light-gray);
}


.module-container:nth-child(even) .module-background {
    background: white;
}

.module-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--luxury-dark);
    position: relative;
}

.module-container h5 {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-style: italic;
}

/* Luxury Table Styling */
.table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.table thead th {
    background: linear-gradient(135deg, var(--luxury-dark), #1a1a1a);
    color: var(--luxury-gold);
    border: none;
    padding: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.table tbody tr:hover {
    background-color: rgba(212, 175, 55, 0.05);
    transform: scale(1.01);
    transition: all 0.3s ease;
}

.table td {
    padding: 15px 20px;
    border: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    vertical-align: middle;
}

.table h3 {
    color: var(--luxury-dark);
    font-weight: 600;
    margin: 0;
    padding: 10px 0;
    border-bottom: 2px solid var(--luxury-gold);
    display: inline-block;
}

.service-name {
    font-weight: 500;
    color: var(--luxury-dark);
}

.service-price {
    font-weight: 600;
    color: var(--luxury-gold);
    font-size: 1.1rem;
}

.service-description {
    background: rgba(212, 175, 55, 0.05);
    padding: 20px;
    border-left: 4px solid var(--luxury-gold);
    margin: 10px 0;
}

.service-description ul {
    margin: 0;
    padding-left: 1.5rem;
}

.service-description li {
    margin-bottom: 8px;
    color: #555;
}

/* Special Effects */
.important-message {
    display: inline-block;
    background: linear-gradient(135deg, var(--luxury-gold), var(--luxury-rose-gold), var(--luxury-dark-gold));
    background-size: 200% 200%;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    animation: gradient-flow 4s ease-in-out infinite;
}

@keyframes gradient-flow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Quote Section */
#module-quote {
    background: linear-gradient(135deg, var(--luxury-dark) 0%, #1a1a1a 100%);
    color: white;
    text-align: center;
}

    #module-quote em {
        font-size: 1.5rem;
        color: var(--luxury-gold);
        font-style: italic;
        display: block;
        margin-bottom: 2rem;
    }

    #module-quote p {
        color: #ccc;
        font-weight: 500;
    }

/* Footer */
.footer {
    background: var(--luxury-dark);
    color: white;
    padding: 50px 0 20px;
}

.footer .site-title {
    font-size: 1.5rem;
}

.footer .site-social .nav-link {
    font-size: 1.5rem;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.footer .site-social .nav-link:hover {
    color: var(--luxury-gold) !important;
    transform: scale(1.2);
}

.site-info {
    line-height: 1.8;
}

.site-info strong {
    color: var(--luxury-gold);
    display: block;
    margin-top: 1rem;
}

.site-info a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-info a:hover {
    color: var(--luxury-gold);
}

/* Responsive Design */
/* Gallery Styles */
.gallery-section {
    background: linear-gradient(135deg, var(--luxury-dark) 0%, #1a1a1a 100%);
    overflow: hidden;
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 3rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.7) 0%, transparent 50%, rgba(212, 175, 55, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay-content {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Special gallery items with different sizes */
.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:nth-child(4) {
    grid-column: span 2;
}

.gallery-item:nth-child(7) {
    grid-row: span 2;
}

/* Floating elements decoration */
.gallery-decoration {
    position: absolute;
    pointer-events: none;
}

    .gallery-decoration.sparkle-1 {
        top: 10%;
        left: 5%;
        color: var(--luxury-gold);
        font-size: 2rem;
        animation: sparkle 3s infinite ease-in-out;
    }

    .gallery-decoration.sparkle-2 {
        top: 70%;
        right: 8%;
        color: var(--luxury-rose-gold);
        font-size: 1.5rem;
        animation: sparkle 4s infinite ease-in-out 1s;
    }

    .gallery-decoration.sparkle-3 {
        bottom: 20%;
        left: 15%;
        color: var(--luxury-gold);
        font-size: 1.8rem;
        animation: sparkle 5s infinite ease-in-out 2s;
    }

@keyframes sparkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
}

/* Modal for gallery lightbox */
/*.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    backdrop-filter: blur(10px);
    text-align: center;
    justify-content: center;
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}*/

/*.gallery-modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.gallery-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

    .gallery-modal-close:hover {
        color: var(--luxury-gold);
    }*/

.gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
}

.gallery-modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    max-height: 80%;
    object-fit: contain;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.gallery-modal-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.gallery-modal-close:hover {
    color: var(--primary-gold);
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.spacer-3 {
    height: 3rem;
}

.spacer-5 {
    height: 5rem;
}

/*.module-background {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;*/ /* Creates parallax effect */
    /*z-index: 1;
}*/

    /* Overlay to improve text readability */
#module-manicure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: -1;
}

/* Individual section backgrounds */
/*.module-background {
    background-size: cover;
    background-position: center;
    background-attachment: scroll;*/ /* Image scrolls with the page */
    /*min-height: 100vh;
    padding: 5rem 0;
}*/

#home .module-background {
    background: url('/img/marketing17.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* Image scrolls with the page */
    min-height: 100vh;
    padding: 5rem 0;
}

#module-manicure .module-background {
    background: url('/img/marketing01.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* Image scrolls with the page */
    min-height: 100vh;
    padding: 5rem 0;
}

#module-pedicure .module-background {
    background: url('/img/marketing38.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* Image scrolls with the page */
    min-height: 100vh;
    padding: 5rem 0;
}

#module-addon .module-background {
    background: url('/img/marketing04.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* Image scrolls with the page */
    min-height: 100vh;
    padding: 5rem 0;
}

#module-addon .module-background {
    background: url('/img/marketing04.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* Image scrolls with the page */
    min-height: 100vh;
    padding: 5rem 0;
}

#module-kids .module-background {
    background: url('/img/marketing06.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* Image scrolls with the page */
    min-height: 100vh;
    padding: 5rem 0;
}

#module-waxing .module-background {
    background: url('/img/marketing09.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* Image scrolls with the page */
    min-height: 100vh;
    padding: 5rem 0;
}



table {
    opacity: 0.8;
    backdrop-filter: blur(10px); /* ADDED: Glass effect */
    border: 1px solid rgba(255, 255, 255, 0.5); /*ADDED: Subtle border */
}

.hero-content {
    z-index: 2;
    animation: fadeInUp 1.5s ease-out;
    margin-top: 100px;

}

    .hero-content a {
        display: inline-block;
    }

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    /*text-shadow: 5px 5px 5px rgba(0,0,0,0.5);*/
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--luxury-gold), var(--luxury-rose-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    font-weight: 300;
    margin-bottom: 2rem;
}

#bookingModal .modal-content {
    background: linear-gradient(135deg, #8e24aa, #ab47bc, #ba68c8); /* <-- ADDED: Purple gradient background */
    border-radius: 25px;
    text-align: center;
}

.row {
    margin: 0; /* Fix overflow issue */
}

