/* Tony's Hibachi - Main Stylesheet */

:root {
    --brand-red: #DC2626;
    --brand-black: #000000;
    --dark-gray: #1a1a1a;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Navigation */
.navbar {
    background-color: #000000;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--white);
}

.navbar-logo {
    height: 50px;
    margin-right: 1rem;
}

.navbar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.navbar-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-menu a:hover,
.navbar-menu a.active {
    color: var(--brand-red);
}

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

/* Flames Animation */
@keyframes flame1 {
    0%, 100% { 
        transform: scaleY(1) translateX(0) rotate(0deg);
        filter: hue-rotate(0deg) brightness(1) blur(0px);
    }
    25% { 
        transform: scaleY(1.4) translateX(-5px) rotate(-2deg);
        filter: hue-rotate(10deg) brightness(1.3) blur(0.5px);
    }
    50% { 
        transform: scaleY(0.7) translateX(3px) rotate(1deg);
        filter: hue-rotate(-5deg) brightness(0.8) blur(0.2px);
    }
    75% { 
        transform: scaleY(1.2) translateX(-2px) rotate(-1deg);
        filter: hue-rotate(15deg) brightness(1.1) blur(0.3px);
    }
}

@keyframes flame2 {
    0%, 100% { 
        transform: scaleY(1.1) translateX(0) rotate(1deg);
        filter: hue-rotate(5deg) brightness(0.9);
    }
    33% { 
        transform: scaleY(0.8) translateX(8px) rotate(-1deg);
        filter: hue-rotate(-10deg) brightness(1.2);
    }
    66% { 
        transform: scaleY(1.3) translateX(-6px) rotate(2deg);
        filter: hue-rotate(20deg) brightness(0.7);
    }
}

@keyframes flame3 {
    0%, 100% { 
        transform: scaleY(0.9) translateX(0) rotate(-1deg);
        filter: hue-rotate(-5deg) brightness(1);
    }
    20% { 
        transform: scaleY(1.5) translateX(4px) rotate(1deg);
        filter: hue-rotate(15deg) brightness(1.4);
    }
    40% { 
        transform: scaleY(0.6) translateX(-3px) rotate(-2deg);
        filter: hue-rotate(-15deg) brightness(0.6);
    }
    60% { 
        transform: scaleY(1.1) translateX(2px) rotate(1deg);
        filter: hue-rotate(10deg) brightness(1.1);
    }
    80% { 
        transform: scaleY(0.8) translateX(-1px) rotate(-1deg);
        filter: hue-rotate(5deg) brightness(0.9);
    }
}

.hero {
    background: #000000;
    color: var(--white);
    text-align: center;
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: 
        /* Flame 1 - Left */
        radial-gradient(ellipse 120px 200px at 25% 100%, 
            rgba(255, 0, 0, 0.9) 0%, 
            rgba(255, 69, 0, 0.8) 20%, 
            rgba(255, 140, 0, 0.6) 40%, 
            rgba(255, 165, 0, 0.4) 60%, 
            rgba(255, 200, 0, 0.2) 80%, 
            transparent 100%),
        /* Flame 2 - Center */
        radial-gradient(ellipse 150px 250px at 50% 100%, 
            rgba(255, 69, 0, 0.9) 0%, 
            rgba(255, 140, 0, 0.7) 25%, 
            rgba(255, 165, 0, 0.5) 45%, 
            rgba(255, 200, 0, 0.3) 65%, 
            rgba(255, 255, 0, 0.15) 85%, 
            transparent 100%),
        /* Flame 3 - Right */
        radial-gradient(ellipse 100px 180px at 75% 100%, 
            rgba(255, 100, 0, 0.8) 0%, 
            rgba(255, 140, 0, 0.6) 22%, 
            rgba(255, 165, 0, 0.4) 42%, 
            rgba(255, 200, 0, 0.25) 62%, 
            rgba(255, 255, 0, 0.1) 82%, 
            transparent 100%);
    animation: flame1 1.2s ease-in-out infinite;
    pointer-events: none;
    mask: linear-gradient(to top, transparent 0%, black 20%, black 100%);
    -webkit-mask: linear-gradient(to top, transparent 0%, black 20%, black 100%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: 
        /* Smaller flames for depth */
        radial-gradient(ellipse 80px 140px at 30% 100%, 
            rgba(255, 69, 0, 0.7) 0%, 
            rgba(255, 140, 0, 0.5) 30%, 
            rgba(255, 165, 0, 0.3) 50%, 
            transparent 70%),
        radial-gradient(ellipse 90px 160px at 60% 100%, 
            rgba(255, 140, 0, 0.6) 0%, 
            rgba(255, 165, 0, 0.4) 25%, 
            rgba(255, 200, 0, 0.2) 45%, 
            transparent 65%),
        radial-gradient(ellipse 70px 120px at 80% 100%, 
            rgba(255, 100, 0, 0.6) 0%, 
            rgba(255, 140, 0, 0.4) 28%, 
            rgba(255, 165, 0, 0.25) 48%, 
            transparent 68%);
    animation: flame2 1.6s ease-in-out infinite reverse;
    pointer-events: none;
    mask: linear-gradient(to top, transparent 0%, black 30%, black 100%);
    -webkit-mask: linear-gradient(to top, transparent 0%, black 30%, black 100%);
}

.hero .flame-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: 
        /* Subtle ember layer */
        radial-gradient(ellipse 60px 100px at 20% 100%, 
            rgba(255, 0, 0, 0.4) 0%, 
            rgba(255, 69, 0, 0.3) 40%, 
            transparent 70%),
        radial-gradient(ellipse 70px 110px at 45% 100%, 
            rgba(255, 69, 0, 0.5) 0%, 
            rgba(255, 140, 0, 0.3) 35%, 
            transparent 65%),
        radial-gradient(ellipse 50px 90px at 70% 100%, 
            rgba(255, 100, 0, 0.4) 0%, 
            rgba(255, 140, 0, 0.25) 38%, 
            transparent 68%),
        radial-gradient(ellipse 40px 80px at 90% 100%, 
            rgba(255, 140, 0, 0.3) 0%, 
            rgba(255, 165, 0, 0.2) 42%, 
            transparent 72%);
    animation: flame3 1.8s ease-in-out infinite;
    pointer-events: none;
    mask: linear-gradient(to top, transparent 0%, black 40%, black 100%);
    -webkit-mask: linear-gradient(to top, transparent 0%, black 40%, black 100%);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--brand-red);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #B91C1C;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--brand-black);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section */
.section {
    padding: 4rem 0;
}

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

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--brand-red);
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--brand-black);
}

