/* ============================================
   IMPERIAL BALLS - Elegant Light Theme
   Inspired by Ball Poster Design
   ============================================ */

/* CSS Variables */
@font-face {
    font-family: 'Great Vibes';
    src: url('../fonts/GreatVibes-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/CormorantGaramond-VariableFont_wght.woff') format('woff');
    font-weight: 300 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant Garamond SemiBold';
    src: url('../fonts/CormorantGaramond-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Colors - Light & Elegant Palette */
    --color-gold: #B8860B;
    --color-gold-light: #D4AF37;
    --color-gold-dark: #8B6914;
    --color-red: #C41E3A;
    --color-red-dark: #8B0000;
    --color-cream: #FAF7F0;
    --color-cream-dark: #F5EFE0;
    --color-beige: #E8DCC4;
    --color-ivory: #FFFFF0;
    --color-white: #FFFFFF;
    --color-text: #3D3D3D;
    --color-text-light: #7A7A7A;
    --color-platinum: #8C8C8C;
    --color-platinum-light: #B8B8B8;
    --color-platinum-dark: #6B6B6B;
    --color-silver: #C0C0C0;
    --color-silver-light: #E8E8E8;
    --color-silver-dark: #A8A8A8;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #B8860B 0%, #D4AF37 50%, #B8860B 100%);
    --gradient-cream: linear-gradient(180deg, #FAF7F0 0%, #F5EFE0 100%);
    --gradient-ornament: linear-gradient(90deg, transparent 0%, #B8860B 50%, transparent 100%);

    /* Typography */
    --font-display: 'Great Vibes', cursive;
    --font-heading: 'Great Vibes', cursive;
    --font-body: 'Cormorant Garamond', Georgia, serif;

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1400px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.3);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.8;
    color: var(--color-text);
    background-color: var(--color-cream);
    width: 100%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
    animation: fadeInUp 1s ease;
}

.preloader-logo {
    height: 150px;
    width: auto;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

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

/* Container */
.container {
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 32px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-red);
}

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

/* Decorative Ornament */
.ornament {
    display: inline-block;
    width: 200px;
    height: 50px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 50'%3E%3Cpath d='M0 25 Q 50 10, 100 25 T 200 25' stroke='%23B8860B' fill='none' stroke-width='1.5'/%3E%3Cpath d='M0 25 Q 50 40, 100 25 T 200 25' stroke='%23B8860B' fill='none' stroke-width='1.5'/%3E%3Ccircle cx='100' cy='25' r='3' fill='%23B8860B'/%3E%3Cpath d='M90 25 Q 95 20, 100 25 T 110 25' stroke='%23B8860B' fill='none' stroke-width='1'/%3E%3C/svg%3E") no-repeat center;
    opacity: 0.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-family: 'Cormorant Garamond SemiBold', var(--font-body);
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

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

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

.btn-outline {
    background: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
}

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

.btn-outline-light {
    background: transparent;
    color: var(--color-gold-light);
    border: 2px solid var(--color-gold-light);
}

.btn-outline-light:hover {
    background: var(--color-gold-light);
    color: var(--color-text);
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--color-white);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.5);
}

.btn-gold-outline {
    background: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
}

.btn-gold-outline:hover {
    background: var(--gradient-gold);
    color: var(--color-white);
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.4);
}

.btn-large {
    padding: 18px 52px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition-medium);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(250, 247, 240, 0.98);
    padding: 12px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    margin-left: 80px;
}

.logo-image {
    height: 110px;
    width: auto;
    transition: var(--transition-fast);
}

.navbar.scrolled .logo-image {
    height: 90px;
}

.logo:hover .logo-image {
    opacity: 0.8;
}

.logo::before,
.logo::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 70px;
    height: 28px;
    background: url('../img/deco3.png') center/contain no-repeat;
    transform: translateY(-50%);
    opacity: 0.75;
    pointer-events: none;
}

