@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
    /* Modern Color Palette */
    --color-primary: #C9A961;
    --color-primary-light: #E5D4A6;
    --color-primary-dark: #A68B4A;
    --color-secondary: #2C2C2C;
    --color-accent: #F8F6F0;
    --color-dark: #0F0F0F;
    --color-white: #FFFFFF;
    --color-text: #333333;
    --color-text-light: #777777;
    --color-bg-light: #FAFAF8;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --trans-speed: 0.4s;
    --trans-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Spacing */
    --section-padding: 120px 0;
    --container-max: 1200px;
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--color-white);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all var(--trans-speed) var(--trans-smooth);
    border-bottom: 1px solid rgba(201, 169, 97, 0.15);
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    background: rgba(15, 15, 15, 1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 30px;
    color: var(--color-white);
    font-weight: 400;
    letter-spacing: 1.5px;
}

.logo .deluxe {
    color: var(--color-primary);
    font-weight: 600;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all var(--trans-speed);
    position: relative;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    transition: transform var(--trans-speed);
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 26px;
    height: 2px;
    background: var(--color-white);
    transition: all var(--trans-speed);
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 36px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all var(--trans-speed) var(--trans-smooth);
    border: 2px solid transparent;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-dark);
    border-color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-dark);
    border-color: var(--color-white);
}

.btn-large {
    padding: 16px 44px;
    font-size: 16px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(44, 44, 44, 0.5) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(201, 169, 97, 0.15) 0%, transparent 60%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--color-white);
    max-width: 950px;
    padding: 0 24px;
    transform: translateZ(0);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 78px;
    font-weight: 600;
    margin-bottom: 28px;
    line-height: 1.1;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    color: var(--color-primary);
    display: block;
    margin-top: 16px;
    font-weight: 700;
    text-shadow: 0 2px 15px rgba(201, 169, 97, 0.5);
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 48px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    letter-spacing: 0.8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 32px;
    height: 52px;
    border: 2px solid var(--color-primary);
    border-radius: 26px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        top: 12px;
        opacity: 1;
    }

    100% {
        top: 32px;
        opacity: 0;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styling */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--color-text);
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.title-underline {
    width: 70px;
    height: 4px;
    background: var(--color-primary);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-text-light);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About Section */
.about {
    background: linear-gradient(180deg, #ffffff 0%, var(--color-accent) 100%);
    padding: 100px 0;
}

.about-hero {
    text-align: center;
    margin-bottom: 70px;
}

.about-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.about-subtitle {
    font-size: 20px;
    color: var(--color-text-light);
    font-weight: 400;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    margin-bottom: 70px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: var(--color-white);
    padding: 44px 24px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid rgba(201, 169, 97, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: all var(--trans-speed);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(201, 169, 97, 0.15);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.about-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.info-card {
    background: var(--color-white);
    padding: 44px 36px;
    border-radius: var(--border-radius);
    text-align: center;
    border-top: 4px solid var(--color-primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all var(--trans-speed);
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(201, 169, 97, 0.2);
}

.info-icon {
    font-size: 60px;
    margin-bottom: 24px;
}

.info-card h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--color-text);
    margin-bottom: 16px;
    font-weight: 600;
}

.info-card p {
    color: var(--color-text-light);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* Organizations Section - Modern */
.organizations {
    background: var(--color-white);
    position: relative;
}

.org-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.org-card-modern {
    background: linear-gradient(135deg, var(--color-accent) 0%, #ffffff 100%);
    padding: 0;
    border-radius: var(--border-radius);
    transition: all var(--trans-speed);
    border: 1px solid rgba(201, 169, 97, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.org-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(201, 169, 97, 0.2);
    border-color: var(--color-primary);
}

.org-card-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 32px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.org-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.org-card-modern .org-icon {
    font-size: 56px;
    margin-bottom: 16px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.org-card-header h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--color-white);
    margin: 0;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.org-card-modern p {
    padding: 28px;
    color: var(--color-text-light);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    text-align: center;
}

/* Services Section */
.services {
    background: var(--color-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--color-accent);
    padding: 40px 32px;
    border-radius: var(--border-radius);
    transition: all var(--trans-speed);
    border-left: 4px solid transparent;
}

.service-card:hover {
    border-left-color: var(--color-primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateX(4px);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--color-text);
    font-weight: 600;
}

.service-card p {
    color: var(--color-text-light);
    font-size: 15px;
    line-height: 1.8;
}

/* Gallery Section */
.gallery {
    background: var(--color-bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
    height: 320px;
}

.gallery-item .image-placeholder {
    height: 100%;
    width: 100%;
    transition: transform var(--trans-speed);
}

.gallery-placeholder-decor {
    background: url('images/gallery-wedding-decor.jpg') center/cover no-repeat;
}

.gallery-placeholder-1 {
    background: url('images/gallery-1.jpg') center/cover no-repeat;
}

.gallery-placeholder-2 {
    background: url('images/gallery-2.jpg') center/cover no-repeat;
}

.gallery-placeholder-3 {
    background: url('images/gallery-3.jpg') center/cover no-repeat;
}

.gallery-placeholder-4 {
    background: url('images/gallery-4.jpg') center/cover no-repeat;
}

.gallery-placeholder-5 {
    background: url('images/gallery-5.jpg') center/cover no-repeat;
}

.gallery-placeholder-6 {
    background: url('images/gallery-6.jpg') center/cover no-repeat;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 15, 15, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 32px;
    opacity: 0;
    transition: opacity var(--trans-speed);
}

.gallery-overlay h4 {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .image-placeholder {
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    background: var(--color-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 56px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-card {
    background: var(--color-accent);
    padding: 36px 32px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--color-primary);
}

.contact-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--color-text);
    font-weight: 600;
}

.contact-card p {
    color: var(--color-text-light);
    font-size: 15px;
    line-height: 1.8;
}

.contact-card a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    color: var(--color-primary);
}

.btn-call {
    margin-top: 16px;
    display: inline-block;
    width: fit-content;
}

.contact-map {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    display: block;
}

/* Footer */
.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 70px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 48px;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 30px;
    margin-bottom: 16px;
    font-weight: 400;
    letter-spacing: 1px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 24px;
    color: var(--color-primary);
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--trans-speed);
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.footer-contact a {
    color: var(--color-white);
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: rgba(15, 15, 15, 0.98);
        padding: 48px 24px;
        transition: left var(--trans-speed);
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 24px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-content .btn-primary {
        display: none;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    :root {
        --section-padding: 80px 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .about-title {
        font-size: 36px;
    }

    .about-subtitle {
        font-size: 16px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-number {
        font-size: 40px;
    }

    .about-info-cards {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        text-align: center;
    }

    .org-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
}