/* DaJ Brewery - Main Stylesheet - 2026 Redesign */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;500;600;700&family=Merriweather:wght@300;400;700&family=Satisfy&display=swap');

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== GRAIN TEXTURE OVERLAY ===== */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 9999;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.3rem; }

p { margin-bottom: 1rem; }

a {
    color: var(--color-gold-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}
a:hover { color: var(--color-rust-light); }

.accent-text {
    font-family: var(--font-accent);
    color: var(--color-gold-light);
    font-size: 1.5rem;
    text-transform: none;
    letter-spacing: 0;
}

.section-subtitle {
    font-family: var(--font-accent);
    color: var(--color-gold-light);
    font-size: 1.3rem;
    display: block;
    margin-bottom: 10px;
    text-transform: none;
    letter-spacing: 0;
}

.section-title {
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-dark));
    margin-top: 15px;
}

.section-title.centered::after {
    margin-left: auto;
    margin-right: auto;
}

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

/* ===== ORNAMENTAL DIVIDER ===== */
.ornamental-divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0 auto;
    max-width: 400px;
    padding: 10px 0;
}

.ornamental-divider::before,
.ornamental-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-gold-dark));
    opacity: 0.5;
}

.ornamental-divider::after {
    background: linear-gradient(to left, transparent, var(--color-gold-dark));
}

.ornamental-divider .icon {
    color: var(--color-gold);
    font-size: 0.8rem;
    opacity: 0.6;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--bg-primary);
}
.btn-primary:hover {
    background: var(--color-gold-light);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 162, 78, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}
.btn-outline:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: rgba(200, 162, 78, 0.05);
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--color-gold);
    color: var(--bg-primary);
}
.btn-gold:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 162, 78, 0.3);
}

/* ===== HEADER / NAVIGATION ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-normal);
    padding: 20px 0;
}

.site-header.scrolled {
    padding: 0;
    background: rgba(36, 30, 24, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(200, 162, 78, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Remove unused header-bar container - simpler approach */
.header-bar {
    /* Transparent wrapper, no visible styling */
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
    transition: all var(--transition-normal);
}

/* Hide the unused stripe elements */
.header-left-stripe,
.header-right-stripe {
    display: none;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.logo-frame {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    height: 140px;
    width: auto;
    transition: all var(--transition-normal);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.25))
           drop-shadow(0 0 4px rgba(255, 255, 255, 0.15));
}

.logo img:hover {
    filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.4))
           drop-shadow(0 0 6px rgba(255, 255, 255, 0.25));
}

.scrolled .logo img {
    height: 60px;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2))
           drop-shadow(0 0 3px rgba(255, 255, 255, 0.12));
}

/* Remove the double-ring pseudo-elements - too busy */
.logo-frame::before,
.logo-frame::after {
    display: none;
}

/* Nav dot separators */
.nav-dot {
    color: var(--color-gold);
    font-size: 0.35rem;
    opacity: 0.4;
    list-style: none;
}

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

.main-nav a {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary);
    position: relative;
    padding: 8px 12px;
    transition: color var(--transition-fast);
}

.main-nav a:hover {
    color: var(--color-gold-light);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 12px;
    right: 12px;
    width: auto;
    height: 1px;
    background: var(--color-gold);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

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

nav {
    order: 3;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-normal);
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-primary);
}

/* Radial glow spotlights on hero */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(200, 162, 78, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(165, 81, 65, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(61, 31, 61, 0.08) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.35) saturate(0.8);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
}

.hero-logo {
    width: clamp(140px, 18vw, 220px);
    height: auto;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.3s both;
    filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.5));
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    margin-bottom: 10px;
    animation: fadeInUp 1s ease 0.5s both;
    letter-spacing: 6px;
}

.hero .accent-text {
    font-size: clamp(1.3rem, 3vw, 2rem);
    margin-bottom: 15px;
    animation: fadeInUp 1s ease 0.7s both;
}

.hero p {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 550px;
    margin: 0 auto 30px;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero .btn {
    animation: fadeInUp 1s ease 0.9s both;
    margin: 0 8px;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(transparent, var(--bg-primary));
    z-index: 1;
}

/* Slide indicators */
.hero-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.hero-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.hero-indicators button.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(200, 162, 78, 0.4);
}

/* ===== SECTIONS ===== */
section {
    padding: var(--section-padding);
    position: relative;
}

/* Alternate section backgrounds for visual rhythm */
.section-dark {
    background: var(--bg-secondary);
}

.section-pattern {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8a24e' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Radial glow for sections */
.section-glow {
    position: relative;
}
.section-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(200, 162, 78, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    overflow: hidden;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(200, 162, 78, 0.04) 0%, transparent 50%),
        var(--bg-secondary);
}

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

.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(200, 162, 78, 0.2);
    border-radius: var(--border-radius);
    z-index: -1;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
}

.about-quote {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    color: var(--color-gold-light);
    margin: 30px 0;
    padding-left: 30px;
    border-left: 2px solid var(--color-gold);
}

/* ===== BEERS SECTION ===== */
.beers-section {
    overflow: hidden;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(200, 162, 78, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(165, 81, 65, 0.03) 0%, transparent 50%),
        var(--bg-primary);
}

.beers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--gap);
    margin-top: 50px;
}

/* Glassmorphism beer cards */
.beer-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid var(--glass-border);
}

