/* Highway 77 Fish Market - Main Stylesheet */
/* Coastal/Nautical Theme */

/* CSS Variables */
:root {
    --primary-blue: #1a5276;
    --secondary-blue: #2980b9;
    --light-blue: #5dade2;
    --accent-blue: #85c1e9;
    --dark-navy: #0e2a47;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --cream: #fdfefe;
    --sand: #f5e6d3;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --gold: #d4a84b;
    --coral: #e74c3c;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--off-white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    color: var(--primary-blue);
    line-height: 1.3;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

/* Header Top Bar with Phone Numbers */
.header-top-bar {
    background: var(--dark-navy);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-phones {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-blue);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header-phone:hover {
    color: var(--gold);
}

.header-phone svg {
    flex-shrink: 0;
}

/* Header and Navigation */
header {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-blue) 100%);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-placeholder {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--primary-blue);
    text-align: center;
    font-weight: bold;
    border: 3px solid var(--gold);
}

/* --- UPDATED LOGO SIZE --- */
.logo-img {
    height: 75px; /* Adjusted to fit nav bar */
    width: auto;
    object-fit: contain;
    /* Removed border-radius as transparent logos don't usually need it */
}

.logo-text h1 {
    color: var(--white);
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-text span {
    color: var(--accent-blue);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    color: var(--white);
    font-weight: 500;
    padding: 10px 15px;
    transition: all 0.3s ease;
    border-radius: 5px;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 80%;
}

nav ul li a:hover {
    color: var(--accent-blue);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(10, 42, 71, 0.7), rgba(26, 82, 118, 0.8)),
                url('../images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 130px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23f8f9fa' fill-opacity='1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") bottom/cover no-repeat;
}

.hero-content {
    z-index: 1;
    padding: 20px;
}

.hero h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, #c49a3c 100%);
    color: var(--dark-navy);
    box-shadow: 0 4px 15px rgba(212, 168, 75, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 168, 75, 0.6);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
}

/* Section Styles */
section {
    padding: 80px 0;
}

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

.section-header h2 {
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--secondary-blue));
    border-radius: 2px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto 0;
}

/* Welcome Section */
.welcome-section {
    background: var(--white);
}

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

.welcome-content h2 {
    margin-bottom: 25px;
}

.welcome-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.welcome-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.welcome-image {
    position: relative;
}

.welcome-image .img-placeholder {
    height: 400px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: 0 20px 40px rgba(41, 128, 185, 0.3);
}

/* Hours Section */
.hours-section {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-blue) 100%);
    color: var(--white);
}

.hours-section .section-header h2 {
    color: var(--white);
}

.hours-section .section-header p {
    color: var(--accent-blue);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.day-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.day-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.day-card.closed {
    opacity: 0.6;
}

.day-card h4 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.day-card p {
    font-size: 0.95rem;
}

.day-card .status {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-top: 10px;
}

.status.open {
    background: rgba(46, 204, 113, 0.3);
    color: #2ecc71;
}

.status.closed {
    background: rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

/* About Page Styles */
.page-hero {
    height: 50vh;
    min-height: 350px;
    background: linear-gradient(rgba(10, 42, 71, 0.8), rgba(26, 82, 118, 0.85)),
                url('../images/about-hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 130px;
}

.page-hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero p {
    font-size: 1.2rem;
    margin-top: 15px;
    opacity: 0.9;
}

.about-story {
    background: var(--white);
}

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

.story-content h2 {
    margin-bottom: 25px;
}

.story-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.story-image .img-placeholder {
    height: 350px;
    background: linear-gradient(135deg, var(--sand) 0%, var(--accent-blue) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.1rem;
}

/* Fish Market Section */
.fish-market {
    background: var(--sand);
}

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

.market-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.market-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.market-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
}

.market-card h3 {
    margin-bottom: 15px;
}

.market-card p {
    color: var(--text-light);
}

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

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.menu-tab {
    padding: 12px 30px;
    background: var(--off-white);
    border: 2px solid var(--accent-blue);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--primary-blue);
}

.menu-tab:hover,
.menu-tab.active {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

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

.menu-item {
    background: var(--off-white);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.menu-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.menu-item-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 15px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.8rem;
}

.menu-item-content h4 {
    margin-bottom: 8px;
    color: var(--dark-navy);
}

.menu-item-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.menu-item-content .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--gold);
}

.menu-placeholder-notice {
    text-align: center;
    padding: 40px;
    background: var(--sand);
    border-radius: 15px;
    margin-top: 40px;
}

.menu-placeholder-notice p {
    color: var(--text-light);
    font-style: italic;
}

/* Gallery Page Styles */
.gallery-section {
    background: var(--white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    background: transparent;
    border: 2px solid var(--secondary-blue);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--secondary-blue);
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--secondary-blue);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item .img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--primary-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.gallery-item:hover .img-placeholder {
    transform: scale(1.05);
}

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--white);
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.gallery-item:hover .overlay {
    transform: translateY(0);
}

