/* ===================================
   SALAD HOUSE BUFFET - Stylesheet
   Green & White Color Scheme
   =================================== */

/* --- CSS Variables --- */
:root {
    --green-900: #00261a;
    --green-800: #003d2b;
    --green-700: #005236;
    --green-600: #006242;
    --green-500: #00805a;
    --green-400: #00a374;
    --green-300: #33b88f;
    --green-200: #80d4b5;
    --green-100: #b3e6d1;
    --green-50: #e6f5ee;

    --white: #ffffff;
    --off-white: #f9fcfa;
    --gray-50: #f6f8f7;
    --gray-100: #e8ece9;
    --gray-200: #d1d9d4;
    --gray-300: #a3b0a7;
    --gray-400: #6b7c70;
    --gray-500: #4a5a50;
    --gray-600: #344038;
    --gray-700: #1e2822;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 1px 3px rgba(26, 58, 42, 0.08);
    --shadow-md: 0 4px 16px rgba(26, 58, 42, 0.1);
    --shadow-lg: 0 8px 32px rgba(26, 58, 42, 0.12);
    --shadow-xl: 0 16px 48px rgba(26, 58, 42, 0.16);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--gray-600);
    background-color: var(--white);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--green-900);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.section {
    padding: 100px 0;
}

.text-accent {
    color: var(--green-500);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--green-600);
    color: var(--white);
    border-color: var(--green-600);
}

.btn-primary:hover {
    background: var(--green-700);
    border-color: var(--green-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--green-700);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn-nav {
    padding: 8px 20px;
    background: var(--green-600);
    color: var(--white) !important;
    border-color: var(--green-600);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
}

.btn-nav:hover {
    background: var(--green-700);
    border-color: var(--green-700);
}

/* --- Section Headers --- */
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green-500);
    margin-bottom: 12px;
    position: relative;
    padding-left: 36px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 24px;
    height: 2px;
    background: var(--green-500);
    transform: translateY(-50%);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-header .section-label {
    padding-left: 0;
}

.section-header .section-label::before {
    display: none;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--gray-400);
    font-size: 1.1rem;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    transition: color var(--transition);
}

.logo-img {
    height: 36px;
    width: auto;
    background: white;
    padding: 4px 10px;
    border-radius: 6px;
    transition: all var(--transition);
}

.navbar.scrolled .logo-img {
    background: transparent;
    padding: 4px 0;
}

.navbar.scrolled .logo {
    color: var(--green-900);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--green-500);
    color: var(--white);
    border-radius: 50%;
    font-size: 1rem;
}

.logo-accent {
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 4px 0;
    transition: color var(--transition);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-400);
    transition: width var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.navbar.scrolled .nav-links a {
    color: var(--gray-500);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--green-600);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--green-900);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: 
        linear-gradient(rgba(0, 38, 26, 0.7), rgba(0, 38, 26, 0.7)),
        url("https://images.unsplash.com/photo-1543352658-9270447fc339?auto=format&fit=crop&q=80&w=2000") no-repeat center center;
    background-size: cover;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 98, 66, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 128, 90, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 2;
    padding: 120px 20px 80px;
}

.hero-logo {
    width: 110px;
    height: 110px;
    margin: 0 auto 24px;
    display: block;
    background: white;
    border-radius: 50%;
    padding: 6px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-badge i {
    color: #fbbf24;
}

.hero h1 {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero h1 .text-accent {
    color: var(--green-300);
}

.hero-slogan {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--green-200);
    margin-bottom: 16px;
    letter-spacing: 0.04em;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 560px;
    margin: 0 auto 40px;
    opacity: 0.9;
    line-height: 1.8;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

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

/* --- About --- */
.about {
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.about-content p {
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: var(--gray-400);
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid var(--gray-100);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--green-600);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.about-images {
    position: relative;
    height: 500px;
}

.about-image-card {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-card:first-child {
    top: 0;
    left: 0;
    width: 75%;
    height: 60%;
}

.about-image-card.offset {
    bottom: 0;
    right: 0;
    width: 65%;
    height: 50%;
}

.about-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Gallery Section --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 350px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Features --- */
.features {
    background: var(--green-800);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.feature-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: rgba(0, 98, 66, 0.2);
    border-radius: 50%;
    font-size: 1.4rem;
    color: var(--green-300);
}

.feature-card h3 {
    font-family: var(--font-body);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --- Menu --- */
.menu {
    background: var(--white);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.menu-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 40px 28px 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-400), var(--green-600));
    opacity: 0;
    transition: opacity var(--transition);
}

.menu-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: var(--green-100);
}

.menu-card:hover::before {
    opacity: 1;
}

.menu-card-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green-50), var(--green-100));
    border-radius: 50%;
    font-size: 1.4rem;
    color: var(--green-600);
    transition: all var(--transition);
}

.menu-card:hover .menu-card-icon {
    background: linear-gradient(135deg, var(--green-100), var(--green-200));
    transform: scale(1.1);
}

