/* ══════════════════════════════════════════════════════════════
   Vinařství Na Lišce – Main Stylesheet
   Organic wine aesthetic · Rounded everything · Warm & clean
   ══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
    --wine-deep: #4a1942;
    --wine-rich: #722f37;
    --wine-warm: #8b4049;
    --wine-light: #c9a96e;
    --wine-gold: #d4a853;

    --cream: #faf6f0;
    --cream-dark: #f0e8da;
    --cream-mid: #e8dcc8;
    --sand: #d4c5a9;

    --text-primary: #2c1810;
    --text-secondary: #5a4a3a;
    --text-muted: #8a7a6a;
    --text-on-dark: #faf6f0;

    --white: #ffffff;
    --black: #1a1210;
    --success: #4a7c59;
    --error: #a83232;
    --info: #3a6b8c;

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 8px rgba(44,24,16,0.06);
    --shadow-md: 0 4px 20px rgba(44,24,16,0.08);
    --shadow-lg: 0 8px 40px rgba(44,24,16,0.12);
    --shadow-xl: 0 16px 60px rgba(44,24,16,0.16);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-primary);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    color: var(--wine-rich);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--wine-deep);
}

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

/* ── Container ───────────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════════ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(250,246,240,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wine-deep);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: var(--wine-rich);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wine-gold);
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-links a {
    padding: 8px 18px;
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.92rem;
    transition: all var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(114,47,55,0.08);
    color: var(--wine-rich);
}

.nav-links .btn-nav {
    background: var(--wine-rich);
    color: var(--text-on-dark);
    padding: 10px 22px;
    font-weight: 600;
}

.nav-links .btn-nav:hover {
    background: var(--wine-deep);
    color: var(--text-on-dark);
    transform: translateY(-1px);
}

/* Mobile Menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: none;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition);
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 4px;
        transition: right var(--transition);
        box-shadow: var(--shadow-xl);
    }
    .nav-links.open { right: 0; }
    .nav-links a {
        width: 100%;
        padding: 14px 20px;
        border-radius: var(--radius-md);
        font-size: 1rem;
    }
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 999;
    }
    .nav-overlay.open { display: block; }
}

/* ══════════════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════════════ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(160deg, var(--wine-deep) 0%, var(--wine-rich) 40%, var(--wine-warm) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(212,168,83,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(201,169,110,0.1) 0%, transparent 50%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 120px;
    background: var(--cream);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 24px 160px;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-full);
    color: var(--wine-gold);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: var(--text-on-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero h1 em {
    color: var(--wine-gold);
    font-style: italic;
}

.hero p {
    font-size: 1.15rem;
    color: rgba(250,246,240,0.8);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background: var(--wine-gold);
    color: var(--text-primary);
}

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

.btn-secondary {
    background: transparent;
    color: var(--text-on-dark);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    color: var(--text-on-dark);
}

.btn-outline {
    background: transparent;
    color: var(--wine-rich);
    border: 2px solid var(--wine-rich);
}

.btn-outline:hover {
    background: var(--wine-rich);
    color: var(--text-on-dark);
}

.btn-wine {
    background: var(--wine-rich);
    color: var(--text-on-dark);
}

.btn-wine:hover {
    background: var(--wine-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--text-on-dark);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

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

.btn-danger:hover {
    background: #8a2222;
    color: white;
}

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

.btn-success:hover {
    background: #3a6649;
    color: white;
}

/* ══════════════════════════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════════════════════════ */

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--wine-deep);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
}

.section-alt {
    background: var(--white);
}

.section-dark {
    background: var(--wine-deep);
    color: var(--text-on-dark);
}

.section-dark .section-header h2 {
    color: var(--wine-gold);
}

.section-dark .section-header p {
    color: rgba(250,246,240,0.7);
}

/* ══════════════════════════════════════════════════════════════
   WINE CARDS
   ══════════════════════════════════════════════════════════════ */

.wine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

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

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

.wine-card-image {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream-mid) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

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

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

.wine-card-image .no-image {
    font-size: 4rem;
    opacity: 0.3;
}

