/* outfit-300 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300;
  src: url('./fonts/outfit-v15-latin-300.woff2') format('woff2');
}

/* outfit-regular - latin (400) */
@font-face {
  font-display: swap; 
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  src: url('./fonts/outfit-v15-latin-regular.woff2') format('woff2');
}

/* outfit-600 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 600;
  src: url('./fonts/outfit-v15-latin-600.woff2') format('woff2');
}

/* outfit-800 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 800;
  src: url('./fonts/outfit-v15-latin-800.woff2') format('woff2');
}

:root {
    --bg-color: #0c0c0e;
    --text-main: #ffffff;
    --text-muted: #a0a0ab;
    --accent: #e11d48; /* Golden Orange */
    --accent-glow: rgba(225, 29, 72, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(255, 255, 255, 0.06);
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

/* Typography */
h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 10px;
}

p {
    color: var(--text-muted);
}

.highlight {
    color: var(--accent);
    text-shadow: 0 0 20px var(--accent-glow);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navigation - Glassmorphism */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(12, 12, 14, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@keyframes logoShine {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% auto; }
}

.logo {
    font-size: 2.1rem;
    font-weight: 900;
    letter-spacing: -1px;
    font-family: 'Arial Rounded MT Bold', 'Trebuchet MS', 'Segoe UI', sans-serif;
    text-transform: none;
    background: linear-gradient(90deg, #e11d48, #ff4b2b, #ffffff, #ff4b2b, #e11d48);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 4px 10px rgba(225, 29, 72, 0.4));
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
    animation: logoShine 5s linear infinite;
    display: inline-block;
}

.logo:hover {
    transform: scale(1.1) rotate(-1.5deg);
    filter: drop-shadow(0px 8px 25px rgba(225, 29, 72, 0.9));
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-weight: 400;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta-button {
    background: var(--accent);
    color: #000 !important;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600 !important;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-cta-button::after {
    display: none;
}

.nav-cta-button:hover {
    box-shadow: 0 0 15px var(--accent-glow);
    transform: translateY(-2px);
}

/* Call Button in Navbar */
.call-btn::after {
    display: none !important;
}

.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 8px 18px;
    border-radius: 50px;
    color: var(--text-main);
    font-weight: 600;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.call-btn i {
    color: var(--accent);
}

.call-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(225, 29, 72, 0.15);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 120vh; /* Extra height for animation scroll space */
}

.sticky-wrapper {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#hero-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Overlay to darken image */
.canvas-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(12, 12, 14, 0.4) 0%, var(--bg-color) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-content {
    background-color: var(--bg-color);
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: clamp(4rem, 12vw, 11rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: #ffffff;
    /* 3D glow / depth effect */
    text-shadow: 
        0px 2px 0px #9f1231,
        0px 4px 0px #820e27,
        0px 6px 0px #670b1e,
        0px 8px 10px rgba(0, 0, 0, 0.5),
        0px 15px 30px rgba(0, 0, 0, 0.7),
        0px 0px 40px rgba(225, 29, 72, 0.4); /* subtle inner accent glow */
    transform: translateZ(0); /* Hardware acceleration */
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 6px;
    text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.8);
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent);
    color: #000;
    font-weight: 600;
    border-radius: 30px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(225, 29, 72, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(225, 29, 72, 0.4);
}

/* USP Section */
.usp-section {
    padding: 100px 20px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.usp-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.usp-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-main);
}

/* About Section */
.about-section {
    padding: 100px 20px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content h2 {
    color: var(--accent);
    margin-bottom: 20px;
}

.highlight-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
}

.about-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.about-image img.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
}

.about-image:hover img.about-img {
    transform: scale(1.05);
}

.about-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.1) 0%, rgba(0,0,0,0.5) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.7;
    border: 1px dashed var(--glass-border);
    border-radius: 20px;
}

/* Menu Section */
.menu-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

/* Menu Filters */
.menu-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: var(--transition-smooth);
    backdrop-filter: blur(12px);
}

.filter-btn:hover {
    background: var(--glass-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(225, 29, 72, 0.2);
}

.filter-btn.active {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

.menu-category {
    margin-bottom: 80px;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.menu-category.hidden {
    display: none;
}

.category-title {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 40px;
    border-bottom: 2px solid var(--glass-border);
    padding-bottom: 10px;
    text-shadow: 0 0 10px var(--accent-glow);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Glass Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
}

/* Hover Effects */
.glass-card:hover {
    background: var(--glass-hover);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 40px rgba(225, 29, 72, 0.05);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.glass-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.price {
    display: block;
    margin-top: 20px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent);
}

/* Glow effect inside card */
.glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.glass-card:hover::before {
    opacity: 1;
}

/* Reviews Section */
.reviews-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.review-author {
    font-weight: 600;
    color: var(--text-main);
    text-align: right;
}

/* Contact Section */
.contact-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-block i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: 5px;
}

.map-link {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
}

.storefront-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
}

.map-link:hover .storefront-img {
    transform: scale(1.05);
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

footer a {
    transition: color 0.3s;
}

footer a:hover {
    color: var(--accent);
}

/* KI D�ner Creator */
.creator-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.creator-header {
    text-align: center;
    margin-bottom: 40px;
}

.glow-icon {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px var(--accent-glow));
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); filter: drop-shadow(0 0 15px var(--accent-glow)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 25px rgba(225, 29, 72, 0.8)); }
    100% { transform: scale(1); filter: drop-shadow(0 0 15px var(--accent-glow)); }
}

.creator-container {
    padding: 50px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.creator-step {
    transition: all 0.5s ease;
}

.creator-step.hidden {
    display: none;
}

.question-block {
    margin-bottom: 30px;
}

.chip-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.chip {
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chip:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.chip.active {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
}

.creator-btn {
    width: 100%;
    margin-top: 20px;
    font-size: 1.2rem;
    cursor: pointer;
}

/* Loading Animation */
.scanner-container {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.scanner-brain {
    font-size: 4rem;
    color: var(--accent);
}

.scanner-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent);
    box-shadow: 0 0 20px 5px var(--accent-glow);
    animation: scan 1.5s infinite ease-in-out alternate;
}

@keyframes scan {
    0% { top: -10%; }
    100% { top: 110%; }
}

.loading-text {
    text-align: center;
    color: var(--accent);
    margin-bottom: 5px;
}

.loading-subtext {
    text-align: center;
}

/* Result UI */
#creator-result {
    text-align: center;
}

.result-badge {
    display: inline-block;
    background: rgba(225, 29, 72, 0.2);
    color: var(--accent);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 800;
    margin-bottom: 15px;
    border: 1px solid var(--accent);
}

#result-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.result-ingredients {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.result-ingredients span {
    background: rgba(255,255,255,0.05);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
}

.result-ingredients i {
    color: var(--accent);
    margin-right: 5px;
}

.result-pitch {
    background: rgba(0,0,0,0.4);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    margin-bottom: 30px;
    text-align: left;
}

.result-pitch h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.result-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.secondary-btn {
    padding: 15px 30px;
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-main);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.secondary-btn:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

/* Highlight Animation for Creator Results */
@keyframes highlight-pulse-anim {
    0% { border-color: var(--glass-border); box-shadow: none; transform: scale(1); }
    10% { border-color: var(--accent); box-shadow: 0 0 30px 10px var(--accent-glow); transform: scale(1.02); }
    80% { border-color: var(--accent); box-shadow: 0 0 30px 10px var(--accent-glow); transform: scale(1.02); }
    100% { border-color: var(--glass-border); box-shadow: none; transform: scale(1); }
}

.highlight-pulse {
    animation: highlight-pulse-anim 3.5s ease;
    border-color: var(--accent) !important;
    z-index: 10;
}

