/* ===== COMBINED CSS FOR ABBIOCOCO RESTAURANT ===== */
html {
  scroll-behavior: smooth;
}

body { opacity: 0; } /* Will be overridden by JS */
/* ===== BASE STYLES & VARIABLES ===== */
:root {
    --primary-green: #2a5c43;
    --secondary-green: #1e4a34;
    --accent-gold: #d4af37;
    --light-beige: #f5f1e8;
    --warm-white: #faf8f3;
    --dark-brown: #3a3329;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-brown);
    background-color: var(--warm-white);
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M50,0 C22.4,0 0,22.4 0,50 C0,77.6 22.4,100 50,100 C77.6,100 100,77.6 100,50 C100,22.4 77.6,0 50,0 Z" fill="%232a5c43" opacity="0.03"/></svg>');
    background-size: 120px;
    overflow-x: hidden;
}

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

section {
    padding: 3rem 0;
}

section + section {
    padding-top: 0;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
    font-family: 'Playfair Display', 'Georgia', serif;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
    position: relative;
}

h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--accent-gold);
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h3.light {
    color: #ffffff;
}

p {
    margin-bottom: 1rem;
    color:  #555;
}

p.light {
    margin-bottom: 1rem;
    color: #ffffff;
}

p.dark {
    margin-bottom: 1rem;
    color: black;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== HEADER & NAVIGATION ===== */
.site-header {
    background: var(--primary-green);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.logo {
    font-family: 'Georgia', serif;
    font-size: 2rem;
    color: var(--warm-white);
    text-decoration: none;
    font-style: italic;
}

.logo span {
    color: var(--accent-gold);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--warm-white);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    background: var(--secondary-green);
    color: var(--accent-gold);
}

/* Mobile menu button - hidden by default, shown via media query */
.mobile-menu-btn,
#mobileMenuBtn {
    display: none;
    background: none;
    border: none;
    color: var(--warm-white);
    font-size: 1.25rem;
    cursor: pointer;
}

