/* Deployment-Ready CSS - Simplified and Compatible */

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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.nav-logo img {
    height: 50px;
    width: auto;
    max-width: 100%;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #2C1810;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #d4af37;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #2C1810;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    margin-top: 80px;
}

.hero-banner {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    max-width: 100%;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
}

.hero-content {
    text-align: center;
    color: #2C1810;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    background: #fff;
    position: relative;
}

.hero-title {
    font-family: Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2C1810;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: Georgia, serif;
    font-size: 2rem;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #666;
}

/* Countdown Timer */
.countdown-container {
    margin: 40px 0;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.time-unit {
    background: #fff;
    border: 2px solid #d4af37;
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    min-width: 80px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.time-unit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.time-number {
    display: block;
    color: #2C1810;
    font-weight: 700;
    font-size: 2rem;
}

.time-label {
    display: block;
    color: #d4af37;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    font-weight: 500;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #d4af37 0%, #f4e4c1 50%, #d4af37 100%);
    color: #2C1810;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f9f6f0;
}

.section-title {
    font-family: Georgia, serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2C1810;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.closing-message {
    text-align: center;
    font-size: 1.2rem;
    color: #d4af37;
    margin-top: 30px;
}

/* Coffee Menu Section */
.coffee-menu {
    padding: 80px 0;
    background: #f5f2e8;
    position: relative;
}

.coffee-menu .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu-header {
    text-align: center;
    margin-bottom: 50px;
}

.menu-logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    padding: 5px;
}

.menu-title {
    font-family: Georgia, serif;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 10px;
    font-weight: 400;
    text-align: center;
}

.menu-subtitle {
    display: none;
}

/* Menu Card Container */
.menu-card {
    background: #f4f1e8;
    border: 2px solid #d4af37;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
}

.menu-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 50px;
    margin-bottom: 50px;
}

.menu-section {
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    position: relative;
}

.menu-section-title {
    font-family: Georgia, serif;
    font-size: 1.5rem;
    color: #8B4513;
    margin-bottom: 20px;
    text-align: left;
    font-weight: 400;
    font-style: italic;
    position: relative;
    border-bottom: 1px solid #8B4513;
    padding-bottom: 10px;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0;
    border-radius: 0;
    background: none;
    border: none;
    position: relative;
}

.item-name {
    font-weight: 400;
    color: #8B4513;
    font-size: 1rem;
    flex: 1;
    font-family: Arial, sans-serif;
}

.item-verse {
    color: #B8860B;
    font-weight: 400;
    font-size: 0.9rem;
    text-align: right;
    font-family: Arial, sans-serif;
}

.menu-section.specials {
    grid-column: 1 / -1;
    margin-top: 20px;
}

.menu-verse {
    text-align: center;
    padding: 30px 0 0;
    border-top: 1px solid #8B4513;
}

.menu-verse p {
    font-size: 1rem;
    font-style: italic;
    color: #8B4513;
    margin-bottom: 10px;
    line-height: 1.6;
    font-weight: 400;
    font-family: Arial, sans-serif;
}

.menu-verse cite {
    font-size: 1rem;
    color: #8B4513;
    font-weight: 400;
    font-family: Arial, sans-serif;
    font-style: normal;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
    max-width: 100%;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
}

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

/* Registration Section */
.registration {
    padding: 80px 0;
    background: #f4f1e8;
    color: #333;
}

.registration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.event-details {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.event-details h3 {
    font-family: Georgia, serif;
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #2C1810;
    font-weight: 600;
}

.address-info h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #d4af37;
    font-weight: 600;
}

.address-info p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #666;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #d4af37;
    text-decoration: none;
    margin-top: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 10px 20px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.1);
}

.map-link:hover {
    background: #d4af37;
    color: #2C1810;
    transform: translateY(-1px);
}

.map-container {
    margin-top: 25px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.registration-form {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.registration-form h3 {
    font-family: Georgia, serif;
    font-size: 1.8rem;
    color: #2C1810;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

.airtable-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.airtable-embed {
    border-radius: 15px;
}

/* Footer */
.footer {
    background: #2C1810;
    color: #f4e4c1;
    text-align: center;
    padding: 40px 0;
}

.footer p {
    margin-bottom: 10px;
}

.footer a {
    color: #d4af37;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .menu-title {
        font-size: 2rem;
    }
    
    .menu-sections {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .menu-card {
        padding: 30px;
        margin: 0 15px;
    }
    
    .registration-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .countdown-timer {
        gap: 15px;
    }
    
    .time-unit {
        min-width: 70px;
        padding: 15px 10px;
    }
    
    .time-number {
        font-size: 1.5rem;
    }
    
    .banner-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 40px 15px;
    }
    
    .menu-card {
        padding: 20px;
    }
    
    .event-details,
    .registration-form {
        padding: 25px;
    }
}
