/* Design System & Tokens */
:root {
    --primary: #8B4513;        /* Terracotta / Saddle Brown */
    --primary-light: #A0522D;  /* Sienna */
    --accent: #D2691E;         /* Warm Chocolate */
    --accent-light: #E58742;   /* Bright Orange accent */
    --gold: #C5A059;           /* Pale Gold */
    --gold-dark: #A57E3B;      /* Darker Gold */
    --bg-cream: #FDFBF7;       /* Warm Soft Cream */
    --text-dark: #3E2723;      /* Deep Coffee Brown */
    --text-muted: #6D4C41;     /* Muted Brown */
    --text-light: #EFEBE9;     /* Soft Light Cream */
    --glass-white: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(139, 69, 19, 0.15);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(139, 69, 19, 0.08);
    --shadow-lg: 0 20px 40px rgba(139, 69, 19, 0.15);
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Lato', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background parallax overlay styling */
.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.bg-image {
    width: 100%;
    height: 100%;
    background-image: url('https://focaccia.ilfornodellepuglie.it/myImg/bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.02);
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 15, 7, 0.85) 0%, rgba(20, 10, 5, 0.9) 100%);
    backdrop-filter: blur(4px);
}

/* Scrollbar customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--text-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-light);
}

/* Container limits */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Language Selection Styling (IT / EN) */
.lang-switch {
    display: flex;
    gap: 5px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 4px;
    border-radius: 30px;
}

.lang-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn.active {
    background: var(--gold);
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

/* Hide inactive language sections */
body:not(.lang-en) [lang="en"] {
    display: none !important;
}

body.lang-en [lang="it"] {
    display: none !important;
}

body.lang-en .lang-btn[data-lang="en"] {
    background: var(--gold);
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

body.lang-en .lang-btn[data-lang="it"] {
    background: none;
    color: rgba(255, 255, 255, 0.7);
    box-shadow: none;
}

/* Header Section */
header {
    background: rgba(18, 10, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

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

header .logo img {
    height: 60px;
    width: auto;
    display: block;
    transition: var(--transition);
}

header .logo img:hover {
    transform: scale(1.03);
}

/* Hero Section */
.hero {
    padding: 80px 0 60px 0;
    color: white;
    text-align: center;
    position: relative;
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 10px;
    font-style: italic;
    letter-spacing: 2px;
    animation: fadeInDown 0.8s ease-out;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-title span {
    color: var(--gold);
}

.hero-tagline {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    line-height: 1.8;
}

.badge-container {
    display: inline-flex;
    align-items: center;
    background: rgba(210, 105, 30, 0.2);
    border: 1px dashed var(--accent-light);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 40px;
    backdrop-filter: blur(5px);
}

.badge-icon {
    margin-right: 8px;
    font-size: 1.2rem;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 32px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--text-dark);
    border: none;
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(197, 160, 89, 0.5);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

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

.section-dark {
    background: rgba(18, 10, 5, 0.7);
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    color: white;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-dark .section-title {
    color: white;
}

.section-light .section-title {
    color: var(--primary);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    transition: var(--transition);
}

/* Coupon Card (Volantino Digitale) */
.coupon-section {
    display: flex;
    justify-content: center;
    margin-top: -30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
}

.coupon-card {
    max-width: 700px;
    width: 100%;
    background: #FFFDF8;
    border: 3px dashed var(--accent);
    border-radius: var(--radius-md);
    padding: 35px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: var(--transition);
}

.coupon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(210, 105, 30, 0.25);
    border-color: var(--primary);
}

/* Coupon notches (ticket effect) */
.coupon-card::before, .coupon-card::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    background: var(--bg-cream);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: inset 0 0 5px rgba(0,0,0,0.1);
}
.coupon-card::before { left: -15px; border-right: 3px dashed var(--accent); }
.coupon-card::after { right: -15px; border-left: 3px dashed var(--accent); }

.coupon-label {
    background: var(--accent);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 20px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(210, 105, 30, 0.2);
}

.coupon-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.coupon-desc {
    font-size: 1.1rem;
    color: var(--text-dark);
    max-width: 550px;
    margin: 0 auto 20px auto;
    font-weight: 400;
    line-height: 1.6;
}

.coupon-promo {
    background: rgba(197, 160, 89, 0.12);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 15px;
    border-radius: var(--radius-sm);
    margin-bottom: 25px;
}

.coupon-promo h4 {
    font-family: var(--font-serif);
    color: var(--primary-light);
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coupon-promo p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.coupon-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(139, 69, 19, 0.1);
    padding-top: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.coupon-code {
    display: flex;
    align-items: center;
    gap: 10px;
}

.coupon-code-value {
    font-family: monospace;
    font-size: 1.1rem;
    font-weight: bold;
    background: #F4ECE1;
    color: var(--primary);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(139, 69, 19, 0.2);
}

.btn-coupon {
    padding: 10px 20px;
    font-size: 0.85rem;
    border-radius: 30px;
    background: var(--text-dark);
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.btn-coupon:hover {
    background: var(--accent);
    transform: scale(1.03);
}

/* App Showcase Section */
.app-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.app-text {
    padding-right: 20px;
}

.app-text h3 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.app-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    line-height: 1.8;
}

.app-features {
    list-style: none;
    margin-bottom: 35px;
}

.app-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    font-size: 1.05rem;
}

.app-features li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--gold);
    color: var(--text-dark);
    border-radius: 50%;
    margin-right: 15px;
    font-weight: bold;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 3px;
}

/* SVG Download Buttons */
.store-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    background: #000;
    color: white;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 18px;
    border-radius: 8px;
    transition: var(--transition);
    min-width: 170px;
}

.store-badge:hover {
    background: #1A1A1A;
    border-color: var(--gold);
    transform: translateY(-2px);
}

.store-badge svg {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    fill: currentColor;
}

.store-badge-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.store-badge-subtitle {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: #AAA;
    letter-spacing: 0.5px;
}

.store-badge-title {
    font-size: 0.95rem;
    font-weight: 700;
}

/* Smartphone Mockup Container (Pure CSS) */
.phone-mockup-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #000;
    border: 12px solid #2d2d30;
    border-radius: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 0 2px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Speaker Notch */
.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 22px;
    background: #2d2d30;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #FFFDF9;
    padding: 30px 15px 15px 15px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.phone-screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

/* In-App Mockup Content */
.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
    padding-bottom: 8px;
    margin-bottom: 12px;
}