/* Contact Page Styles */
.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-content h4 {
    color: var(--dark-navy);
    margin-bottom: 5px;
}

.info-content p {
    color: var(--text-light);
}

.info-content a {
    color: var(--secondary-blue);
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--primary-blue);
}

.contact-form-container h3 {
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid var(--off-white);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-blue);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.map-section {
    background: var(--off-white);
    padding: 60px 0;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-about p {
    color: var(--accent-blue);
    line-height: 1.8;
}

.footer-links h4,
.footer-hours h4,
.footer-contact h4 {
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-links ul li,
.footer-hours ul li,
.footer-contact ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--accent-blue);
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--white);
}

.footer-hours ul li,
.footer-contact ul li {
    color: var(--accent-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: var(--accent-blue);
}

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

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

/* Responsive Styles */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }

    .header-top-bar {
        padding: 6px 0;
    }

    .header-phones {
        gap: 15px;
    }

    .header-phone {
        font-size: 0.8rem;
    }

    .hero {
        margin-top: 120px;
    }

    .page-hero {
        margin-top: 120px;
    }

    .nav-container {
        position: relative;
    }

    .menu-toggle {
        display: flex;
    }

    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-navy);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        display: none;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li a {
        display: block;
        padding: 15px;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding: 60px 20px;
    }

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

    .review-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

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

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

    .welcome-grid,
    .story-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .menu-item {
        flex-direction: column;
        text-align: center;
    }

    .menu-item-image {
        margin: 0 auto;
    }

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

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .header-phones {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .header-phone {
        justify-content: center;
        font-size: 0.75rem;
    }

    .hero {
        margin-top: 140px;
    }

    .page-hero {
        margin-top: 140px;
    }

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

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

    .btn {
        width: 100%;
        max-width: 280px;
    }

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

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

    /* --- UPDATED MOBILE LOGO SIZE --- */
    .logo-img {
        height: 60px; /* Smaller for mobile screens */
    }

    .logo-text h1 {
        font-size: 1.2rem;
    }

    .logo-text span {
        font-size: 0.75rem;
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }

    .review-btn {
        padding: 15px 25px;
        font-size: 1rem;
    }
}

/* Social Media Links - Contact Page */
.social-links-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.social-links-section h4 {
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--white);
}

.social-icon.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #166fe5 100%);
}

.social-icon.facebook:hover {
    background: linear-gradient(135deg, #166fe5 0%, #1266c0 100%);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

.social-icon.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4);
}

.social-icon.google {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 33%, #fbbc05 66%, #ea4335 100%);
}

.social-icon.google:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.4);
}

/* Leave a Review Section */
.review-section {
    background: var(--sand);
    text-align: center;
}

.review-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.review-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.review-btn.google-review {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid #4285f4;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.2);
}

.review-btn.google-review:hover {
    background: #4285f4;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

.review-btn.google-review svg {
    fill: #4285f4;
}

.review-btn.google-review:hover svg {
    fill: var(--white);
}

.review-btn.facebook-review {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid #1877f2;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.2);
}

.review-btn.facebook-review:hover {
    background: #1877f2;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.review-btn.facebook-review svg {
    fill: #1877f2;
}

.review-btn.facebook-review:hover svg {
    fill: var(--white);
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--accent-blue);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--dark-navy);
    transform: translateY(-3px);
}

.footer-contact ul li a {
    color: var(--accent-blue);
    transition: color 0.3s ease;
}

.footer-contact ul li a:hover {
    color: var(--white);
}

/* Full Menu Styles */
.menu-full {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.menu-category {
    background: var(--off-white);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.menu-category:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.menu-category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.menu-category-header h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    white-space: nowrap;
}

.category-divider {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 1px;
}

.menu-category-note {
    color: var(--text-light);
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 15px;
    padding-left: 5px;
}

.menu-items-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.menu-list-item {
    background: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.95rem;
    color: var(--text-dark);
    border: 1px solid rgba(41, 128, 185, 0.15);
    transition: all 0.3s ease;
}

.menu-list-item:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

.sides-subheader {
    color: var(--secondary-blue);
    font-size: 1rem;
    margin: 20px 0 12px 0;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(41, 128, 185, 0.2);
}

.sides-subheader:first-of-type {
    margin-top: 0;
}

/* Responsive Menu Styles */
@media (max-width: 900px) {
    .menu-full {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .menu-category {
        padding: 20px;
    }

    .menu-category-header h3 {
        font-size: 1.2rem;
    }

    .menu-list-item {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.py-20 { padding-top: 20px; padding-bottom: 20px; }