/* Flow Animation Classes (Scroll Reveal) */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* --- WIZARD SLIDER STYLES --- */
.wizard-progress {
    width: 100%;
    height: 8px;
    background: var(--glass-bg);
    border-radius: 4px;
    margin-bottom: 40px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.progress-fill {
    height: 100%;
    background: var(--accent);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#creator-input {
    position: relative;
    overflow: hidden;
    padding-bottom: 20px;
}

.wizard-slide {
    display: none;
    animation: slideInR 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.wizard-slide.active {
    display: block;
}

.wizard-slide.slide-left {
    animation: slideInL 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideInR {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInL {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.btn-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.btn-group.single {
    justify-content: flex-end;
}

.btn-group.final {
    justify-content: space-between;
    gap: 10px;
}

.btn-group button {
    margin: 0;
}

/* --- REVIEWS GALLERY --- */
.reviews-gallery {
    margin-top: 80px;
    text-align: center;
}

.reviews-gallery h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.gallery-item {
    flex: 1 1 200px;
    max-width: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(225, 29, 72, 0.2);
    border-color: rgba(225, 29, 72, 0.3);
}

.gallery-item:hover img {
    transform: scale(1.03);
}




/* --- VOICE CONTROL STYLES --- */
.voice-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    font-size: 1.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.voice-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--accent-glow);
}

.voice-btn.listening {
    background: var(--accent);
    color: #000;
    animation: pulse-voice 1.5s infinite;
    border-color: var(--accent);
}

@keyframes pulse-voice {
    0% { box-shadow: 0 0 0 0px var(--accent-glow); }
    100% { box-shadow: 0 0 0 20px rgba(225, 29, 72, 0); }
}

/* --- MOBILE NAVIGATION ICON --- */
.nav-actions-mobile {
    display: none;
    align-items: center;
    gap: 15px;
    z-index: 1000;
}
.menu-toggle {
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.8rem;
    cursor: pointer;
}
.mobile-call-btn {
    background: var(--accent);
    color: #000;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(225, 29, 72, 0.4);
    transition: transform 0.3s ease;
}
.mobile-call-btn:active {
    transform: scale(0.9);
}

/* --- RESPONSIVE DESIGN (MOBILE FIRST OVERRIDES) --- */
@media (max-width: 768px) {
    /* Navbar */
    .nav-actions-mobile {
        display: flex;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        justify-content: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(12, 12, 14, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 999;
        gap: 40px;
        opacity: 0;
        transform: translateY(-20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }
    .nav-links.nav-active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }
    .nav-links a {
        font-size: 1.5rem;
    }
    
    /* Layout / Grids */
    .usp-grid,
    .menu-grid,
    .reviews-grid,
    .gallery-grid,
    .contact-container,
    .about-container {
        grid-template-columns: 1fr;
    }
    
    /* Spacing / Padding */
    .section-title h2 {
        font-size: 2rem;
    }
    h1 {
        font-size: 2.5rem;
    }
    section, .creator-section, .contact-section {
        padding: 40px 15px;
    }
    .contact-container {
        padding: 30px 20px;
    }
    
    /* Touch Targets & Forms */
    .chip {
        padding: 12px 20px; /* Slightly bigger for finger touch */
        font-size: 1rem;
    }
    .chip-container {
        gap: 12px;
        justify-content: center;
    }
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    /* Make button groups responsive in creator */
    .btn-group {
        flex-direction: column-reverse; /* Usually back below next on mobile */
        gap: 15px;
    }
    .btn-group.final {
        flex-direction: column-reverse;
    }
    .btn-group button, .generate-btn {
        width: 100%; /* Better touch experience on small screens */
        text-align: center;
    }
    .btn-group.single {
        flex-direction: column;
    }
    
    /* Prevent Voice Btn from taking 100% width since it's an icon circle */
    .btn-group .voice-btn {
        width: 60px;
        margin: 0 auto;
    }
    
    .nav-cta-button {
        padding: 12px 30px;
        font-size: 1.2rem;
    }
}
