/* ===========================================
   Taste of Down Under - Main Stylesheet
   Australia Travel & Food Guide
   Optimized for Google Ads
   =========================================== */

/* CSS Variables */
:root {
    /* Color Palette - Australian Theme */
    --primary-green: #00843D;
    --primary-green-dark: #00662e;
    --primary-green-light: #00a652;
    --accent-gold: #FFCD00;
    --accent-gold-dark: #e5b800;
    --accent-blue: #0055A4;
    --accent-ochre: #C25E00;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #F9FAFB;
    --light-gray: #E5E7EB;
    --medium-gray: #9CA3AF;
    --dark-gray: #4B5563;
    --charcoal: #1F2937;
    --black: #111827;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 80px;
    --container-width: 1200px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* ===========================================
   Typography
   =========================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--charcoal);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

/* ===========================================
   Utility Classes
   =========================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding) 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* ===========================================
   Buttons
   =========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn:active { transform: scale(0.98); }

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

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

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

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

.btn-accent {
    background-color: var(--accent-gold);
    color: var(--charcoal);
}

.btn-accent:hover {
    background-color: var(--accent-gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-white:hover {
    background-color: var(--accent-gold);
    color: var(--charcoal);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* ===========================================
   Header & Navigation
   =========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-green);
}

.logo-icon {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-list {
    display: flex;
    gap: 25px;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-gray);
    position: relative;
    padding: 5px 0;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: width var(--transition-medium);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    margin-left: 15px;
}

.nav-toggle,
.nav-close {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===========================================
   Hero Section
   =========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1506973035872-a4ec16b8e8d9?w=1920&q=80') center/cover no-repeat;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,132,61,0.9) 0%, rgba(0,85,164,0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 120px 20px 80px;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255,255,255,0.2);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-title {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}

.hero-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===========================================
   Trust Bar
   =========================================== */
.trust-bar {
    background-color: var(--off-white);
    padding: 25px 0;
    border-bottom: 1px solid var(--light-gray);
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--dark-gray);
}

.trust-icon {
    color: var(--primary-green);
    font-size: 1.2rem;
}

/* ===========================================
   Section Titles
   =========================================== */
.section-title {
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: var(--medium-gray);
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===========================================
   Places Section
   =========================================== */
.places {
    background-color: var(--white);
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 20px;
}

.place-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
}

.place-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

.place-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.place-card:hover img {
    transform: scale(1.1);
}

.place-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    color: var(--white);
}

.place-region {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--charcoal);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    width: fit-content;
}

.place-overlay h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.place-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 12px;
}

.place-food-tag {
    font-size: 0.85rem;
    margin-bottom: 15px;
    opacity: 0.95;
}

.place-food-tag span {
    color: var(--accent-gold);
    font-weight: 600;
}

/* ===========================================
   Food Section
   =========================================== */
.food {
    background-color: var(--off-white);
}

.food-category {
    margin-bottom: 50px;
}

.food-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-green);
    display: inline-block;
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 25px;
}

.food-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: all var(--transition-medium);
}

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

.food-image {
    height: 200px;
    overflow: hidden;
}

.food-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.food-card:hover .food-image img {
    transform: scale(1.05);
}

.food-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.food-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-green);
}

.food-description {
    color: var(--dark-gray);
    font-size: 0.95rem;
    flex: 1;
    margin-bottom: 15px;
}

.food-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 15px;
    border-top: 1px solid var(--light-gray);
}

.food-where {
    font-size: 0.85rem;
    color: var(--dark-gray);
}

.food-rating {
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-weight: 600;
}

/* ===========================================
   Food by City Section
   =========================================== */
.food-by-city {
    background-color: var(--white);
}

.city-food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.city-food-card {
    background-color: var(--off-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-medium);
}

.city-food-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background-color: var(--primary-green);
    color: var(--white);
}

.city-food-card:hover h3 {
    color: var(--white);
}

.city-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.city-food-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-green);
    transition: color var(--transition-medium);
}

.food-highlights {
    text-align: left;
}

.food-highlights li {
    font-size: 0.9rem;
    padding: 8px 0;
    border-bottom: 1px solid var(--light-gray);
    transition: border-color var(--transition-medium);
}

.city-food-card:hover .food-highlights li {
    border-bottom-color: rgba(255,255,255,0.2);
}

.city-food-card:hover .food-highlights li:last-child {
    border-bottom: none;
}

/* ===========================================
   Blog Preview Section
   =========================================== */
.blog-preview {
    background-color: var(--off-white);
}

.blog-preview .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
}

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

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

.blog-card .blog-content {
    padding: 25px;
}

.blog-category {
    display: inline-block;
    background-color: var(--primary-green);
    color: var(--white);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.blog-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--medium-gray);
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-green);
    font-weight: 600;
    transition: color var(--transition-fast);
}

.read-more:hover {
    color: var(--accent-ochre);
}

/* ===========================================
   Newsletter Section
   =========================================== */
.newsletter {
    background: url('https://images.unsplash.com/photo-1508193638397-1c4234db14d9?w=1920&q=80') center/cover no-repeat fixed;
    position: relative;
}

.newsletter::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0,132,61,0.9);
}

.newsletter-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.newsletter-content > p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
}