.logo::before {
    left: -78px;
}

.logo::after {
    right: -78px;
    transform: translateY(-50%) scaleX(-1);
}

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

.nav-links a {
    font-family: 'Cormorant Garamond SemiBold', var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 0.02em;
    text-transform: none;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition-medium);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--color-gold);
}

.nav-cta {
    font-family: 'Cormorant Garamond SemiBold', var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-white);
    background: var(--color-red);
    padding: 10px 24px;
    letter-spacing: 0.02em;
    text-transform: none;
    transition: var(--transition-medium);
}

.nav-cta:hover {
    background: var(--color-red-dark);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 1100;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(250, 247, 240, 0.85) 0%, rgba(245, 239, 224, 0.9) 100%),
        url('../img/hero-background.jpg') center/cover no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='pattern' x='0' y='0' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='50' cy='50' r='1' fill='%23D4AF37' opacity='0.1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100' height='100' fill='url(%23pattern)'/%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0.4;
    animation: float 15s infinite ease-in-out;
}

 @keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0.7;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 10px 28px;
}

.hero-badge {
    display: inline-block;
    font-family: 'Cormorant Garamond SemiBold', var(--font-body);
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: 0.06em;
    text-transform: none;
    margin-bottom: 22px;
    padding: 12px 26px;
    border: 2px solid transparent;
    background: var(--gradient-gold);
    box-shadow: var(--shadow-gold);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title {
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 400;
    color: var(--color-red);
    line-height: 0.95;
    margin-bottom: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.title-line {
    display: inline;
    animation: fadeInUp 1s ease both;
}

.title-line:nth-child(1) { animation-delay: 0.3s; }
.title-line:nth-child(2) { animation-delay: 0.5s; }
.title-line:nth-child(3) { animation-delay: 0.7s; }

.title-line.accent {
    color: var(--color-red);
    font-style: normal;
}

.hero-subtitle {
    font-size: 1.45rem;
    font-weight: 400;
    color: var(--color-gold-dark);
    line-height: 1.5;
    margin: 0 auto 36px;
    animation: fadeInUp 1s ease 0.9s both;
    text-align: center;
}

.hero-subtitle-main {
    display: block;
    text-align: center;
    font-family: 'Cormorant Garamond SemiBold', var(--font-body);
    font-size: 2.1rem;
    font-weight: 750;
    line-height: 1.3;
    white-space: normal;
    color: #6b4b00;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
}

.hero-subtitle-venue {
    display: block;
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text);
    margin-top: 6px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1.1s both;
    margin-bottom: 60px;
}

.hero-scroll {
    display: none;
}

.hero-scroll span {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--color-text-light);
    letter-spacing: 0.05em;
    text-transform: none;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero-decor {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    opacity: 0.2;
    z-index: 1;
}

.hero-decor-left {
    left: -200px;
    top: 10%;
}

.hero-decor-right {
    right: -200px;
    bottom: 10%;
}

/* Hero Ornament Image */
.hero-ornament-img {
    width: 200px;
    height: auto;
    margin: 22px auto 30px;
    display: block;
    opacity: 0.8;
    animation: fadeInUp 1s ease 0.8s both;
}

/* Hero Sparkles */
.hero-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 3;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--color-gold);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--color-gold), 0 0 30px var(--color-gold);
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* Dress Code Section */
.stats {
    background: var(--color-white);
    padding: 50px 0;
    position: relative;
}

.ornament-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: min(900px, 92%);
    margin: 20px auto;
}

.ornament-line-fancy {
    flex: 1;
    max-width: 360px;
    height: 2px;
    background: var(--gradient-ornament);
}

