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

body {
    font-family: 'Montserrat', sans-serif;
    background: #F5F7FA;
    color: #1A2C3E;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Color Variables - Navy Blue & Gold */
:root {
    --navy-deep: #0A1A2F;
    --navy-primary: #0F2A3F;
    --navy-medium: #1A3A4F;
    --navy-light: #E8F0F5;
    --gold-primary: #C9A03D;
    --gold-dark: #B88D2A;
    --white: #FFFFFF;
    --gray-light: #F8F9FA;
    --gray-medium: #E2E8F0;
    --text-dark: #1A2C3E;
    --text-muted: #4A5B6E;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 2px solid var(--gold-primary);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    height: 45px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    color: var(--navy-deep);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold-primary);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-primary);
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-primary) 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(201, 160, 61, 0.1) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(201, 160, 61, 0.15);
    border: 1px solid var(--gold-primary);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--gold-primary);
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.title-line {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

.title-main {
    display: block;
    font-size: 5rem;
    color: var(--gold-primary);
    margin-top: 0.5rem;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.hero-divider span {
    width: 60px;
    height: 1px;
    background: var(--gold-primary);
}

.hero-divider i {
    color: var(--gold-primary);
    font-size: 1.2rem;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: var(--gold-primary);
    color: var(--navy-deep);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(201, 160, 61, 0.3);
}

.btn-outline {
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(201, 160, 61, 0.1);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-primary);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    color: var(--gold-primary);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--navy-deep);
    margin-bottom: 1rem;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: var(--gold-primary);
    margin: 1rem auto 0;
}

/* Features */
.features {
    padding: 6rem 0;
    background: var(--white);
}

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

.feature-card {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-medium);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px rgba(201, 160, 61, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(201, 160, 61, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--gold-primary);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--navy-deep);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Specials */
.specials {
    padding: 6rem 0;
    background: var(--navy-light);
}

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

.specials-text h2 {
    font-size: 2.5rem;
    color: var(--navy-deep);
    margin: 1rem 0;
}

.specials-text > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.specials-list {
    margin-bottom: 2rem;
}

.special-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.special-item i {
    color: var(--gold-primary);
}

.special-item span {
    color: var(--text-dark);
}

.specials-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.image-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold-primary);
    color: var(--navy-deep);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background: var(--white);
}

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

.testimonial-card {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--gray-medium);
}

.testimonial-rating {
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    display: block;
    color: var(--navy-deep);
    font-size: 1rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* CTA */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-primary) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta .btn-primary {
    background: var(--gold-primary);
    color: var(--navy-deep);
}

.cta .btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.cta .btn-outline {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.cta .btn-outline:hover {
    background: rgba(201, 160, 61, 0.1);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: var(--navy-deep);
    padding: 4rem 0 2rem;
    border-top: 2px solid var(--gold-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
}

.footer-logo span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold-primary);
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    transition: all 0.3s;
    border: 1px solid rgba(201, 160, 61, 0.3);
}

.footer-social a:hover {
    background: var(--gold-primary);
    color: var(--navy-deep);
    border-color: var(--gold-primary);
}

.footer-links h4 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.footer-links li i {
    width: 20px;
    margin-right: 0.5rem;
    color: var(--gold-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* Menu Page */
.menu-page {
    padding-top: 80px;
}

.menu-hero {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-primary) 100%);
    padding: 5rem 0;
    text-align: center;
}

.menu-hero-content h1 {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.menu-hero-content p {
    color: rgba(255, 255, 255, 0.8);
}

.menu-hero-divider {
    width: 60px;
    height: 2px;
    background: var(--gold-primary);
    margin: 1.5rem auto 0;
}

.menu-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 5%;
}

.menu-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-medium);
}

.menu-nav-btn {
    background: transparent;
    border: 1px solid var(--gray-medium);
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.menu-nav-btn:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.menu-nav-btn.active {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: var(--navy-deep);
}

.menu-section {
    display: none;
    animation: fadeIn 0.4s ease;
}

.menu-section.active {
    display: block;
}

.menu-section .section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.menu-section .section-header h2 {
    font-size: 2rem;
    color: var(--navy-deep);
    margin-bottom: 0.5rem;
}

.menu-section .section-header p {
    color: var(--text-muted);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--gray-medium);
    transition: all 0.3s ease;
}

.menu-item:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 5px 20px rgba(201, 160, 61, 0.1);
}

.menu-item-info {
    flex: 2;
}

.menu-item-info h3 {
    font-size: 1.3rem;
    color: var(--navy-deep);
    margin-bottom: 0.5rem;
}

.price {
    font-weight: 600;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.description {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.4;
}

.menu-item-3d {
    flex: 1;
    text-align: center;
    min-width: 220px;
}

model-viewer {
    width: 100%;
    height: 200px;
    background: var(--gray-light);
    border-radius: 12px;
    margin-bottom: 0.75rem;
}

.load-3d-btn {
    background: var(--gold-primary);
    color: var(--navy-deep);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.load-3d-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.load-3d-btn.loaded {
    background: var(--gray-medium);
    color: var(--text-muted);
    cursor: default;
}

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

.drinks-category h3 {
    font-size: 1.3rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-medium);
}

.drink-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--gray-medium);
}

.drink-price {
    color: var(--gold-primary);
    font-weight: 500;
}

/* Contact Page */
.contact-page {
    padding-top: 80px;
}

.contact-hero {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-primary) 100%);
    padding: 4rem 0;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.contact-hero-content p {
    color: rgba(255, 255, 255, 0.8);
}

.contact-hero-divider {
    width: 60px;
    height: 2px;
    background: var(--gold-primary);
    margin: 1.5rem auto 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-info h2,
.contact-form-container h2 {
    font-size: 1.8rem;
    color: var(--navy-deep);
    margin-bottom: 2rem;
}

.info-card {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--gray-medium);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 160, 61, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon i {
    font-size: 1.2rem;
    color: var(--gold-primary);
}

.info-details h3 {
    font-size: 1rem;
    color: var(--navy-deep);
    margin-bottom: 0.25rem;
}

.info-details p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-section {
    margin-top: 2rem;
    padding-top: 1rem;
}

.social-section h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--navy-deep);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-deep);
    transition: all 0.3s;
    border: 1px solid var(--gray-medium);
}

.social-link:hover {
    background: var(--gold-primary);
    color: var(--navy-deep);
    border-color: var(--gold-primary);
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--gray-medium);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--navy-deep);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: var(--gray-light);
    border: 1px solid var(--gray-medium);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
}

.btn-submit {
    width: 100%;
    background: var(--gold-primary);
    color: var(--navy-deep);
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.map-section {
    margin-top: 2rem;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: var(--navy-deep);
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-medium);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .title-main {
        font-size: 3.5rem;
    }
    
    .specials-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1.5rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .menu-item-3d {
        width: 100%;
    }
    
    .menu-nav-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