/* ===== HERO SECTIONS ===== */
.hero, .reserve-hero {
    background: linear-gradient(rgba(42, 92, 67, 0.85), rgba(42, 92, 67, 0.9)), 
                url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: var(--warm-white);
    padding: 5rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.reserve-hero {
    background: linear-gradient(rgba(42, 92, 67, 0.85), rgba(42, 92, 67, 0.9)), 
                url('https://images.unsplash.com/photo-1514933651103-005eec06c04b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

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

.reserve-hero .hero h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    text-align: center;
}

.hero h1::after,
.reserve-hero .hero h1::after {
    background: var(--accent-gold);
    left: 50%;
    transform: translateX(-50%);
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 1.5rem auto;
    opacity: 0.9;
}

.hero-subtitle-ight{
    font-size: 1.3rem;
    max-width: 800px;
    margin: 1.5rem auto;
    /*opacity: 0.9;*/
    color: #ffffff;
}

.reserve-hero .hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-cta {
    text-align: center;
    margin-top: 2rem;
}

.cta-note {
    margin-top: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

/* ===== BUTTONS ===== */
.btn, .btn-call, .btn-large {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--accent-gold);
    color: var(--primary-green);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    justify-content: center;
}

.btn:hover, .btn-call:hover, .btn-large:hover {
    background: #c19b2e;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

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

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

.btn-call {
    font-size: 1.1rem;
    padding: 0.9rem 2rem;
}

.btn-copy {
    background: var(--light-beige);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0.5rem 0 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===== CARDS ===== */
.card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    transition: var(--transition);
}

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

/* ===== RESERVATION STEPS ===== */
.reservation-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.step {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--light-beige);
}

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

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
    background: rgba(42, 92, 67, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* ===== IMPORTANT NOTES ===== */
.important-notes {
    background: rgba(212, 175, 55, 0.08);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    border-left: 4px solid var(--accent-gold);
}

.important-notes h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.important-notes ul {
    list-style: none;
    padding-left: 0;
}

.important-notes li {
    margin: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.important-notes li::before {
    content: "•";
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
}

/* ===== AVAILABILITY SECTION ===== */
.availability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.availability-card {
    padding: 1.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.availability-card.peak {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
}

.availability-card.off-peak {
    background: white;
    border: 2px solid var(--light-beige);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.availability-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.availability-tag {
    padding: 0.3rem 0.8rem;
    background: var(--accent-gold);
    color: var(--primary-green);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.availability-card.peak .availability-tag {
    background: white;
    color: var(--primary-green);
}

.time-slot {
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 6px;
}

.availability-card.peak .time-slot {
    background: rgba(255, 255, 255, 0.15);
}

.availability-card.off-peak .time-slot {
    background: var(--light-beige);
}

.availability-note {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1.2rem;
    opacity: 0.9;
    color:antiquewhite;
}

/* ===== HOURS TABLE ===== */
.hours-table-container {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-beige);
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.hours-table th {
    background: var(--primary-green);
    color: white;
    padding: 0.9rem;
    text-align: left;
    font-weight: 500;
}

.hours-table td {
    padding: 0.9rem;
    border-bottom: 1px solid var(--light-beige);
}

.table-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 1rem;
}

/* ===== LOCATION SECTION ===== */
.location-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 2rem 0;
}

.restaurant-address {
    font-style: normal;
    line-height: 1.7;
    margin: 1.2rem 0;
    font-size: 1.05rem;
    color: var(--dark-brown);
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin: 1.2rem 0;
}

/* ===== MAP ===== */
#map {
    height: 350px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 0;
}

.map-container {
    margin: 3rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-overlay {
    background: white;
    padding: 1rem;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ===== DIRECTIONS ===== */
.directions-container {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-beige);
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.direction-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--light-beige);
}

/* ===== SPECIAL CONSIDERATIONS ===== */
.special-considerations {
    margin: 2.5rem 0;
}

.considerations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.consideration {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--light-beige);
    transition: all 0.3s ease;
}

.consideration-icon {
    width: 50px;
    height: 50px;
    background: rgba(42, 92, 67, 0.1);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 1rem;
}

/* ===== RESERVE CTA ===== */
.reserve-cta {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 10px;
    margin: 2.5rem 0;
}

.reserve-cta h2 {
    color: white;
    margin-bottom: 0.8rem;
}

.reserve-cta h2::after {
    background: var(--accent-gold);
    left: 50%;
    transform: translateX(-50%);
}

.reserve-cta p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-info {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* ===== HOME PAGE SPECIFIC ===== */
.top-picks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.top-pick-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.top-pick-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.top-pick-content {
    padding: 1.5rem;
}

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

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-gold);
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.3;
}

.testimonial-author {
    color: var(--primary-green);
    font-weight: 600;
    margin-top: 1rem;
    display: block;
}

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

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

/* ===== MENU PAGE SPECIFIC ===== */
.menu-categories {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.8rem 1.5rem;
    background: var(--light-beige);
    border: none;
    border-radius: 4px;
    color: var(--primary-green);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.category-btn:hover, .category-btn.active {
    background: var(--primary-green);
    color: white;
}

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

.menu-item {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

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

.menu-item-desc {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.special-tag {
    background: var(--accent-gold);
    color: var(--primary-green);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
}

.day-specials {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: center;
}

.day-specials h3 {
    color: white;
}

.special-days {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.day-special {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 4px;
    min-width: 150px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--dark-brown);
    color: var(--warm-white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-section h3 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-section a {
    color: var(--warm-white);
    text-decoration: none;
    display: block;
    margin: 0.5rem 0;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--accent-gold);
    background: transparent;
    width: auto;
    height: auto;
    padding: 0;
    border-radius: 0;
    transition: var(--transition);
    font-size: 1.15rem;
}

.social-link:hover {
    color: var(--primary-green);
    background: transparent;
    transform: translateY(-2px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .reserve-hero {
        min-height: 50vh;
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .reservation-steps,
    .availability-grid,
    .considerations-grid {
        grid-template-columns: 1fr;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    #map {
        height: 300px;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav ul {
        gap: 1rem;
    }
    
    .menu-categories {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .btn-call,
    .btn-large,
    .btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .cta-info {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .main-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .top-picks-grid,
    .customer-testimonials,
    .menu-items-grid {
        grid-template-columns: 1fr;
    }
}