.ornament-center {
    width: 110px;
    height: 28px;
    background-image: url("../img/deco3.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

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

.dresscode-content h3 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    color: var(--color-red);
    margin-bottom: 12px;
}

.dresscode-content p {
    font-size: 1.125rem;
    color: var(--color-text);
    line-height: 1.7;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.left {
    text-align: left;
}

.section-header.light .section-title,
.section-header.light .section-badge {
    color: var(--color-white);
}

.section-header.light .ornament-line {
    background: rgba(255, 255, 255, 0.5);
}

.section-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-gold);
    letter-spacing: 0.05em;
    text-transform: none;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-red);
    margin-bottom: 16px;
}

.section-ornament-img {
    width: 150px;
    height: auto;
    margin: 16px auto 0;
    display: block;
    opacity: 0.7;
}

/* Golden HR Dividers */
hr, .golden-hr {
    border: none;
    height: 3px;
    background: var(--gradient-gold);
    margin: 44px auto;
    max-width: 800px;
    position: relative;
}

hr::before, .golden-hr::before {
    content: '◆';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-cream);
    color: var(--color-gold);
    padding: 0 12px;
    font-size: 1rem;
}

/* About Section */
.about {
    padding: var(--section-padding) 0;
    background: var(--color-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    overflow: hidden;
    background: var(--color-white);
    border: 3px solid var(--color-gold);
    padding: 16px;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid var(--color-gold);
    z-index: 1;
    opacity: 0.5;
}

.image-placeholder {
    aspect-ratio: 4/5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-beige) 100%);
    color: var(--color-gold);
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-list {
    list-style: none;
    margin-bottom: 30px;
}

.program-list li {
    padding: 10px 0;
    padding-left: 26px;
    position: relative;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--color-text);
}

.program-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-size: 1.2rem;
}

.mission-box {
    background: #F4E4C1;
    padding: 24px;
    border-left: 4px solid var(--color-gold);
    margin-top: 22px;
}

.mission-box h4 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--color-red);
    margin-bottom: 12px;
}

.mission-box p {
    font-size: 1rem;
    color: var(--color-text);
    margin: 0;
}

.image-accent {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: var(--gradient-gold);
    opacity: 0.15;
    z-index: -1;
    border-radius: 50%;
}

.about-content {
    padding-left: 20px;
}

.about-lead {
    font-size: 1.5rem;
    color: var(--color-red);
    font-style: italic;
    margin-bottom: 18px;
    line-height: 1.5;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--color-text);
}

.about-features {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature {
    display: flex;
    gap: 16px;
}

.feature-icon {
    color: var(--color-gold);
    font-size: 1.5rem;
}

.feature-text h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    margin: 0;
}

/* Event Section */
.events {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
    background: var(--color-cream);
}

.events-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%),
        var(--color-cream);
}

.events .container {
    position: relative;
    z-index: 1;
}

.event-single {
    max-width: 900px;
    margin: 0 auto;
}

.event-card-single {
    background: var(--color-white);
    border: 3px solid var(--color-gold);
    padding: 48px;
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.event-venue-gallery-block {
    margin-top: 40px;
}

.venue-heading {
    font-family: 'Cormorant Garamond SemiBold', var(--font-body);
    font-size: 1.6rem;
    color: var(--color-red);
    text-align: center;
    margin-bottom: 8px;
}

.venue-subheading {
    font-size: 1rem;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 18px;
    letter-spacing: 0.04em;
}

.event-venue-gallery {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.venue-photo {
    border: 2px solid var(--color-gold);
    overflow: hidden;
    background: var(--color-cream);
    box-shadow: var(--shadow-soft);
}

.venue-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-medium);
}

.venue-photo:hover img {
    transform: scale(1.04);
}

.event-title-single {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--color-red);
    margin-bottom: 28px;
}

.event-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 28px;
    text-align: left;
}

.detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.detail-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.detail-icon img {
    width: 30px;
    height: 30px;
}

.detail-text {
    font-size: 1.125rem;
    line-height: 1.6;
}

