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

/* Variables — matched to logo colors */
:root {
    --red: #ff6b35;
    --orange: #e8b84b;
    --gold: #ff6b35;
    --dark: #1c1c1c;
    --dark-header: #111111;
    --light-bg: #f9f6f2;
    --alt-bg: #f0ebe3;
    --text: #222;
    --text-light: #666;
}

body {
    font-family: Georgia, serif;
    color: var(--text);
    line-height: 1.7;
}

a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
header {
    background-color: var(--dark-header);
    padding: 0.6rem 1.5rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.header-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.logo-img {
    height: 72px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 4px rgba(255,255,255,0.6));
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

nav ul li a {
    color: #ddd;
    font-size: 0.95rem;
    font-family: Arial, sans-serif;
    transition: color 0.2s;
}

nav ul li a:hover {
    color: var(--orange);
    text-decoration: none;
}

/* Hero */
.hero {
    position: relative;
    background: url('images/IMG_3930.jpg') center center / cover no-repeat;
    color: white;
    padding: 6rem 1.5rem;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.hero-logo-text {
    max-width: 500px;
    width: 85%;
    height: auto;
    display: block;
    margin: 0 auto 0.75rem;
    filter: drop-shadow(2px 3px 8px rgba(0,0,0,0.7));
}

.coming-soon-badge {
    display: inline-block;
    background: #cc0000;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 4px;
    flex-shrink: 0;
}

.coming-soon-inline {
    font-size: 0.75rem;
    font-family: Arial, sans-serif;
    font-weight: bold;
    color: #cc0000;
    letter-spacing: 1px;
    text-transform: uppercase;
    vertical-align: middle;
    margin-left: 0.5rem;
}

.hero-sub {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #eee;
}

.hero-desc {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    background: var(--red);
    color: white;
    padding: 0.8rem 2.2rem;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: background 0.2s, transform 0.2s;
}

.btn:hover {
    background: var(--orange);
    text-decoration: none;
    transform: translateY(-2px);
}

/* Sections */
.section { padding: 4rem 1.5rem; background: var(--light-bg); }
.alt-bg { background: var(--alt-bg); }

.section-title {
    font-size: 2rem;
    color: var(--dark);
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 0.5rem auto 0;
}

/* About cards */
.about-grid {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.about-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-top: 4px solid var(--gold);
}

.about-card .icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.about-card h3 { color: var(--dark); margin-bottom: 0.5rem; font-size: 1.1rem; }

/* Photo gallery */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.photo-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}

.photo-gallery img:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

/* History */
.history-content { max-width: 700px; margin: 0 auto; }
.history-content p { margin-bottom: 1.25rem; font-size: 1.05rem; }

/* Hours & Pricing */
.hours-grid {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hours-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    flex: 1;
    min-width: 260px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-top: 4px solid var(--gold);
}

.hours-card h3 { color: var(--dark); margin-bottom: 1rem; font-size: 1.1rem; }

.hours-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
}

.hours-table td { padding: 0.5rem 0; border-bottom: 1px solid #eee; }
.hours-table td:last-child { text-align: right; font-weight: bold; color: var(--gold); }

.note {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-light);
    font-family: Arial, sans-serif;
}

.party-box {
    background: var(--dark);
    color: white;
    border-radius: 8px;
    padding: 1.75rem 2rem;
    text-align: center;
    border-left: 5px solid var(--gold);
}

.party-box h3 { margin-bottom: 0.5rem; font-size: 1.2rem; color: var(--orange); }
.party-box a { color: var(--orange); }

/* Contact */
.contact-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info, .contact-note { flex: 1; min-width: 240px; }

.contact-info h3, .contact-note h3 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.4rem;
}

.contact-info p { margin-bottom: 0.75rem; font-family: Arial, sans-serif; }

.social { margin-top: 1.25rem; }
.social h4 { color: var(--dark); margin-bottom: 0.5rem; font-size: 0.95rem; }

.social-link {
    display: inline-block;
    background: var(--red);
    color: white !important;
    padding: 0.3rem 0.9rem;
    border-radius: 4px;
    font-size: 0.85rem;
    margin-right: 0.4rem;
    margin-bottom: 0.5rem;
    font-family: Arial, sans-serif;
    transition: background 0.2s;
}

.social-link:hover { background: var(--orange); text-decoration: none; }

.contact-note ul { list-style: none; padding: 0; }

.contact-note ul li {
    padding: 0.4rem 0;
    border-bottom: 1px solid #ccc;
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
}

.contact-note ul li::before { content: '🦕 '; }

/* Footer */
footer {
    background: var(--dark-header);
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 1.5rem;
    font-family: Arial, sans-serif;
    font-size: 0.875rem;
}

.footer-logo-text {
    height: 36px;
    width: auto;
    opacity: 0.7;
    display: block;
    margin: 0 auto 0.6rem;
    filter: none;
}

/* Responsive */
@media (max-width: 650px) {
    .hero h2 { font-size: 2rem; }
    nav ul { gap: 0.75rem; }
    .about-card { max-width: 100%; }
    .photo-gallery { grid-template-columns: repeat(2, 1fr); }
    .logo-img { height: 56px; }
    .hero-logo-text { max-width: 300px; }
}
