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

:root {
    --gold: #D4AF37;
    --gold-light: #F4CF57;
    --gold-dark: #B48F17;
    --rose: #FFE4E1;
    --rose-dark: #FFB6C1;
    --rose-deeper: #FF69B4;
    --white: #FFFFFF;
    --cream: #FFF8F0;
    --pearl: #F5F5F0;
    --champagne: #F7E7CE;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(135deg, var(--cream) 0%, var(--pearl) 100%);
    color: #333;
    overflow-x: hidden;
}

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

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold), var(--rose-deeper));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--gold-light), var(--rose-dark));
}

/* Loading Spinner */
.loading-spinner {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: linear-gradient(135deg, var(--cream), var(--champagne));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading-spinner.hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    position: relative;
    width: 100px;
    height: 100px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--gold);
    border-bottom-color: var(--rose-deeper);
    animation: spin 2s linear infinite;
}

.spinner-ring:nth-child(2) {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-top-color: var(--rose-darker);
    border-bottom-color: var(--gold-light);
    animation: spin-reverse 3s linear infinite;
}

.spinner-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(135deg, var(--gold), var(--rose-deeper));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.loading-text {
    margin-top: 30px;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--gold), var(--rose-deeper));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes spin-reverse {
    to {
        transform: rotate(-360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(212, 175, 55, 0.15);
    padding: 8px 0;
}

nav:not(.scrolled) {
    background: transparent;
    padding: 24px 0;
}

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

.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: bold;
    background: linear-gradient(135deg, var(--gold), var(--rose-deeper));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.2em;
    text-shadow: 2px 2px 4px rgba(212, 175, 55, 0.2);
}

nav.scrolled .logo-main {
    background: linear-gradient(135deg, var(--gold-dark), var(--rose-deeper));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-sub {
    font-family: 'Great Vibes', cursive;
    font-size: 20px;
    color: var(--rose-deeper);
    margin-top: -8px;
}

nav.scrolled .logo-sub {
    color: var(--gold-dark);
}

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

.nav-links a {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    color: white;
    position: relative;
    transition: color 0.3s;
}

nav.scrolled .nav-links a {
    color: #333;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--rose-deeper));
    transition: width 0.3s;
}

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

nav.scrolled .nav-links a:hover {
    color: var(--rose-deeper);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn svg {
    width: 32px;
    height: 32px;
    stroke: white;
}

nav.scrolled .mobile-menu-btn svg {
    stroke: var(--gold);
}

.mobile-menu {
    display: none;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--gold);
    padding: 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu.active {
    max-height: 400px;
}

.mobile-menu a {
    display: block;
    padding: 12px 0;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: color 0.3s;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    color: var(--rose-deeper);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&q=80&w=1920') center/cover;
    filter: brightness(0.5);
    animation: kenburns 20s ease-in-out infinite alternate;
}

@keyframes kenburns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 228, 225, 0.3) 0%, rgba(212, 175, 55, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 24px;
    max-width: 1000px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-family: 'Great Vibes', cursive;
    font-size: 48px;
    background: linear-gradient(135deg, var(--gold-light), var(--rose-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 96px;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5),
        0 0 40px rgba(255, 228, 225, 0.3),
        2px 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.hero-title-sub {
    font-size: 48px;
    display: block;
    margin-top: 8px;
    background: linear-gradient(135deg, var(--gold), var(--rose-deeper));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.2em;
}

.hero-divider {
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--rose-deeper), transparent);
    margin: 32px auto;
    box-shadow: 0 0 10px var(--gold);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 10px var(--gold);
    }

    50% {
        box-shadow: 0 0 20px var(--gold-light), 0 0 30px var(--rose-deeper);
    }
}

.hero-description {
    font-size: 20px;
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-description .highlight {
    color: var(--gold-light);
    font-weight: bold;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--rose-deeper));
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}

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

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.2);
}

/* About Section */
.about {
    padding: 100px 24px;
    background: linear-gradient(135deg, var(--cream), var(--rose));
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?auto=format&fit=crop&q=80&w=1920') center/cover;
    opacity: 0.05;
}

