/* =========================================
   1. Google Fonts & Variables
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Inter:wght@300;400;500&display=swap');

:root {
    /* Colors */
    --color-white: #FFFFFF;
    --color-powder: #F4C2C2;
    --color-bg-light: #FDF5F5;
    --color-text: #2C2C2C;
    --color-gold: #D4AF37;
    --color-gold-hover: #b5952f;
    --color-red-urgent: #E74C3C;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --container-width: 1200px;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
}

/* =========================================
   2. Reset & Base Styles
   ========================================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* Utility Classes */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.section {
    padding: var(--spacing-lg) 0;
}

.text-center {
    text-align: center;
}

.section__title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    font-size: 1rem;
}

.btn--gold {
    background-color: var(--color-gold);
    color: var(--color-white);
}

.btn--gold:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-2px);
}

.btn--large {
    padding: 15px 40px;
    font-size: 1.1rem;
    margin-top: var(--spacing-md);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   3. Header & Navigation
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: background-color 0.3s, padding 0.3s;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 10px 0;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text);
}

.logo span {
    color: var(--color-gold);
}

.nav__list {
    display: flex;
    gap: 30px;
}

.nav__link {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: width 0.3s;
}

.nav__link:hover::after {
    width: 100%;
}

/* Burger Menu */
.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.burger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-text);
    transition: 0.3s;
}

/* Mobile Nav Active State */
.nav.active .nav__list {
    transform: translateX(0);
}

.nav.active .burger span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.nav.active .burger span:nth-child(2) {
    opacity: 0;
}
.nav.active .burger span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* =========================================
   4. Hero Section
   ========================================= */
/* Critical CSS is inline in HTML, additional overrides here */
.hero__content {
    max-width: 800px;
}

.hero__title {
    font-size: 32px; /* Mobile first */
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero__subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.hero__urgent {
    color: #ffcccc;
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* =========================================
   5. About Section
   ========================================= */
.about {
    background-color: var(--color-bg-light);
}

.about__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    align-items: center;
}

.about__image-wrapper {
    display: flex;
    justify-content: center;
}

.about__image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border: 5px solid var(--color-white);
}

.about__text {
    font-size: 1.05rem;
    color: #555;
}

/* =========================================
   6. Services Section
   ========================================= */
.services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: var(--spacing-md);
}

.service-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-card__icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-card__price {
    font-weight: 700;
    color: var(--color-gold);
    font-size: 1.2rem;
}

/* =========================================
   7. Portfolio Section
   ========================================= */
.portfolio__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: var(--spacing-md);
}

.portfolio__item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 1 / 1;
}

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

.portfolio__item:hover img {
    transform: scale(1.1);
}

/* =========================================
   8. Reviews Section
   ========================================= */
.reviews {
    background-color: var(--color-bg-light);
    overflow: hidden;
}

.reviews__slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.reviews__track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.review-card {
    min-width: 100%;
    padding: 20px;
    text-align: center;
}

.review-card__stars {
    color: var(--color-gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.review-card__text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #555;
}

.review-card__author {
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

/* =========================================
   9. Booking & Steps
   ========================================= */
.steps__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 40px 0;
}

.step-item {
    text-align: center;
}

.step-item__icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: inline-block;
}

/* =========================================
   10. Contacts Section
   ========================================= */
.contacts__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.contacts__list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contacts__list a {
    color: var(--color-gold);
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-link {
    padding: 8px 20px;
    border: 1px solid var(--color-text);
    border-radius: 20px;
    font-size: 0.9rem;
}

.social-link:hover {
    background-color: var(--color-text);
    color: var(--color-white);
}

/* =========================================
   11. Footer & Sticky CTA
   ========================================= */
.footer {
    background-color: var(--color-text);
    color: var(--color-white);
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer__container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__link {
    color: #aaa;
    text-decoration: underline;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #25D366; /* WhatsApp Green */
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    display: none; /* Hidden on desktop by default */
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
    100% { transform: translateX(-50%) scale(1); }
}

/* =========================================
   12. Lightbox
   ========================================= */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox__img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 4px;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s;
}

.lightbox__close { top: 20px; right: 20px; font-size: 3rem; }
.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
    color: var(--color-gold);
}

/* =========================================
   13. Media Queries (Desktop)
   ========================================= */
@media (min-width: 768px) {
    .hero__title { font-size: 48px; }
    
    .about__container {
        grid-template-columns: 1fr 1fr;
    }
    
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .steps__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contacts__container {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer__container {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile Specific */
@media (max-width: 767px) {
    .burger { display: flex; }
    
    .nav__list {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        background: white;
        flex-direction: column;
        padding: 80px 30px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }
    
    .sticky-cta {
        display: block;
        width: 90%;
        text-align: center;
    }
    
    .section__title {
        font-size: 2rem;
    }
}