.detail-text strong {
    display: block;
    margin-bottom: 10px;
    color: var(--color-gold);
    font-size: 1.25rem;
    font-family: 'Cormorant Garamond SemiBold', var(--font-body);
    font-weight: 700;
}

/* Gallery Section */
.gallery {
    padding: var(--section-padding) 0;
    background: var(--color-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid var(--color-gold);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-beige) 100%);
    color: var(--color-gold);
    transition: var(--transition-medium);
}

.gallery-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.gallery-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

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

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

/* Services Section */
.services {
    padding: var(--section-padding) 0;
    background: var(--color-cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--color-white);
    padding: 42px 30px;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: var(--transition-medium);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition-medium);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-gold);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.premium {
    background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
    transform: translateY(-12px);
    border-color: var(--color-gold);
}

.service-card.premium:hover {
    transform: translateY(-18px);
}

.service-card.premium .service-title,
.service-card.premium .service-description,
.service-card.premium .service-features li,
.service-card.premium .service-price {
    color: var(--color-white);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gold);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 16px;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: var(--color-gold-light);
    border-radius: 50%;
    border: 2px solid var(--color-gold);
}

.service-card.premium .service-icon {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-white);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--color-red);
    margin-bottom: 12px;
}

.service-description {
    font-size: 0.9375rem;
    color: var(--color-text);
    margin-bottom: 18px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-bottom: 18px;
}

.service-features li {
    font-size: 0.875rem;
    color: var(--color-text);
    padding: 7px 0;
    padding-left: 22px;
    position: relative;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.service-card.premium .service-features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
}

.service-card.premium .service-features li::before {
    color: var(--color-white);
}

.service-price {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--color-red);
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
    background: var(--color-cream-dark);
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at top, rgba(196, 30, 58, 0.08) 0%, transparent 60%),
        var(--color-cream-dark);
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--color-white);
    border: 2px solid var(--color-gold);
    padding: 32px;
    position: relative;
    transition: var(--transition-medium);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--color-gold);
    opacity: 0.3;
    line-height: 1;
    position: absolute;
    top: 14px;
    left: 22px;
}

.testimonial-text {
    font-size: 1.0625rem;
    color: var(--color-text);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--color-red);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50%;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    color: var(--color-text);
}

.author-title {
    font-size: 0.8125rem;
    color: var(--color-text-light);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: var(--color-white);
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(196, 30, 58, 0.1) 0%, transparent 50%),
        var(--color-white);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-red);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.125rem;
    color: var(--color-text);
    margin-bottom: 28px;
}

/* Contact Section */
.contact {
    padding: var(--section-padding) 0;
    background: var(--color-cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-lead {
    font-size: 1.125rem;
    color: var(--color-text);
    margin-bottom: 28px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--color-red);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.contact-value {
    font-size: 1.125rem;
    color: var(--color-text);
}

a.contact-value:hover {
    color: var(--color-red);
}

.contact-social {
    display: flex;
    gap: 14px;
}

.social-link {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    color: var(--color-text);
    padding: 8px 18px;
    border: 2px solid var(--color-gold);
    transition: var(--transition-medium);
}

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

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-white);
    padding: 38px;
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--color-gold);
}

.form-header {
    margin-bottom: 22px;
}

.form-header h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-red);
    margin-bottom: 8px;
}

.form-header p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

.form-group {
    position: relative;
    margin-bottom: 18px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 18px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    background: var(--color-cream);
    border: 2px solid transparent;
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--color-gold);
    background: var(--color-white);
}

.form-group label {
    position: absolute;
    left: 18px;
    top: 16px;
    font-size: 1rem;
    color: var(--color-text-light);
    pointer-events: none;
    transition: var(--transition-fast);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -8px;
    left: 14px;
    font-size: 0.75rem;
    background: var(--color-white);
    padding: 0 5px;
    color: var(--color-red);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23D4AF37' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-note {
    font-size: 0.8125rem;
    color: var(--color-text-light);
    text-align: center;
    margin-top: 12px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--color-red-dark) 0%, var(--color-red) 100%);
    padding: 60px 0 24px;
    font-family: 'Cormorant Garamond SemiBold', var(--font-body);
    font-weight: 700;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 22px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.footer-logo .logo-image {
    height: 130px;
    width: auto;
}

