/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    /* Colors */
    --color-bg: #F9F5F0;
    /* Soft Cream / Eggshell */
    --color-wht: #FFFFFF;
    /* Pure White */
    --color-text-main: #2C2C2C;
    /* Soft Charcoal */
    --color-text-light: #666666;
    /* Grey */
    --color-accent: #C7A17A;
    /* Muted Gold / Bronze */
    --color-accent-dark: #A98560;
    --color-sec-bg: #F2E8DC;
    /* Slightly darker beige for sections */

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-pill: 50px;

    /* Transitions */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text-main);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================
   2. UTILITIES & COMPONENTS
   ========================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--spacing-xl) 0;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-pill);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.9rem;
    text-align: center;
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
}

.btn-primary {
    background-color: var(--color-text-main);
    color: var(--color-wht);
}

.btn-primary:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--color-text-main);
    color: var(--color-text-main);
}

.btn-outline:hover {
    background-color: var(--color-text-main);
    color: var(--color-wht);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-text {
    color: var(--color-accent);
    font-weight: 600;
    padding: 0;
    border: none;
    background: none;
}

.btn-text:hover {
    color: var(--color-accent-dark);
}

/* Subtitles */
.subtitle {
    display: block;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: var(--color-accent-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Animations */
/* Animations - TEMPORARY FIX: Disabled initial hidden state */
.fade-in-up {
    /* opacity: 0; */
    /* transform: translateY(30px); */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    /* opacity: 0; */
    /* transform: translateX(-50px); */
    transition: all 0.8s ease-out;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    /* opacity: 0; */
    /* transform: translateX(50px); */
    transition: all 0.8s ease-out;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Placeholders */
.img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gradient-1 {
    background: linear-gradient(135deg, #c3b091 0%, #e2d1c3 100%);
}

.gradient-2 {
    background: linear-gradient(135deg, #a98560 0%, #2c2c2c 100%);
}

/* =========================================
   3. SECTIONS
   ========================================= */

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(249, 245, 240, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 0.5rem 0;
}

.nav-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-main);
}

.logo .dot {
    color: var(--color-accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a:not(.btn) {
    font-size: 1rem;
    font-weight: 500;
}

.nav-links a:not(.btn):hover {
    color: var(--color-accent);
}

.hamburger {
    display: none;
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* You can replace this URL with a real image later */
    background: url('../assets/images/wedding-hero.jpg') center/cover no-repeat;
    /* Fallback if image missing */
    background-color: #E8E0D5;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.4);
    /* Make text readable */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--color-text-main);
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
    color: var(--color-text-main);
    z-index: 2;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--color-wht);
    padding: 2.5rem;
    text-align: center;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

/* Split Section */
.bg-light {
    background-color: var(--color-sec-bg);
}

.split-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.split-section.reverse .split-container {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
    position: relative;
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-list i {
    color: var(--color-accent);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    cursor: pointer;
}

.gallery-info {
    margin-top: 1rem;
    text-align: center;
}

.gallery-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.gallery-info p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Pricing */
.pricing {
    padding-bottom: var(--spacing-xl);
}

.pricing-card {
    background: var(--color-wht);
    max-width: 600px;
    margin: 0 auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid rgba(199, 161, 122, 0.2);
}

.recommended {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--color-accent);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-header {
    background: var(--color-text-main);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.pricing-header h3 {
    color: white;
    font-size: 2rem;
}

.pricing-header .price {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--color-accent);
    margin: 1rem 0;
}

.pricing-header .price span {
    font-size: 1rem;
    color: #aaa;
    font-family: var(--font-body);
}

.pricing-header p {
    color: #ccc;
}

.pricing-body {
    padding: 2rem;
}

.pricing-body ul li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    /* Align icon to top of text */
    gap: 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-text-light);
}

.pricing-body ul li i {
    color: var(--color-accent);
    font-size: 1.2rem;
    padding-top: 3px;
    /* Visual alignment with text cap-height */
    flex-shrink: 0;
}

.pricing-body ul li strong {
    color: var(--color-text-main);
    font-weight: 600;
}

.pricing-footer {
    padding: 0 2rem 3rem;
}

/* Contact */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-methods {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--color-wht);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.method i {
    font-size: 1.5rem;
    color: var(--color-accent);
}

.method h4 {
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.method p {
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--color-text-main);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: var(--color-wht);
    padding: 3rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

/* Footer */
footer {
    background: var(--color-text-main);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #aaa;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    color: #666;
    font-size: 0.8rem;
}

/* =========================================
   4. RESPONSIVE
   ========================================= */
@media (max-width: 992px) {

    .services-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .split-container {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Mobile menu needed logic later */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--color-text-main);
        margin: 5px 0;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .split-container,
    .split-section.reverse .split-container,
    .contact-container {
        flex-direction: column;
    }

    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .split-image,
    .img-placeholder {
        min-height: 300px;
        width: 100%;
    }
}

/* =========================================
   5. FLOATING WHATSAPP BUTTON
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-float i {
    margin-top: 1px;
    /* Optical adjustment */
}

/* =========================================
   6. PHONE SLIDESHOW
   ========================================= */
.phone-frame {
    position: relative;
    background: #000;
    border: 8px solid #000;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.8);
    color: #333;
}

.slider-arrow.prev {
    left: 10px;
}

.slider-arrow.next {
    right: 10px;
}