.beer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
                0 0 40px rgba(200, 162, 78, 0.06);
    border-color: var(--glass-border-hover);
}

.beer-card-image {
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(200, 162, 78, 0.04) 0%, transparent 70%);
}

.beer-card-image img {
    max-height: 220px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
}

.beer-card:hover .beer-card-image img {
    transform: scale(1.05) rotate(-2deg);
}

.beer-card-color-bar {
    height: 2px;
    width: 100%;
    opacity: 0.6;
}

.beer-card-body {
    padding: 20px;
    text-align: center;
}

.beer-card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.beer-card-style {
    font-family: var(--font-accent);
    color: var(--color-gold-light);
    font-size: 1rem;
    margin-bottom: 10px;
    display: block;
}

.beer-card-body p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.beer-card-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--glass-border);
}

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

.beer-stat-value {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-gold-light);
    display: block;
}

.beer-stat-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* ===== BEERCRM SECTION ===== */
.beercrm-section {
    position: relative;
    overflow: hidden;
    background: var(--bg-secondary);
}

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

.beercrm-features {
    list-style: none;
    margin: 30px 0;
}

.beercrm-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.beercrm-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--color-teal);
    font-weight: bold;
}

.beercrm-icon {
    font-size: 4rem;
    color: var(--color-teal);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background: var(--glass-bg);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    overflow: hidden;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(200, 162, 78, 0.04) 0%, transparent 50%),
        var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition-fast), background var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(200, 162, 78, 0.03);
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    accent-color: var(--color-gold);
}

.form-checkbox label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: none;
    letter-spacing: 0;
}

.form-message {
    padding: 12px 16px;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(110, 184, 179, 0.1);
    border: 1px solid rgba(110, 184, 179, 0.3);
    color: var(--color-teal);
}

.form-message.error {
    display: block;
    background: rgba(165, 81, 65, 0.1);
    border: 1px solid rgba(165, 81, 65, 0.3);
    color: var(--color-rust-light);
}

.contact-info {
    padding: 40px;
    background: var(--glass-bg);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.contact-info h3 {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    background: rgba(200, 162, 78, 0.1);
    border: 1px solid rgba(200, 162, 78, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-gold-light);
    font-size: 1.1rem;
}

.contact-item-text h4 {
    font-size: 1rem;
    margin-bottom: 3px;
    text-transform: none;
    letter-spacing: 0;
}

.contact-item-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Newsletter */
.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-family: var(--font-body);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-gold);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--bg-secondary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold-dark) 30%, var(--color-gold-dark) 70%, transparent);
    opacity: 0.3;
}

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

.footer-brand .logo {
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--color-gold-light);
}

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

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

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

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

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: all var(--transition-normal);
}

.social-links a:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: rgba(200, 162, 78, 0.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--text-secondary);
}

.footer-bottom .legal-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

/* ===== CONTENT PAGE ===== */
.content-page {
    padding-top: calc(var(--header-height) + 60px);
    min-height: 80vh;
}

.content-page .page-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 60px 0;
    background:
        radial-gradient(ellipse at 50% 80%, rgba(200, 162, 78, 0.04) 0%, transparent 50%),
        var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.content-page .page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.content-page .page-content h2 {
    font-size: 2rem;
    margin: 40px 0 15px;
}

.content-page .page-content h3 {
    font-size: 1.4rem;
    margin: 30px 0 12px;
    color: var(--color-gold-light);
}

.content-page .page-content p {
    color: var(--text-secondary);
}

.content-page .page-content ul,
.content-page .page-content ol {
    color: var(--text-secondary);
    padding-left: 20px;
    margin-bottom: 1rem;
}

.content-page .page-content li {
    margin-bottom: 8px;
}

.content-page .page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.content-page .page-content th,
.content-page .page-content td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.content-page .page-content th {
    background: var(--bg-tertiary);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.content-page .page-content td {
    color: var(--text-secondary);
}

.content-page .page-content a {
    color: var(--color-teal);
}

/* ===== BEER DETAIL PAGE ===== */
.beer-detail {
    padding-top: calc(var(--header-height) + 40px);
    min-height: 80vh;
}

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

.beer-detail-image {
    text-align: center;
}

.beer-detail-image img {
    max-height: 450px;
    width: auto;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
}

.beer-detail-info h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 5px;
}

.beer-detail-info .beer-style {
    font-family: var(--font-accent);
    color: var(--color-gold-light);
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: block;
}

.beer-detail-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    padding: 25px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.beer-detail-stat {
    text-align: center;
}

.beer-detail-stat .value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold-light);
    display: block;
}

.beer-detail-stat .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.beer-detail-description {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.beer-detail-description p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

.beer-detail-back {
    text-align: center;
    padding-bottom: 80px;
}

/* ===== 404 PAGE ===== */
.page-404-content {
    padding-top: calc(var(--header-height) + 80px);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-404-content h1 {
    font-size: 8rem;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-404-content h2 {
    margin-bottom: 20px;
}

.page-404-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Parallax */
.parallax-bg {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* ===== HERO BACKGROUNDS ===== */
.hero-bg-brewery {
    background: url('/images/hero/brewery-bg.jpg') center/cover no-repeat;
}

.hero-bg-gold {
    background: url('/images/hero/gold-fenix-bg.jpg') center/cover no-repeat;
}

.hero-bg-red {
    background: url('/images/hero/red-fenix-bg.jpg') center/cover no-repeat;
}