.menu-card-content h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--green-900);
}

.menu-card-content p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 12px;
}

.menu-tag {
    display: inline-block;
    padding: 5px 14px;
    background: linear-gradient(135deg, var(--green-50), var(--green-100));
    color: var(--green-700);
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* --- Detailed Menu --- */
.detailed-menu {
    background: var(--off-white);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    background: var(--white);
    padding: 8px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.menu-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-xl);
    background: transparent;
    color: var(--gray-400);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.menu-tab:hover {
    background: var(--green-50);
    color: var(--green-600);
}

.menu-tab.active {
    background: var(--green-600);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 98, 66, 0.3);
}

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

.menu-tab-content.active {
    display: block;
}

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

.menu-banner {
    width: 100%;
    margin-bottom: 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 250px;
}

.menu-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-tab-note {
    text-align: center;
    color: var(--green-600);
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.detailed-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.detailed-item {
    display: flex;
    flex-direction: column;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
    border-left: 3px solid transparent;
    transition: all var(--transition);
}

.detailed-item:hover {
    border-left-color: var(--green-400);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.detailed-item.highlight {
    border-color: var(--green-300);
    border-left-color: var(--green-500);
    background: linear-gradient(135deg, var(--green-50), var(--white));
    position: relative;
}

.detailed-item.highlight::after {
    content: '\f005';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.7rem;
    color: #fbbf24;
}

.detailed-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.detailed-item-header h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--green-900);
}

.detailed-price {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--green-600);
    white-space: nowrap;
    background: var(--green-50);
    padding: 2px 10px;
    border-radius: var(--radius-xl);
}

.detailed-item p {
    font-size: 0.85rem;
    color: var(--gray-300);
    line-height: 1.5;
}

.detailed-item .menu-tag {
    margin-top: 8px;
    align-self: flex-start;
}

.breakfast-feature {
    grid-column: 1 / -1;
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
    border-left-color: var(--green-400);
    padding: 32px;
}

.breakfast-feature .detailed-item-header {
    justify-content: center;
    gap: 16px;
}

.menu-addons {
    margin-top: 24px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px dashed var(--green-200);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.menu-addons h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green-900);
}

.menu-addons span {
    font-size: 0.85rem;
    color: var(--green-700);
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--green-50), var(--green-100));
    border-radius: var(--radius-xl);
    font-weight: 500;
}

/* --- Reviews --- */
.reviews {
    background: var(--green-50);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.review-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.review-stars {
    margin-bottom: 16px;
    color: #fbbf24;
    font-size: 0.9rem;
    display: flex;
    gap: 3px;
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-500);
    font-style: italic;
    margin-bottom: 20px;
}

.review-source {
    display: flex;
    align-items: center;
}

.review-platform {
    font-size: 0.8rem;
    color: var(--gray-300);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.review-platform i {
    font-size: 1rem;
}

/* --- Contact / Location --- */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-100);
    border-radius: 50%;
    color: var(--green-600);
    font-size: 1.1rem;
}

.contact-card h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--green-900);
}

.contact-card p {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-card a {
    color: var(--green-600);
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--green-700);
}

.hours-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    font-size: 0.95rem;
    color: var(--gray-400);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow-md);
    background: var(--gray-50);
}

.contact-map iframe {
    display: block;
}

/* --- CTA --- */
.cta {
    background: linear-gradient(135deg, var(--green-800), var(--green-700));
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    margin-bottom: 36px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: var(--white);
    color: var(--green-700);
    border-color: var(--white);
}

.cta .btn-primary:hover {
    background: var(--green-50);
    border-color: var(--green-50);
}

.cta .btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* --- Footer --- */
.footer {
    background: var(--green-900);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 32px;
    background: white;
    padding: 4px 10px;
    border-radius: 6px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer h4,
.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    font-family: var(--font-body);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--green-400);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer-contact a {
    color: var(--green-400);
}

.footer-contact a:hover {
    color: var(--green-300);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    transition: all var(--transition);
}

.social-links a:hover {
    background: var(--green-500);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 72px 0;
    }

    /* Mobile Nav */
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--green-900);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 24px;
        transition: right var(--transition);
        box-shadow: var(--shadow-xl);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 1.05rem;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Hero */
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-images {
        height: 350px;
    }

    .about-content h2,
    .section-header h2 {
        font-size: 2rem;
    }

    .about-stats {
        gap: 24px;
    }

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

    .menu-card {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        padding: 24px;
    }

    .menu-card-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .menu-tabs {
        max-width: 100%;
        gap: 6px;
        padding: 6px;
    }

    .menu-tab {
        padding: 10px 16px;
        font-size: 0.82rem;
    }

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

    /* Reviews */
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map {
        height: 300px;
    }

    /* CTA */
    .cta-content h2 {
        font-size: 2rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-stats {
        flex-direction: column;
        gap: 16px;
    }

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