.wine-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-bile { background: #f5e6c8; color: #8a6d3b; }
.badge-cervene { background: #f0d0d0; color: #8b3a3a; }
.badge-ruzove { background: #f5d5e0; color: #a04060; }
.badge-sumive { background: #d5eaf0; color: #3a7a8b; }

.wine-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wine-card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;
    color: var(--wine-deep);
}

.wine-card-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.wine-card-body p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wine-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-top: 1px solid var(--cream-dark);
}

.wine-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--wine-rich);
}

.wine-price small {
    font-size: 0.7em;
    font-weight: 400;
    color: var(--text-muted);
    font-family: 'DM Sans', sans-serif;
}

/* ══════════════════════════════════════════════════════════════
   FILTER TABS
   ══════════════════════════════════════════════════════════════ */

.filter-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--white);
    border: 1px solid var(--cream-mid);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--wine-rich);
    color: var(--text-on-dark);
    border-color: var(--wine-rich);
}

/* ══════════════════════════════════════════════════════════════
   GALLERY
   ══════════════════════════════════════════════════════════════ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

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

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,18,16,0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay h4 {
    color: var(--text-on-dark);
    font-size: 1.1rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius-lg);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
}

/* ══════════════════════════════════════════════════════════════
   FORMS
   ══════════════════════════════════════════════════════════════ */

.form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-md);
    max-width: 560px;
    margin: 0 auto;
}

.form-card h2 {
    font-size: 1.8rem;
    color: var(--wine-deep);
    margin-bottom: 8px;
}

.form-card .subtitle {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid var(--cream-mid);
    border-radius: var(--radius-md);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--cream);
    transition: all var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--wine-rich);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(114,47,55,0.08);
}

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

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

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235a4a3a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    accent-color: var(--wine-rich);
}

.form-actions {
    margin-top: 28px;
}

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

.form-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════════
   FLASH MESSAGES
   ══════════════════════════════════════════════════════════════ */

.flash-messages {
    position: fixed;
    top: 90px;
    right: 24px;
    z-index: 1500;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 420px;
}

.flash {
    padding: 16px 24px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    animation: flashIn 0.4s ease-out;
    display: flex;
    align-items: center;
    gap: 12px;
}

.flash-success {
    background: #e8f5e9;
    color: #2e7d32;
    border-left: 4px solid var(--success);
}

.flash-error {
    background: #ffebee;
    color: #c62828;
    border-left: 4px solid var(--error);
}

.flash-info {
    background: #e3f2fd;
    color: #1565c0;
    border-left: 4px solid var(--info);
}

.flash-close {
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0.5;
    color: inherit;
}

@keyframes flashIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ══════════════════════════════════════════════════════════════
   PAGE HEADER
   ══════════════════════════════════════════════════════════════ */

.page-header {
    padding: 140px 0 60px;
    text-align: center;
    background: linear-gradient(160deg, var(--wine-deep) 0%, var(--wine-rich) 100%);
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--cream);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-on-dark);
    position: relative;
    z-index: 2;
}

.page-header p {
    color: rgba(250,246,240,0.7);
    margin-top: 12px;
    position: relative;
    z-index: 2;
}

/* ══════════════════════════════════════════════════════════════
   WINE DETAIL
   ══════════════════════════════════════════════════════════════ */

.wine-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    padding: 60px 0;
}

.wine-detail-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--cream-dark);
    box-shadow: var(--shadow-lg);
}

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

.wine-detail-info h1 {
    font-size: 2.4rem;
    color: var(--wine-deep);
    margin-bottom: 12px;
}

.wine-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}

.wine-spec {
    padding: 8px 18px;
    background: var(--cream-dark);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.wine-detail-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 24px 0;
}

.wine-detail-price {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--wine-rich);
    margin: 28px 0;
}

@media (max-width: 768px) {
    .wine-detail {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ══════════════════════════════════════════════════════════════
   RESERVATION
   ══════════════════════════════════════════════════════════════ */

.reservation-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: 0 auto;
}

.reservation-type-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.res-type-tab {
    flex: 1;
    padding: 20px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--cream-mid);
    background: var(--cream);
    cursor: pointer;
    text-align: center;
    transition: all var(--transition);
}

.res-type-tab.active {
    border-color: var(--wine-rich);
    background: rgba(114,47,55,0.05);
}

