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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Navigation - Clean and minimal like original */
.navbar {
    background-color: #fff;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-bottom: 1px solid #eee;
}

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

.nav-logo h1 {
    font-family: Georgia, serif;
    color: #333;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.reserve-btn {
    background-color: #333;
    color: white;
    border: none;
    padding: 12px 24px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.reserve-btn:hover {
    background-color: #555;
}

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

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

/* Hero Section - Clean and spacious like original */
.hero {
    position: relative;
    color: white;
    text-align: center;
    margin-top: 80px;
    height: 500px;
    overflow: hidden;
}

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

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 20px;
}

.hero-title {
    font-family: Georgia, serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: white;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.cta-button {
    background-color: #333;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #555;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #a8a090;
}

.about-section h2 {
    font-family: Georgia, serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    font-weight: 400;
    letter-spacing: -0.5px;
}

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

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
    font-weight: 300;
}

.learn-more-btn {
    background-color: #333;
    color: white;
    border: none;
    padding: 12px 24px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.learn-more-btn:hover {
    background-color: #555;
}

.about-video {
    text-align: center;
}

.about-video video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Menus Section */
.menus-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.menus-section h2 {
    font-family: Georgia, serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.menu-card {
    background: white;
    padding: 2rem;
    border: 1px solid #eee;
    transition: box-shadow 0.3s ease;
}

.menu-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.menu-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    margin-bottom: 1rem;
}

.menu-card h3 {
    font-family: Georgia, serif;
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 400;
}

.menu-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-weight: 300;
}

.price {
    font-size: 1.2rem;
    font-weight: 400;
    color: #333;
}

/* Locations Section */
.locations-section {
    padding: 80px 0;
    background-color: #a8a090;
}

.locations-section h2 {
    font-family: Georgia, serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.location-card {
    background: white;
    padding: 2rem;
    text-align: center;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.location-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.location-card h3 {
    font-family: Georgia, serif;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 400;
}

.location-card p {
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.phone {
    font-weight: 400;
    color: #333;
}

.website-link {
    color: #333;
    text-decoration: none;
}

.website-link:hover {
    text-decoration: underline;
}

/* Events Section */
.events-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.events-section h2 {
    font-family: Georgia, serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.events-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.events-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
    font-weight: 300;
}

.events-text h3 {
    font-family: Georgia, serif;
    font-size: 1.5rem;
    color: #333;
    margin: 2rem 0 1rem;
    font-weight: 400;
}

.events-text ul {
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.events-text li {
    margin-bottom: 0.5rem;
    color: #666;
    font-weight: 300;
}

.inquire-btn {
    background-color: #333;
    color: white;
    border: none;
    padding: 12px 24px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.inquire-btn:hover {
    background-color: #555;
}

.events-image {
    text-align: center;
}

.events-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Catering Section */
.catering-section {
    padding: 80px 0;
    background-color: #a8a090;
    text-align: center;
}

.catering-section h2 {
    font-family: Georgia, serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.catering-section > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.8;
}

.catering-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package {
    background: white;
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.package-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.package h3 {
    font-family: Georgia, serif;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 400;
}

.package p {
    color: #666;
    font-weight: 300;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-legal {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 2rem;
}

.footer-section h3,
.footer-section h4 {
    font-family: Georgia, serif;
    margin-bottom: 1rem;
    color: white;
    font-weight: 400;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
    font-weight: 300;
}

.footer-legal p {
    opacity: 0.6;
    font-size: 0.85rem;
    line-height: 1.5;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
}

.newsletter {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 2rem;
}

.newsletter h3 {
    font-family: Georgia, serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 400;
}

.newsletter p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
    font-weight: 300;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 12px;
    border: 1px solid #555;
    background-color: #444;
    color: white;
    min-width: 250px;
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: #aaa;
}

.newsletter-form button {
    background-color: white;
    color: #333;
    border: none;
    padding: 12px 24px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.newsletter-form button:hover {
    background-color: #f0f0f0;
}

.privacy {
    font-size: 0.9rem;
    opacity: 0.6;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-content,
    .events-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form input {
        min-width: 100%;
        max-width: 400px;
    }
}

/* Remove all the frank-specific styling and animations */