/* Global Styles */
:root {
    --primary-color: #1a1a1a;
    /* Darker, elegant base */
    --secondary-color: #f5f5f5;
    --accent-gold: #d4af37;
    /* Gold accent */
    --text-color: #333;
    --light-bg: #fff;
    --dark-bg: #121212;
}

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

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--secondary-color);
    color: var(--text-color);
    overflow-x: hidden;
}

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

h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 5rem;
    color: var(--light-bg);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    display: block;
    /* Centering Fix */
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    margin: 10px auto 0;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

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

/* Dynamic Section Colors */
.section-light {
    background-color: var(--light-bg);
    padding: 4rem 0;
}

.section-alt {
    background-color: #f9f9f9;
    padding: 4rem 0;
}

.section-dark {
    background-color: var(--dark-bg);
    color: var(--light-bg);
    padding: 4rem 0;
}

.section-dark h2 {
    color: var(--accent-gold);
}

/* New Palette */
.section-cream {
    background-color: #f7f3e8;
    /* More visible cream */
    padding: 4rem 0;
}

.section-gold-mist {
    background-color: #ebe7dd;
    /* More visible beige/gold */
    padding: 4rem 0;
}

.section-soft-dark {
    background-color: #2c2c2c;
    /* Elegant dark grey */
    padding: 4rem 0;
    color: #f5f5f5;
}

.section-soft-dark h2 {
    color: var(--accent-gold);
}

/* Header Parallax */
.parallax {
    background-image: url('images/header.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.header-content {
    position: relative;
    z-index: 1;
    color: white;
}

.header-content p {
    font-size: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-20px);
    }

    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Emotional Text */
.emotional-text {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
    color: #555;
}

/* Video Section */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Gallery Swiper */
.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 400px;
    /* Portrait orientation preferred */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.swiper-slide:hover img {
    transform: scale(1.05);
}

/* LightGallery Customization */
.lg-backdrop {
    background-color: rgba(0, 0, 0, 0.9);
}

/* CTA */
.section-sky {
    background-color: #f0f4f8;
    padding: 5rem 0;
}

.persuasive-text {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #444;
}

.cta-highlight {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
}

.btn-whatsapp-large {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-whatsapp-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
    text-decoration: none;
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-btn.contact {
    background-color: #25D366;
    /* WhatsApp Green */
}

.float-btn.share {
    background-color: #3b5998;
    /* Facebook Blue / Generic Share */
}

.float-btn.up {
    background-color: var(--accent-gold);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
}

.float-btn.up.show {
    opacity: 1;
    pointer-events: auto;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: transform 0.3s;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Great Vibes', cursive;
    font-size: 2rem;
    color: var(--primary-color);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1rem;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--accent-gold);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Scroll Progress */
#scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 1001;
}

#scroll-progress-bar {
    height: 100%;
    background: var(--accent-gold);
    width: 0%;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Toast */
#toast-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000;
}

.toast {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    margin-bottom: 10px;
    transition: opacity 0.3s;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        display: none;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .swiper-slide {
        width: 70%;
        height: 350px;
    }
}