.phone-brand {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: bold;
    color: var(--primary);
    text-transform: uppercase;
}

.phone-cart-icon {
    font-size: 1rem;
    position: relative;
    cursor: pointer;
}

.phone-cart-badge {
    position: absolute;
    top: -5px;
    right: -7px;
    background: var(--accent);
    color: white;
    font-size: 0.55rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.phone-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    font-weight: bold;
    margin-bottom: 8px;
}

.phone-menu-list {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 2px;
}

/* Hide in-app scrollbar */
.phone-menu-list::-webkit-scrollbar {
    width: 3px;
}
.phone-menu-list::-webkit-scrollbar-thumb {
    background: var(--accent-light);
}

.phone-menu-item {
    display: flex;
    background: white;
    border: 1px solid rgba(139, 69, 19, 0.08);
    border-radius: var(--radius-sm);
    padding: 8px;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.phone-item-img {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-cream);
    flex-shrink: 0;
}

.phone-item-info {
    flex: 1;
    min-width: 0;
}

.phone-item-name {
    font-family: var(--font-serif);
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.phone-item-desc {
    font-size: 0.6rem;
    color: var(--text-muted);
    line-height: 1.2;
    margin-top: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.phone-item-price-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3px;
}

.phone-item-price {
    font-size: 0.75rem;
    font-weight: bold;
    color: var(--accent);
}

.phone-add-btn {
    background: var(--primary);
    color: white;
    border: none;
    font-size: 0.6rem;
    padding: 3px 8px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: var(--transition);
}

.phone-add-btn:hover {
    background: var(--accent);
}

.phone-footer-action {
    margin-top: 10px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    border-radius: var(--radius-sm);
    padding: 10px;
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 0.75rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(210, 105, 30, 0.3);
}

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

.spec-card {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(139, 69, 19, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.spec-img-container {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: var(--bg-cream);
}

.spec-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
    letter-spacing: 0.5px;
}

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

.spec-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.spec-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    flex-content: 1;
}

/* Info Section (Beach delivery & Details) */
.info-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.delivery-promo-card {
    background: linear-gradient(135deg, #1C0F08 0%, #30180B 100%);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: var(--radius-md);
    padding: 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.delivery-promo-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(197, 160, 89, 0.05);
    border-radius: 50%;
}

.delivery-title {
    font-family: var(--font-serif);
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.delivery-hours {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin: 15px 0;
    display: inline-block;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 5px;
}

.delivery-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.95);
}

.delivery-accent-text {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--accent-light);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Location Card / Map info */
.location-card {
    background: white;
    padding: 35px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(139, 69, 19, 0.08);
}

.location-title {
    font-family: var(--font-serif);
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.location-details {
    margin-bottom: 20px;
}

.location-item {
    display: flex;
    margin-bottom: 12px;
    align-items: flex-start;
}

.location-icon {
    font-size: 1.1rem;
    margin-right: 12px;
    margin-top: 2px;
}

.location-text {
    color: var(--text-dark);
}

.location-text strong {
    color: var(--primary);
}

.location-map-placeholder {
    height: 250px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(139, 69, 19, 0.2);
    box-shadow: var(--shadow-sm);
}

.location-map-pin {
    z-index: 2;
    font-size: 3rem;
    animation: bounce 2s infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* History / About section */
.about-section {
    background: white;
    padding: 60px 0;
    position: relative;
}

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

.about-logo {
    max-width: 150px;
    margin: 0 auto 20px auto;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Footer styling */
footer {
    background: #120A05;
    color: rgba(255, 255, 255, 0.95);
    padding: 60px 0 30px 0;
    border-top: 3px solid var(--gold);
}

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

.footer-column h4 {
    color: white;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

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

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

/* Animations */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

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

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .app-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .app-text {
        padding-right: 0;
    }
    
    .app-features li {
        justify-content: center;
    }
    
    .store-badges {
        justify-content: center;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .coupon-card {
        padding: 25px 15px;
    }
    
    .coupon-title {
        font-size: 1.8rem;
    }
    
    .coupon-card::before, .coupon-card::after {
        display: none; /* Hide ticket cuts on small screens */
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }
    
    .btn {
        width: 100%;
    }
    
    .store-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .store-badge {
        width: 100%;
        max-width: 250px;
    }
}