.feature-description {
    color: var(--text-light);
}

/* Menu Items */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.menu-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-item-content {
    padding: 1.5rem;
}

.menu-item-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--brand-black);
}

.menu-item-description {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.menu-item-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-red);
}

/* Contact Info */
.contact-info {
    background-color: var(--light-gray);
    padding: 3rem 2rem;
    border-radius: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--brand-red);
    margin-right: 1rem;
    width: 30px;
}

.contact-text {
    font-size: 1.1rem;
}

/* Hours Table */
.hours-table {
    width: 100%;
    margin-top: 2rem;
}

.hours-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.hours-table td {
    padding: 1rem;
}

.hours-table td:first-child {
    font-weight: 600;
    color: var(--brand-black);
}

.hours-table td:last-child {
    text-align: right;
    color: var(--text-light);
}

/* Review Widget */
.reviews-section {
    background-color: var(--light-gray);
    padding: 4rem 0;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.reviews-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--brand-black);
    margin-bottom: 1rem;
}

.reviews-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.review-author {
    font-weight: 600;
    color: var(--brand-black);
}

.review-source {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.review-rating-summary {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.rating-overall {
    font-size: 3rem;
    font-weight: 700;
    color: var(--brand-red);
    margin-bottom: 0.5rem;
}

.rating-stars-large {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.rating-count {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background-color: var(--brand-black);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: var(--brand-red);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: #cccccc;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--brand-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--brand-black);
        padding: 1rem;
        gap: 1rem;
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }

