/* Professional Restaurant Design - GastroHub */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;700;800&display=swap');

:root {
    --primary-color: #E63946;    /* Deep Red */
    --secondary-color: #F4A261;  /* Warm Orange */
    --accent-color: #2A9D8F;     /* Teal */
    --dark-color: #264653;       /* Navy Blue */
    --light-color: #F1FAEE;      /* Off-white */
    --text-primary: #1D1D1D;
    --text-secondary: #6C757D;
    --success-color: #06D6A0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, .navbar-brand {
    font-family: 'Playfair Display', serif;
}

/* Navigation Redesign */
.navbar {
    height: 80px;
    transition: all 0.4s ease;
    background: linear-gradient(rgba(38, 70, 83, 0.95), rgba(38, 70, 83, 1));
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-scrolled {
    background: #ffffff !important;
    height: 70px;
}

.navbar-scrolled .navbar-brand, 
.navbar-scrolled .nav-link,
.navbar-scrolled .phone-link {
    color: var(--dark-color) !important;
}

.navbar-brand {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color) !important;
}

.nav-link {
    color: var(--light-color) !important;
    font-weight: 500;
    font-size: 16px;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
}

.btn-order-nav {
    background: linear-gradient(135deg, #E63946, #D62839);
    color: white !important;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    transition: all 0.3s;
}

.btn-order-nav:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.5);
}

.phone-link {
    color: var(--secondary-color) !important;
    font-weight: 600;
    font-size: 18px;
}

/* Hero Section Redesign */
.hero-section {
    background: linear-gradient(rgba(38, 70, 83, 0.75), rgba(230, 57, 70, 0.6)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 900px;
    padding: 40px;
    animation: fadeIn 1s ease;
}

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

.hero-content h1 {
    font-size: 72px;
    font-weight: 800;
    color: var(--light-color);
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-content p {
    font-size: 24px;
    color: rgba(241, 250, 238, 0.95);
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 45px;
}

.btn-hero {
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 35px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #E63946, #D62839);
    color: white;
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
    border: none;
}

.btn-hero-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(230, 57, 70, 0.6);
    color: white;
}

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

.btn-hero-secondary:hover {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.05);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    color: var(--secondary-color);
    font-size: 32px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* Features Section Redesign */
.features-section {
    background: linear-gradient(180deg, #F1FAEE 0%, #FFFFFF 100%);
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 52px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.feature-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 50px 35px;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
    transition: all 0.4s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.feature-icon-container {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #E63946, #F4A261);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 40px;
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.3);
}

.feature-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 16px;
}

/* Dishes Section Redesign */
.dishes-section {
    padding: 120px 0;
}

.dish-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.dish-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.dish-img-container {
    height: 260px;
    overflow: hidden;
    position: relative;
}

.dish-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dish-card:hover .dish-img-container img {
    transform: scale(1.15);
}

.dish-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.dish-content {
    padding: 30px;
}

.dish-content h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.dish-rating {
    color: var(--secondary-color);
    font-size: 15px;
    margin-bottom: 15px;
}

.dish-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f1f1f1;
}

.dish-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
}

.btn-order-dish {
    background: linear-gradient(135deg, #2A9D8F, #06D6A0);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
}

.btn-order-dish:hover {
    transform: scale(1.1);
    color: white;
}

/* Testimonials Redesign */
.testimonials-section {
    background: linear-gradient(135deg, var(--dark-color), var(--accent-color));
    padding: 120px 0;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 30px;
    padding: 60px;
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.quote-icon {
    position: absolute;
    top: 30px;
    left: 40px;
    font-size: 60px;
    color: rgba(230, 57, 70, 0.15);
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    color: var(--dark-color);
    line-height: 1.9;
    margin-bottom: 40px;
}

.customer-info img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid var(--primary-color);
    margin-bottom: 20px;
}

.customer-info h5 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}

/* CTA Banner Redesign */
.cta-banner {
    background: linear-gradient(rgba(230, 57, 70, 0.85), rgba(244, 162, 97, 0.85)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    text-align: center;
    color: white;
}

.cta-banner h2 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-cta-large {
    background: white;
    color: var(--primary-color);
    padding: 20px 60px;
    font-size: 22px;
    font-weight: 800;
    border-radius: 40px;
    margin-top: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.btn-cta-large:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    color: var(--primary-color);
}

/* Footer Redesign */
footer {
    background: var(--dark-color);
    padding: 100px 0 40px;
    color: rgba(241, 250, 238, 0.9);
}

footer h5 {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-link {
    color: rgba(241, 250, 238, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.footer-link:hover {
    color: var(--secondary-color);
    padding-left: 10px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(244, 162, 97, 0.15);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 15px;
    color: var(--light-color);
    font-size: 20px;
    transition: all 0.4s;
}

.social-icon:hover {
    background: var(--secondary-color);
    transform: rotate(360deg);
    color: white;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 42px; }
    .hero-content p { font-size: 18px; }
    .section-header h2 { font-size: 36px; }
    .testimonial-item { padding: 40px 20px; }
}