:root {
    --dusty-rose: #D4A5A5;
    --champagne-gold: #C5A059;
    --cream-white: #FCF9F9;
    --dark-grey: #4A4A4A;
    --gold-gradient: linear-gradient(45deg, #C5A059, #F1D38E, #C5A059);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--cream-white);
    color: var(--dark-grey);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    z-index: 1000;
    background: rgba(252, 249, 249, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-profile-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--champagne-gold);
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--champagne-gold);
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark-grey);
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--dusty-rose);
}

.nav-book-btn {
    background: var(--gold-gradient);
    color: white !important;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.nav-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(197, 160, 89, 0.3);
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 0.3; /* Subtle background presence */
}

.hero-slider .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.8), rgba(252,249,249,0.9));
    z-index: 1;
}

/* Hero Decor */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--cream-white);
    padding-top: 80px;
    overflow: hidden;
}

.hero-decor {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.decor-1 { top: 15%; left: 10%; width: 150px; animation: floatAnim 6s ease-in-out infinite; }
.decor-2 { bottom: 20%; right: 10%; width: 120px; animation: floatAnim 8s ease-in-out infinite reverse; }
.decor-3 { top: 30%; right: 15%; width: 80px; animation: floatAnim 5s ease-in-out infinite 1s; }

@keyframes floatAnim {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(10px, -20px) rotate(5deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.logo-svg {
    width: 250px;
    height: 150px;
    margin-bottom: -20px;
}

.nail-path {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: draw 3s ease forwards 0.2s;
}

.spark-1, .spark-2 {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: draw 1.5s ease forwards 1.5s;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
}

.btn-outline {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--champagne-gold);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 2px solid var(--champagne-gold);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--champagne-gold);
    color: white;
    transform: translateY(-5px);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--dark-grey);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.5s forwards;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--dusty-rose);
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease 0.8s forwards;
}

.btn-gold {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gold-gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
    opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
}

.btn-gold:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.5);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gallery Section */
.gallery-section {
    padding: 100px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: var(--dark-grey);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--champagne-gold);
    margin: 20px auto 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(212, 165, 165, 0.4));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80vh;
    border-radius: 8px;
    border: 4px solid var(--champagne-gold);
}

.close {
    position: absolute;
    top: 50px;
    right: 50px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Footer */
footer {
    padding: 60px 50px;
    background: #fdf6f6;
    text-align: center;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
}

footer p {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px;
}

.footer-socials a {
    margin: 0 15px;
    text-decoration: none;
    color: var(--champagne-gold);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 20px;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .gallery-section {
        padding: 60px 20px;
    }
    .section-title {
        font-size: 2.2rem;
    }
}