.about::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23D4AF37" fill-opacity="0.03"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-family: 'Great Vibes', cursive;
    font-size: 48px;
    background: linear-gradient(135deg, var(--gold), var(--rose-deeper));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #333;
    margin-bottom: 24px;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--rose-deeper), transparent);
    margin: 0 auto;
}

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

.about-text {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.about-text strong {
    color: var(--gold-dark);
    font-family: 'Playfair Display', serif;
}

.info-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
    border-left: 4px solid var(--gold);
    display: flex;
    gap: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 48px rgba(212, 175, 55, 0.3);
}

.info-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--rose-deeper));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.info-card-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: bold;
    color: var(--gold-dark);
    margin-bottom: 8px;
}

.info-card-content p {
    font-size: 14px !important;
    color: #666 !important;
}

.info-card-content .highlight {
    color: var(--rose-deeper);
    font-weight: bold;
    font-size: 16px;
}

.about-visuals {
    position: relative;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.image-grid>div:first-child {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 48px;
}

.image-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s;
}

.image-grid img:hover {
    transform: rotate(2deg) scale(1.05);
}

.stat-card {
    background: linear-gradient(135deg, var(--gold), var(--rose-deeper));
    color: white;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
}

.stat-card svg {
    width: 24px;
    height: 24px;
    margin: 0 auto 8px;
    stroke: white;
    fill: none;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: bold;
    display: block;
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.decorative-frame {
    position: absolute;
    top: 40px;
    right: 40px;
    bottom: -40px;
    left: -40px;
    border: 2px solid var(--gold);
    border-radius: 12px;
    opacity: 0.3;
    z-index: -1;
}

/* Services Section */
.services {
    padding: 100px 24px;
    background: linear-gradient(135deg, var(--pearl), var(--champagne));
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1469334031218-e382a71b716b?auto=format&fit=crop&q=80&w=1920') center/cover;
    opacity: 0.05;
    filter: grayscale(100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.service-card {
    position: relative;
    height: 450px;
    perspective: 1000px;
    cursor: pointer;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.service-card:hover .service-card-inner {
    transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
}

.service-card-front {
    background: white;
}

.service-card-image {
    height: 60%;
    overflow: hidden;
    position: relative;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(212, 175, 55, 0.8), transparent);
}

.service-card-info {
    height: 40%;
    padding: 24px;
    background: linear-gradient(135deg, var(--gold), var(--rose-deeper));
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.service-card-info::before {
    content: '';
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.service-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: bold;
    color: white;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}

.service-card-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
}

.service-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
    background: white;
    padding: 4px;
    position: relative;
    z-index: 1;
}

.service-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.service-card-back {
    background: linear-gradient(135deg, var(--gold-light), var(--rose-dark));
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    position: relative;
}

.service-card-back::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23FFFFFF" fill-opacity="0.1"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

.service-card-back-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
    padding: 8px;
}

.service-card-back-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.service-card-back h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: bold;
    color: white;
    margin-bottom: 16px;
}

.service-card-back p {
    color: white;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-card-back .btn {
    padding: 12px 24px;
    background: white;
    color: var(--gold-dark);
    font-size: 12px;
}

.service-card-back .btn:hover {
    background: var(--gold-dark);
    color: white;
}

/* Events Section */
.events {
    padding: 100px 24px;
    background: linear-gradient(135deg, var(--pearl), var(--cream));
    position: relative;
    overflow: hidden;
}

.events::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1511285560929-80b456fea0bc?auto=format&fit=crop&q=80&w=1920') center/cover;
    opacity: 0.03;
    filter: grayscale(100%);
}

.events-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 40px 0;
}

.filter-btn {
    padding: 10px 24px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid transparent;
    border-radius: 30px;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--rose-deeper));
    color: white;
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.event-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(212, 175, 55, 0.25);
}

.event-card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

.event-card:hover .event-card-image img {
    transform: scale(1.1);
}

.event-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--gold), var(--rose-deeper));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.event-card-content {
    padding: 24px;
}

.event-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.3;
}

.event-card-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    height: 60px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.event-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.event-card-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-dark);
    font-size: 14px;
    font-weight: bold;
}

.event-card-date svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
}

.event-card-button {
    padding: 8px 24px;
    background: linear-gradient(135deg, var(--gold), var(--rose-deeper));
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: transform 0.3s;
    display: inline-block;
}