.footer-tagline {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 50px;
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
    font-weight: 700;
}

.footer-column a:hover {
    color: var(--color-gold);
}

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

.copyright {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
}

.footer-legal a:hover {
    color: var(--color-gold);
}

/* Responsive Design */
/* Impressum */
.impressum {
    padding: 40px 0 0;
    background: var(--color-cream);
}

.impressum-card {
    max-width: 700px;
    margin: 0 auto 60px;
    padding: 24px 28px;
    border: 2px solid var(--color-gold);
    background: var(--color-white);
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.impressum-card h3 {
    font-family: 'Cormorant Garamond SemiBold', var(--font-body);
    font-size: 2rem;
    color: var(--color-red);
    margin-bottom: 12px;
}

.impressum-card p {
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 10px;
}

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

    .service-card.premium {
        transform: translateY(0);
    }

    .service-card.premium:hover {
        transform: translateY(-10px);
    }

    .events-grid {
        grid-template-columns: 1fr 1fr;
    }

    .event-card.featured {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 1024px) {
    :root {
        --section-padding: 72px;
    }

    .container {
        padding: 0 30px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-container {
        position: relative;
        justify-content: center;
    }

    .mobile-menu-btn {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .logo {
        margin: 0 auto;
    }

    .logo::before,
    .logo::after {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-content {
        padding-left: 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-item.large,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-top {
        flex-direction: column;
        gap: 50px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-ornament-img {
        margin: 12px auto 18px;
    }

    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        max-width: 400px;
        gap: 12px;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons .btn {
        flex: 1 1 0;
        min-width: 0;
        width: auto;
        padding: 18px 20px;
        font-size: 1rem;
        white-space: normal;
        text-align: center;
    }

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

    .detail-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

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

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

    .contact .section-header.left {
        text-align: center;
    }

    .contact .section-header.left .section-title,
    .contact .section-header.left .section-badge {
        display: block;
        text-align: center;
    }

    .contact-social {
        justify-content: center;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .logo-image {
        height: 80px;
    }

    .navbar.scrolled .logo-image {
        height: 68px;
    }

    .footer-logo .logo-image {
        height: 70px;
    }

    .preloader-logo {
        height: 100px;
    }

    .hero-title {
        font-size: 3rem;
        line-height: 1.1;
    }

    .hero-title .title-line {
        display: block;
    }

    .hero-title .title-line,
    .hero-title .title-line.accent {
        color: var(--color-red);
    }

    .hero-badge {
        font-size: 1.7rem;
        font-weight: 800;
        padding: 10px 18px;
        max-width: 260px;
        white-space: normal;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 90%;
    }

    .hero-subtitle-main {
        font-family: 'Cormorant Garamond SemiBold', var(--font-body);
        font-size: 1.5rem;
        font-weight: 750;
        color: #6b4b00;
        white-space: normal;
        line-height: 1.3;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
        text-transform: uppercase;
    }

    .hero-subtitle-venue {
        font-size: 1.15rem;
    }

    .stats-grid {
        flex-direction: column;
        gap: 30px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .event-card.featured {
        grid-column: span 1;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-ornament-img {
        margin: 10px auto 15px;
    }

    .hero-buttons {
        flex-direction: column;
        flex-wrap: wrap;
        width: 100%;
        max-width: 340px;
        gap: 10px;
    }

    .hero-buttons .btn {
        flex: 1 1 auto;
        min-width: 0;
        padding: 15px 13px;
        font-size: 0.95rem;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

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

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

/* Selection color */
::selection {
    background: var(--color-gold);
    color: var(--color-white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gold);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-dark);
}
