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

:root {
    --navy: #0a0e1a;
    --deep: #111827;
    --gold: #c9a84c;
    --gold-light: #e8d48b;
    --glass: rgba(255,255,255,0.05);
    --glass-border: rgba(255,255,255,0.08);
    --glass-strong: rgba(255,255,255,0.08);
    --text: #e2e8f0;
    --text-dim: #94a3b8;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--navy);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
}

/* ── Animated background ── */
.bg-grid {
    position: fixed;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
    0% { transform: translate(0,0); }
    100% { transform: translate(60px,60px); }
}

.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}
.bg-glow-1 { background: var(--gold); top: -200px; right: -200px; }
.bg-glow-2 { background: #1e40af; bottom: -200px; left: -200px; }

/* ── Navigation ── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1.2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(20px);
    background: rgba(10,14,26,0.7);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s;
}
nav.scrolled { background: rgba(10,14,26,0.95); }

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}
.logo-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}
.logo-icon svg {
    width: 100%;
    height: 100%;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.logo-text .top {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.logo-text .bottom {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.33em;
    white-space: nowrap;
}

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    padding: 0.6rem 1.5rem;
    background: var(--gold);
    color: var(--navy);
    border: none;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.mobile-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; }

/* ── Buttons ── */
.btn-primary {
    padding: 1rem 2.5rem;
    background: var(--gold);
    color: var(--navy);
    border: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 40px rgba(201,168,76,0.3); }
.btn-outline {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--glass-border);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── Sections & container ── */
section {
    position: relative;
    z-index: 1;
    padding: 7rem 2rem;
}
.container { max-width: 1200px; margin: 0 auto; }

.section-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.section-subtitle {
    color: var(--text-dim);
    font-size: 1.05rem;
    max-width: 600px;
    line-height: 1.8;
}

/* ── Hero ── */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,14,26,0.85) 0%, rgba(10,14,26,0.7) 50%, rgba(10,14,26,0.92) 100%);
    z-index: 1;
}
.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}
.hero-badge .dot {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%,100% { opacity: 1; }
    50% { opacity: 0.3; }
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.hero h1 .gold { color: var(--gold); }
.hero p {
    font-size: 1.15rem;
    color: var(--text-dim);
    max-width: 550px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--glass-border);
}
.stat-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 700;
}
.stat-item p { font-size: 0.8rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.3rem; }

/* ── Marquee Ticker ── */
.marquee-strip {
    position: relative;
    z-index: 2;
    background: rgba(201,168,76,0.08);
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
    backdrop-filter: blur(10px);
}
.marquee-inner {
    display: inline-block;
    animation: marquee 35s linear infinite;
}
.marquee-inner span {
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-right: 3rem;
    font-weight: 500;
    color: var(--text-dim);
}
.marquee-inner span em {
    font-style: normal;
    color: var(--gold);
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Glass Cards ── */
.glass-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}
.glass-card:hover { border-color: rgba(201,168,76,0.2); transform: translateY(-4px); }
.glass-card:hover::before { opacity: 1; }

.card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.2);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}
.glass-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}
.glass-card p { color: var(--text-dim); font-size: 0.95rem; }

/* ── About ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}
.about-image {
    aspect-ratio: 4/3;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    background: var(--deep);
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.75;
    transition: opacity 0.4s, transform 0.6s;
}
.about-image:hover img { opacity: 1; transform: scale(1.03); }
.about-image .img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 50%, rgba(201,168,76,0.08));
    pointer-events: none;
}
.about-text p { margin-bottom: 1.5rem; color: var(--text-dim); }
.about-text .highlight {
    color: var(--text);
    font-weight: 500;
    border-left: 3px solid var(--gold);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
}

/* ── Venue Features ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.feature-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
}
.feature-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
}
.feature-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    margin-top: 0.5rem;
}

/* ── Events ── */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* ── Event card images ── */
.card-img {
    width: 100%;
    height: 160px;
    overflow: hidden;
    margin: -2.5rem -2.5rem 1.5rem -2.5rem;
    width: calc(100% + 5rem);
    border-bottom: 1px solid var(--glass-border);
}
.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.6;
    transition: opacity 0.4s, transform 0.5s;
}
.glass-card:hover .card-img img { opacity: 0.85; transform: scale(1.05); }