.newsletter-note {
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ===========================================
   Footer
   =========================================== */
.footer {
    background-color: var(--charcoal);
    color: var(--light-gray);
    padding: 60px 0 30px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.footer-col > p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--light-gray);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background-color: var(--primary-green);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.9rem;
}

.footer-disclaimer {
    margin-top: 10px;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ===========================================
   Page Hero (Inner Pages)
   =========================================== */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1506973035872-a4ec16b8e8d9?w=1920&q=80') center/cover no-repeat;
    background-attachment: fixed;
}

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

.page-hero-content h1 {
    color: var(--white);
    margin-bottom: 15px;
}

.page-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================================
   Blog Page Styles
   =========================================== */
.blog-content {
    background-color: var(--white);
}

.blog-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--light-gray);
    background: var(--white);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

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

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.blog-featured {
    position: relative;
    margin-bottom: 40px;
}

.blog-featured img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.blog-featured-content {
    background-color: var(--off-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    margin-top: -50px;
    position: relative;
    margin-left: 30px;
    margin-right: 30px;
}

.blog-featured h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--light-gray);
    background: var(--white);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

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

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background-color: var(--off-white);
    padding: 25px;
    border-radius: var(--radius-lg);
}

.sidebar-widget h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
}

.search-form {
    display: flex;
    gap: 10px;
}

.search-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
}

.search-form button {
    padding: 12px 15px;
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
}

.destination-widget {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.destination-widget:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.destination-widget img {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.destination-widget-info h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.destination-widget-info a {
    font-size: 0.85rem;
    color: var(--primary-green);
    font-weight: 600;
}

.newsletter-widget {
    background-color: var(--primary-green);
    color: var(--white);
}

.newsletter-widget h3 {
    color: var(--white);
    border-bottom-color: rgba(255,255,255,0.2);
}

.newsletter-widget p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.newsletter-form input {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: var(--radius-md);
    margin-bottom: 10px;
}

.newsletter-note {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 10px;
    margin-bottom: 0;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    color: var(--dark-gray);
    transition: color var(--transition-fast);
}

.category-list li a:hover {
    color: var(--primary-green);
}

.category-list li span {
    color: var(--medium-gray);
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-green);
    padding: 60px 0;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* ===========================================
   Legal Pages Styles
   =========================================== */
.legal-content {
    background-color: var(--white);
}

.legal-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
}

.legal-toc {
    position: sticky;
    top: 100px;
    height: fit-content;
    background-color: var(--off-white);
    padding: 25px;
    border-radius: var(--radius-lg);
}

.legal-toc h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
}

.legal-toc ul li {
    margin-bottom: 12px;
}

.legal-toc ul li a {
    color: var(--dark-gray);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.legal-toc ul li a:hover {
    color: var(--primary-green);
}

.legal-text {
    max-width: 800px;
}

.legal-text article {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--light-gray);
}

.legal-text article:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-text h2 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.legal-text h3 {
    font-size: 1.2rem;
    margin: 25px 0 15px;
}

.legal-text p {
    color: var(--dark-gray);
    line-height: 1.8;
}

.legal-text ul {
    margin: 15px 0 20px 20px;
    list-style: disc;
}

.legal-text ul li {
    margin-bottom: 10px;
    color: var(--dark-gray);
    line-height: 1.7;
}

.contact-info-box {
    background-color: var(--off-white);
    padding: 25px;
    border-radius: var(--radius-lg);
    margin: 20px 0;
}

.contact-info-box p {
    margin-bottom: 5px;
}

.last-updated {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-top: 30px;
    margin-bottom: 0;
}

/* ===========================================
   Mobile Menu Overlay
   =========================================== */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
    z-index: 999;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===========================================
   Mobile Styles
   =========================================== */
@media screen and (max-width: 1024px) {
    .places-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .place-card.large {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 300px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .legal-wrapper {
        grid-template-columns: 1fr;
    }
    
    .legal-toc {
        position: static;
    }
    
    .blog-layout {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --section-padding: 50px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        padding: 100px 30px 30px;
        transition: right var(--transition-medium);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .nav-close {
        display: block;
        position: absolute;
        top: 25px;
        right: 25px;
        font-size: 1.5rem;
    }
    
    .nav-toggle {
        display: block;
        font-size: 1.5rem;
    }
    
    .nav-cta {
        margin: 20px 0 0;
    }
    
    .hero-content {
        padding: 100px 20px 60px;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .trust-items {
        gap: 20px;
    }
    
    .trust-item {
        width: calc(50% - 10px);
        justify-content: center;
    }
    
    .food-grid {
        grid-template-columns: 1fr;
    }
    
    .places-grid {
        grid-template-columns: 1fr;
    }
    
    .place-card.large {
        grid-column: span 1;
    }
    
    .city-food-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .blog-featured-content {
        margin: 20px;
    }
    
    .blog-featured img {
        height: 250px;
    }
}

@media screen and (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .btn-large {
        padding: 14px 30px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===========================================
   Print Styles
   =========================================== */
@media print {
    .header,
    .footer,
    .nav-menu,
    .btn,
    .cta-section,
    .newsletter {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    .legal-text,
    .blog-content {
        padding: 20px 0;
    }
}