.event-card-button:hover {
    transform: translateX(5px);
    color: white;
}

/* No Events Message */
.no-events {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    border: 2px dashed var(--gold);
}

.no-events h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--gold-dark);
    margin-bottom: 16px;
}

.no-events p {
    color: #666;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.no-events .btn {
    display: inline-block;
    margin-top: 10px;
}

/* Loading State */
.events-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.loading-spinner-small {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(212, 175, 55, 0.1);
    border-top: 3px solid var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

/* Enhanced Event Cards */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.event-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.25),
        0 0 40px rgba(255, 105, 180, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--rose-deeper), var(--gold-light));
    z-index: 2;
}

.event-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.event-card:hover .event-card-image img {
    transform: scale(1.15);
}

.event-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold), var(--rose-deeper));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.event-card-date-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    padding: 30px 25px 15px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 2;
}

.event-card:hover .event-card-date-overlay {
    transform: translateY(0);
}

.event-day {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: bold;
    color: var(--gold-light);
    margin-bottom: 5px;
}

.event-full-date {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 5px;
}

.event-time {
    font-size: 13px;
    color: var(--rose-dark);
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-card-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-card-header {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.event-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: bold;
    color: #222;
    line-height: 1.3;
    flex: 1;
    margin: 0;
    background: linear-gradient(135deg, var(--gold-dark), #222);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.event-card-type {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-dark);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.event-card-description {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-card-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03), rgba(255, 105, 180, 0.03));
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.event-card-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
}

.event-card-detail:not(:last-child) {
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.event-card-detail svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    flex-shrink: 0;
    background: rgba(212, 175, 55, 0.1);
    padding: 8px;
    border-radius: 10px;
}

.detail-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-dark);
    font-weight: bold;
    margin-bottom: 3px;
}

.detail-value {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    line-height: 1.3;
}

.detail-time {
    font-size: 13px;
    color: var(--rose-deeper);
    font-weight: bold;
    margin-top: 3px;
    padding: 3px 8px;
    background: rgba(255, 105, 180, 0.1);
    border-radius: 6px;
    display: inline-block;
}

.event-card-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.event-card-button {
    flex: 1;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--gold), var(--rose-deeper));
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.event-card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    color: white;
}

.event-card-button svg {
    width: 16px;
    height: 16px;
    stroke: white;
    transition: transform 0.3s;
}

.event-card-button:hover svg {
    transform: translateX(3px);
}

.event-card-share {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.event-card-share:hover {
    background: linear-gradient(135deg, var(--gold), var(--rose-deeper));
    transform: translateY(-2px);
}

.event-card-share svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold-dark);
    transition: stroke 0.3s;
}

.event-card-share:hover svg {
    stroke: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .event-card-title {
        font-size: 22px;
    }

    .event-card-content {
        padding: 20px;
    }

    .event-card-details {
        padding: 15px;
    }

    .event-card-actions {
        flex-direction: column;
    }

    .event-card-button,
    .event-card-share {
        width: 100%;
    }
}

/* Animation for event cards */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.event-card {
    animation: fadeInScale 0.6s ease-out;
}

/* Glow effect on hover */
.event-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(212, 175, 55, 0) 0%,
            rgba(212, 175, 55, 0.05) 50%,
            rgba(255, 105, 180, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 24px;
    z-index: 1;
}

.event-card:hover::after {
    opacity: 1;
}