/* ── Catering ── */
.catering-section {
    background: rgba(201,168,76,0.03);
}
.catering-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.menu-item {
    padding: 2rem;
    border-left: 2px solid var(--gold);
}
.menu-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.menu-item p { color: var(--text-dim); font-size: 0.9rem; }
.menu-item .menu-img {
    width: 100%;
    height: 140px;
    overflow: hidden;
    margin-bottom: 1.2rem;
    margin-top: -2.5rem;
    margin-left: -2rem;
    margin-right: -2.5rem;
    width: calc(100% + 4.5rem);
    border-bottom: 1px solid var(--glass-border);
}
.menu-item .menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.55;
    transition: opacity 0.4s;
}
.glass-card:hover .menu-img img { opacity: 0.8; }

/* ── Masonic ── */
.masonic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}
.masonic-card { padding: 3rem; }
.masonic-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}
.masonic-card ul { list-style: none; margin-top: 1rem; }
.masonic-card li {
    padding: 0.6rem 0;
    color: var(--text-dim);
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.95rem;
}
.masonic-card li::before {
    content: '◆';
    color: var(--gold);
    margin-right: 0.8rem;
    font-size: 0.6rem;
}

/* ── Contact ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 1rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s;
    outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--deep); }

.contact-info-list { list-style: none; }
.contact-info-item {
    display: flex;
    gap: 1.2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--glass-border);
}
.contact-info-item .icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,168,76,0.1);
    flex-shrink: 0;
    font-size: 1rem;
}
.contact-info-item h4 { font-size: 0.95rem; margin-bottom: 0.3rem; }
.contact-info-item p { color: var(--text-dim); font-size: 0.9rem; }

/* ── Gallery ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}
.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.7;
    transition: opacity 0.4s, transform 0.6s;
}
.gallery-item:hover img { opacity: 1; transform: scale(1.05); }
.gallery-item .gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1.2rem 1rem;
    background: linear-gradient(transparent, rgba(10,14,26,0.85));
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--text);
    pointer-events: none;
}

/* ── Lightbox ── */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(5,7,12,0.95);
    backdrop-filter: blur(20px);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.lightbox.active { display: flex; }

.lightbox-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
}
.lightbox-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--gold);
}
.lightbox-counter {
    font-size: 0.85rem;
    color: var(--text-dim);
}
.lightbox-close {
    background: none;
    border: 1px solid var(--glass-border);
    color: var(--text);
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.lightbox-close:hover { border-color: var(--gold); color: var(--gold); }

.lightbox-stage {
    position: relative;
    width: 100%;
    max-width: 900px;
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-stage img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    display: block;
    border: 1px solid var(--glass-border);
    transition: opacity 0.3s;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    color: var(--text);
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 3;
}
.lightbox-nav:hover { border-color: var(--gold); color: var(--gold); }
.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }

.lightbox-thumbs {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
    overflow-x: auto;
    max-width: 900px;
    padding: 0.5rem 0;
}
.lightbox-thumb {
    width: 70px;
    height: 50px;
    flex-shrink: 0;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.2s;
}
.lightbox-thumb.active { border-color: var(--gold); opacity: 1; }
.lightbox-thumb:hover { opacity: 0.8; }
.lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Map ── */
#map { font-family: 'Inter', sans-serif; }

/* ── Footer ── */
footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--glass-border);
    padding: 3rem 2rem;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.footer-logo .logo-icon {
    width: 30px;
    height: 30px;
}
.footer-logo .logo-text .top {
    font-size: 1.15rem;
}
.footer-logo .logo-text .bottom {
    font-size: 0.7rem;
}
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { color: var(--text-dim); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { color: var(--text-dim); font-size: 0.8rem; }

/* ── Animations ── */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .events-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10,14,26,0.95);
        backdrop-filter: blur(20px);
        padding: 1.5rem 2rem;
        gap: 1.2rem;
        border-bottom: 1px solid var(--glass-border);
    }
    .nav-links.show { display: flex; }
    .nav-cta { display: none; }
    .mobile-toggle { display: block; }
    .hero-stats { flex-direction: column; gap: 1.5rem; }
    .about-grid, .contact-grid, .masonic-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .events-grid, .catering-grid { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; gap: 1.5rem; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-nav { width: 40px; height: 40px; font-size: 1rem; }
}

/* ── Touch devices ── */
@media (hover: none) {
    .hero-bg { background-attachment: scroll; }
}
