/* ========================================
   Sip & Play Wine and Gaming Cafe
   Custom Styles
======================================== */

/* --- CSS Custom Properties --- */
:root {
    --color-terracotta: #C4785A;
    --color-terracotta-dark: #A8604A;
    --color-terracotta-light: #D4917A;
    --color-sand: #F5E6D3;
    --color-sand-light: #FAF3EB;
    --color-sand-dark: #E8D5C0;
    --color-cream: #FDF8F4;
    --color-warm-white: #FFFDFB;
    --color-text: #3D2B2B;
    --color-text-light: #6B5555;
    --color-text-muted: #9A8585;
    --color-border: #E8D5C0;
    --color-white: #FFFFFF;
    --color-overlay: rgba(61, 43, 43, 0.55);
    --color-overlay-dark: rgba(61, 43, 43, 0.7);
    
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Nunito', 'Segoe UI', sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    
    --shadow-sm: 0 2px 8px rgba(61, 43, 43, 0.06);
    --shadow-md: 0 4px 20px rgba(61, 43, 43, 0.08);
    --shadow-lg: 0 8px 40px rgba(61, 43, 43, 0.12);
    --shadow-xl: 0 16px 60px rgba(61, 43, 43, 0.15);
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* --- Utility --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

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

.text-accent {
    color: var(--color-terracotta);
}

/* --- Section Tags --- */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-terracotta);
    background: linear-gradient(135deg, rgba(196, 120, 90, 0.12), rgba(196, 120, 90, 0.05));
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: var(--space-sm);
}

/* --- Section Titles --- */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-terracotta);
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(196, 120, 90, 0.35);
}

.btn--primary:hover {
    background: var(--color-terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(196, 120, 90, 0.45);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.btn--ghost-light {
    background: rgba(255, 255, 255, 0.12);
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn--ghost-light:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

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

.btn--terracotta:hover {
    background: var(--color-terracotta-dark);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
}

.btn--sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* --- Sections --- */
.section {
    padding: var(--space-3xl) 0;
}

/* ========================================
   Navigation
======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    transition: all var(--transition-base);
}

.nav.scrolled {
    background: rgba(253, 248, 244, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-sm);
    padding: 0.6rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    transition: color var(--transition-base);
}

.nav.scrolled .nav-logo {
    color: var(--color-text);
}

.nav-logo em {
    font-style: italic;
    color: var(--color-terracotta-light);
    font-weight: 400;
}

.nav.scrolled .nav-logo em {
    color: var(--color-terracotta);
}

.nav-logo-icon {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: all var(--transition-fast);
}

.nav.scrolled .nav-link {
    color: var(--color-text-light);
}

.nav-link:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.12);
}

.nav.scrolled .nav-link:hover {
    color: var(--color-terracotta);
    background: rgba(196, 120, 90, 0.08);
}

.nav-link--cta {
    background: var(--color-terracotta);
    color: var(--color-white) !important;
    margin-left: 0.5rem;
}

.nav-link--cta:hover {
    background: var(--color-terracotta-dark);
}

.nav.scrolled .nav-link--cta {
    color: var(--color-white) !important;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.nav.scrolled .nav-toggle-bar {
    background: var(--color-text);
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: linear-gradient(135deg, var(--color-text) 0%, #5A3E3E 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

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

.mobile-menu-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    color: var(--color-white);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background var(--transition-fast);
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.mobile-menu-link {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.mobile-menu-link:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.08);
}

.mobile-menu-link--cta {
    margin-top: 0.5rem;
    background: var(--color-terracotta);
    color: var(--color-white) !important;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 0.85rem 2rem;
}

/* ========================================
   Hero Section
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(61, 43, 43, 0.7) 0%,
        rgba(61, 43, 43, 0.45) 50%,
        rgba(196, 120, 90, 0.3) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    padding: var(--space-xl) var(--space-md);
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-sand);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: var(--space-lg);
    backdrop-filter: blur(8px);
}

.hero-badge svg {
    color: var(--color-terracotta-light);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-subheadline {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

.hero-trust-item svg {
    color: var(--color-terracotta-light);
    flex-shrink: 0;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 2.5s ease-in-out infinite;
    transition: color var(--transition-fast);
}

.hero-scroll:hover {
    color: var(--color-white);
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ========================================
   About Section
======================================== */
.about {
    background: var(--color-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-images {
    position: relative;
    height: 600px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 80%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 50%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--color-cream);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--color-terracotta), var(--color-terracotta-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.about-img-accent svg {
    width: 48px;
    height: 48px;
    color: var(--color-white);
}

.about-content {
    padding: var(--space-md) 0;
}

.about-text {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.85;
    margin-bottom: var(--space-md);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.about-feature {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
}

.about-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(196, 120, 90, 0.12), rgba(196, 120, 90, 0.05));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-terracotta);
}

.about-feature h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.2rem;
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ========================================
   Experience Section
======================================== */
.experience {
    background: linear-gradient(180deg, var(--color-sand-light) 0%, var(--color-cream) 100%);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

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

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

.experience-card-img {
    height: 220px;
    overflow: hidden;
}

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

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

.experience-card-body {
    padding: var(--space-lg);
}

.experience-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-terracotta), var(--color-terracotta-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.experience-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
    line-height: 1.3;
}

.experience-card-body p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.75;
}

/* ========================================
   Games Section
======================================== */
.games {
    background: var(--color-cream);
}

.games-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.games-content {
    padding: var(--space-md) 0;
}

.games-text {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.85;
    margin-bottom: var(--space-md);
}

.games-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin: var(--space-lg) 0 var(--space-lg);
}

.games-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1rem;
    color: var(--color-text);
}