.res-type-tab h4 {
    font-size: 1rem;
    color: var(--wine-deep);
    margin-bottom: 4px;
}

.res-type-tab p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.wine-select-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.wine-select-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--cream-mid);
    background: var(--cream);
    transition: all var(--transition);
}

.wine-select-item:has(input:checked),
.wine-select-item.selected {
    border-color: var(--wine-rich);
    background: rgba(114,47,55,0.04);
}

.wine-select-item .wine-name {
    flex: 1;
    font-weight: 500;
    font-size: 0.9rem;
}

.wine-select-item .wine-price-sm {
    font-weight: 600;
    color: var(--wine-rich);
    font-size: 0.85rem;
}

.wine-qty-input {
    width: 60px;
    padding: 6px 8px;
    border: 1px solid var(--cream-mid);
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 0.9rem;
}

/* ══════════════════════════════════════════════════════════════
   MY RESERVATIONS
   ══════════════════════════════════════════════════════════════ */

.reservation-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.reservation-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.reservation-card .res-status {
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pending { background: #fff3e0; color: #e65100; }
.status-confirmed { background: #e8f5e9; color: #2e7d32; }
.status-cancelled { background: #ffebee; color: #c62828; }

/* ══════════════════════════════════════════════════════════════
   FEATURES SECTION
   ══════════════════════════════════════════════════════════════ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.feature-card {
    padding: 36px;
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    text-align: center;
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    background: rgba(114,47,55,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--wine-deep);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */

.footer {
    background: var(--black);
    color: rgba(250,246,240,0.6);
    padding: 80px 0 40px;
}

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

.footer h4 {
    color: var(--wine-gold);
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text-on-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(250,246,240,0.6);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--wine-gold);
}

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

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════════════════════════
   ADMIN STYLES
   ══════════════════════════════════════════════════════════════ */

.admin-layout {
    display: flex;
    min-height: 100vh;
    padding-top: 70px;
}

.admin-sidebar {
    width: 260px;
    background: var(--white);
    border-right: 1px solid var(--cream-dark);
    padding: 32px 0;
    position: fixed;
    top: 70px;
    bottom: 0;
    overflow-y: auto;
}

.admin-sidebar-nav {
    list-style: none;
    padding: 0 16px;
}

.admin-sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all var(--transition);
    margin-bottom: 4px;
}

.admin-sidebar-nav a:hover,
.admin-sidebar-nav a.active {
    background: rgba(114,47,55,0.08);
    color: var(--wine-rich);
}

.admin-sidebar-nav .nav-icon {
    font-size: 1.2rem;
}

.admin-main {
    flex: 1;
    margin-left: 260px;
    padding: 32px 40px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.admin-header h1 {
    font-size: 1.8rem;
    color: var(--wine-deep);
}

/* Admin stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.stat-card .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--wine-rich);
}

.stat-card .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Admin tables */
.admin-table-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    text-align: left;
    padding: 16px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    background: var(--cream);
    border-bottom: 1px solid var(--cream-mid);
}

.admin-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--cream-dark);
    font-size: 0.9rem;
    vertical-align: middle;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tr:hover td {
    background: var(--cream);
}

.admin-table .thumb {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.admin-table .actions {
    display: flex;
    gap: 8px;
}

/* Admin form */
.admin-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    max-width: 720px;
}

.admin-form .form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.image-preview {
    width: 200px;
    height: 260px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    border: 2px solid var(--cream-mid);
    margin-bottom: 12px;
}

@media (max-width: 1024px) {
    .admin-sidebar { display: none; }
    .admin-main { margin-left: 0; }
}

/* ══════════════════════════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════════════════════════ */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--wine-deep);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--cream-dark);
}

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

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .form-card { padding: 28px; }
    .reservation-form { padding: 28px; }
    .form-row { grid-template-columns: 1fr; }
    .section { padding: 60px 0; }
}

/* ══════════════════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════════════════ */

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ══════════════════════════════════════════════════════════════
   UTILITY
   ══════════════════════════════════════════════════════════════ */

.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }
.d-flex { display: flex; }
.gap-2 { gap: 16px; }
.hidden { display: none; }