/* Update existing spin animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



/* Gallery Section */
.gallery {
    padding: 100px 24px;
    background: linear-gradient(135deg, var(--cream), var(--pearl));
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://www.transparenttextures.com/patterns/black-linen-2.png');
    opacity: 0.1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    aspect-ratio: 1;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(5) {
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 48px rgba(212, 175, 55, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.8), rgba(255, 105, 180, 0.8));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay svg {
    width: 48px;
    height: 48px;
    stroke: white;
    margin-bottom: 8px;
}

.gallery-overlay span {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.lightbox-close svg {
    width: 40px;
    height: 40px;
    stroke: rgba(255, 255, 255, 0.7);
    transition: stroke 0.3s;
}

.lightbox-close:hover svg {
    stroke: white;
}

.lightbox img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

/* Contact Section */
.contact {
    padding: 100px 24px;
    background: linear-gradient(135deg, var(--champagne), var(--rose));
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&q=80&w=1920') center/cover;
    opacity: 0.05;
}

.contact-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 64px rgba(212, 175, 55, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.contact-info {
    padding: 60px;
    background: linear-gradient(135deg, var(--gold), var(--rose-deeper));
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.1;
}

.contact-info h3 {
    font-family: 'Great Vibes', cursive;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: transform 0.3s;
}

.contact-detail:hover {
    transform: translateX(8px);
}

.contact-detail-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s;
}

.contact-detail:hover .contact-detail-icon {
    background: white;
}

.contact-detail-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
    transition: stroke 0.3s;
}

.contact-detail:hover .contact-detail-icon svg {
    stroke: var(--gold-dark);
}

.contact-detail-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-detail-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contact-quote {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
}

.contact-form {
    padding: 60px;
    background: white;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-dark);
    margin-bottom: 8px;
}

.form-group label .required {
    color: #e74c3c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    background: rgba(212, 175, 55, 0.05);
    border: none;
    border-bottom: 2px solid #ddd;
    outline: none;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.form-group input.error,
.form-group textarea.error {
    border-bottom-color: #e74c3c;
    background: rgba(231, 76, 60, 0.05);
}

.form-group input.success {
    border-bottom-color: #27ae60;
}

.form-group textarea {
    resize: none;
    min-height: 120px;
}

.form-error {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 4px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-submit {
    width: 100%;
    padding: 16px;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    background: linear-gradient(135deg, var(--gold), var(--rose-deeper));
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
}

.form-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.6);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-submit svg {
    width: 18px;
    height: 18px;
    stroke: white;
    transition: transform 0.3s;
}

.form-submit:hover:not(:disabled) svg {
    transform: translateX(4px);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
    padding: 60px 24px 32px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.footer-logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: bold;
    background: linear-gradient(135deg, var(--gold), var(--rose-deeper));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.2em;
    margin-bottom: 8px;
}

.footer-logo p {
    font-family: 'Great Vibes', cursive;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--gold), var(--rose-deeper));
    transform: translateY(-4px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.footer-bottom-links span {
    background: linear-gradient(135deg, var(--gold), var(--rose-deeper));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
}

/* QuickSite Credit Badge */
.quicksite-credit {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.quicksite-credit:hover {
    transform: translateY(-2px);
}

.quicksite-badge {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 105, 180, 0.1));
    border: 2px solid transparent;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.quicksite-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(135deg, var(--gold), var(--rose-deeper), var(--gold-light));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.8;
    transition: opacity 0.4s ease;
}

.quicksite-credit:hover .quicksite-badge::before {
    opacity: 1;
    animation: borderGlow 2s ease-in-out infinite;
}

@keyframes borderGlow {

    0%,
    100% {
        background: linear-gradient(135deg, var(--gold), var(--rose-deeper), var(--gold-light));
    }

    50% {
        background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--rose-deeper));
    }
}

.quicksite-icon {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.quicksite-credit:hover .quicksite-icon {
    stroke: var(--gold-light);
    transform: scale(1.1) rotate(5deg);
}

.quicksite-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.quicksite-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.quicksite-credit:hover .quicksite-label {
    color: rgba(255, 255, 255, 0.8);
}

.quicksite-name {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: bold;
    background: linear-gradient(135deg, var(--gold), var(--rose-deeper));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.quicksite-credit:hover .quicksite-name {
    background: linear-gradient(135deg, var(--gold-light), var(--rose-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.08em;
}

.quicksite-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.quicksite-credit:hover .quicksite-shine {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

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

    .footer-bottom-left {
        align-items: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 8px;
    }

    .quicksite-badge {
        padding: 10px 16px;
    }

    .quicksite-icon {
        width: 20px;
        height: 20px;
    }

    .quicksite-name {
        font-size: 14px;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.slide-up {
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sparkle Effect */
@keyframes sparkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: sparkle 2s ease-in-out infinite;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .mobile-menu {
        display: block;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-title-sub {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 32px;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .image-grid>div:first-child {
        padding-top: 0;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

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

    .contact-info,
    .contact-form {
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }
}