.games-list-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--color-terracotta), var(--color-terracotta-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.games-visual {
    position: relative;
}

.games-img-stack {
    position: relative;
    height: 620px;
}

.games-img-stack img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.games-floating-card {
    position: absolute;
    bottom: 2rem;
    right: -1.5rem;
    background: var(--color-white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
}

.games-floating-card svg {
    color: var(--color-terracotta);
    flex-shrink: 0;
}

.games-floating-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1;
}

.games-floating-card span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ========================================
   Wine Section
======================================== */
.wine {
    background: linear-gradient(135deg, var(--color-sand) 0%, var(--color-sand-light) 100%);
}

.wine-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.wine-visual {
    position: relative;
    height: 700px;
}

.wine-img-main {
    width: 75%;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.wine-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wine-img-float {
    position: absolute;
    bottom: 2rem;
    right: 0;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--color-sand);
}

.wine-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wine-content {
    padding: var(--space-md) 0;
}

.wine-text {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.85;
    margin-bottom: var(--space-lg);
}

.wine-categories {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.wine-cat {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md);
    backdrop-filter: blur(8px);
}

.wine-cat-dot {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.wine-cat--white { background: #F5E6A0; }
.wine-cat--red { background: #8B3A3A; }
.wine-cat--rose { background: #E8A0B0; }

.wine-cat h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text);
}

.wine-cat p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.wine-note {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-style: italic;
    padding: var(--space-sm) var(--space-md);
    background: rgba(196, 120, 90, 0.08);
    border-left: 3px solid var(--color-terracotta);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ========================================
   Visit Section
======================================== */
.visit {
    background: var(--color-cream);
}

.visit-header {
    margin-bottom: var(--space-2xl);
}

.visit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.visit-card {
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    text-align: center;
}

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

.visit-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(196, 120, 90, 0.12), rgba(196, 120, 90, 0.05));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-terracotta);
    margin: 0 auto var(--space-md);
}

.visit-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.visit-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
}

.hours-day {
    display: block;
    font-weight: 600;
    color: var(--color-text);
}

.hours-time {
    display: block;
    color: var(--color-text-light);
}

.visit-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-terracotta);
    margin-top: var(--space-sm);
    transition: all var(--transition-fast);
}

.visit-link:hover {
    color: var(--color-terracotta-dark);
    gap: 0.6rem;
}

.visit-link-text {
    color: var(--color-text-light);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.visit-link-text:hover {
    color: var(--color-terracotta);
}

/* ========================================
   Map Section
======================================== */
.map-section {
    height: 400px;
    position: relative;
}

.map-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.map-overlay-card {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    max-width: 320px;
    z-index: 10;
}

.map-overlay-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--color-terracotta), var(--color-terracotta-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.map-overlay-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-text);
    line-height: 1.2;
}

.map-overlay-card span {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 0.2rem;
}

/* ========================================
   Contact Section
======================================== */
.contact {
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-sand-light) 100%);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.contact-text {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.85;
    margin-bottom: var(--space-lg);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.contact-detail svg {
    color: var(--color-terracotta);
    flex-shrink: 0;
}

.contact-detail a {
    color: var(--color-text-light);
    transition: color var(--transition-fast);
}

.contact-detail a:hover {
    color: var(--color-terracotta);
}

.contact-form-wrapper {
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
}

.form-input {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-sand-light);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    outline: none;
}

.form-input:focus {
    border-color: var(--color-terracotta);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(196, 120, 90, 0.12);
}

.form-input::placeholder {
    color: var(--color-text-muted);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239A8585' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
}

.form-success.active {
    display: flex;
}

.form-success-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(196, 120, 90, 0.12), rgba(196, 120, 90, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-terracotta);
    margin-bottom: var(--space-md);
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}

.form-success p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ========================================
   CTA Banner
======================================== */
.cta-banner {
    position: relative;
    padding: var(--space-3xl) 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(61, 43, 43, 0.75), rgba(196, 120, 90, 0.5));
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-md);
    line-height: 1.15;
}

.cta-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin: 0 auto var(--space-lg);
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

/* ========================================
   Footer
======================================== */
.footer {
    background: var(--color-text);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.footer-logo em {
    font-style: italic;
    color: var(--color-terracotta-light);
    font-weight: 400;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.5);
    max-width: 280px;
}

.footer h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.footer-nav ul,
.footer-hours ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a,
.footer-hours span,
.footer-contact a,
.footer-contact li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--transition-fast);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.6;
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--color-terracotta-light);
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    gap: var(--space-sm);
}

.footer-hours span:last-child {
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ========================================
   Scroll Animations
======================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ========================================
   Responsive
======================================== */
@media (max-width: 1024px) {
    .about-grid,
    .games-layout,
    .wine-split,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .about-images {
        height: 450px;
        max-height: 400px;
    }

    .wine-visual {
        height: 500px;
        max-height: 400px;
    }

    .games-img-stack {
        height: 450px;
        max-height: 400px;
    }

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

    .visit-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .map-overlay-card {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        max-width: 100%;
        border-radius: 0;
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    :root {
        --space-3xl: 5rem;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-trust {
        flex-direction: column;
        gap: var(--space-xs);
    }

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

    .games-floating-card {
        right: 0;
        bottom: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-images {
        height: 320px;
    }

    .about-img-main {
        width: 85%;
    }

    .about-img-secondary {
        width: 60%;
    }

    .wine-visual {
        height: 350px;
    }

    .wine-img-main {
        width: 85%;
    }

    .wine-img-float {
        width: 65%;
    }

    .games-img-stack {
        height: 350px;
    }

    .contact-form-wrapper {
        padding: var(--space-md);
    }

    .map-section {
        height: 300px;
    }
}
