:root {
    --primary-color: #d4a574;
    --secondary-color: #8b6f47;
    --dark-bg: #2c2416;
    --light-bg: #f8f6f3;
    --text-dark: #2c2416;
    --text-light: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--light-bg);
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

.site-header {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-color) 100%);
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    color: white !important;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    gap: 1rem;
}

.navbar-brand:hover {
    transform: scale(1.02);
    color: var(--primary-color) !important;
}

.logo-image {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.navbar-brand:hover .logo-image {
    transform: rotate(-5deg) scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(212, 165, 116, 0.5));
}

.brand-text {
    display: inline-block;
    transition: color 0.3s ease;
}

.navbar-brand:hover .brand-text {
    color: var(--primary-color) !important;
}

.hero-section {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(139, 111, 71, 0.1) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%23d4a574" opacity="0.1"/></svg>');
    animation: float 20s linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100px);
    }
}

.hero-section h1 {
    font-weight: 800;
    color: var(--dark-bg);
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.hero-section .lead {
    color: var(--text-light);
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.join-section {
    background-color: white;
}

.card {
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
}

.card-title {
    color: var(--dark-bg);
    font-weight: 700;
    font-size: 2rem;
}

.card a {
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.card a:hover {
    color: var(--primary-color);
}

.info-box {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(139, 111, 71, 0.05) 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.about-section {
    background-color: var(--light-bg);
}

.about-section h2 {
    color: var(--dark-bg);
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.image-wrapper img {
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.site-footer {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary-color) 100%);
    color: white;
    margin-top: auto;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .about-section .col-lg-6:last-child {
        margin-top: 2rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .logo-image {
        height: 45px;
    }
    
    .brand-text {
        font-size: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Recipes Page Styles */
.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--primary-color);
}

.page-header {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(139, 111, 71, 0.15) 100%);
    border-bottom: 3px solid var(--primary-color);
}

.recipe-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.recipe-card:nth-child(1) { animation-delay: 0.1s; }
.recipe-card:nth-child(2) { animation-delay: 0.2s; }
.recipe-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.recipe-title {
    color: var(--dark-bg);
    font-weight: 700;
    font-size: 2rem;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.recipe-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.recipe-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.recipe-stats .badge {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
    border-radius: 20px;
}

.recipe-section {
    padding: 1.5rem;
    background: rgba(212, 165, 116, 0.03);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.section-title {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-title {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.ingredient-list {
    list-style: none;
    padding-left: 0;
}

.ingredient-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.ingredient-list li::before {
    content: '🍺';
    position: absolute;
    left: 0;
}

.table {
    margin-top: 1rem;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.table thead {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-bg) 100%);
    color: white;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(212, 165, 116, 0.05);
}

.mash-step {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.recipe-quote {
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.08) 0%, rgba(212, 165, 116, 0.08) 100%);
    border-left: 4px solid var(--secondary-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    font-style: italic;
    color: var(--text-light);
}

.recipe-quote p {
    margin-bottom: 1rem;
}

.recipe-quote p:last-child {
    margin-bottom: 0;
}

.brew-note {
    background: rgba(139, 111, 71, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .recipe-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .recipe-stats {
        flex-direction: column;
    }
    
    .recipe-stats .badge {
        display: block;
        text-align: center;
    }
}


/* News Page Styles */
.news-section {
    background-color: var(--light-bg);
}

.news-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.news-item:nth-child(odd) { animation-delay: 0.1s; }
.news-item:nth-child(even) { animation-delay: 0.2s; }

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.news-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-bg) 100%);
    padding: 2rem;
    position: relative;
}

.news-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    padding-right: 120px;
}

.news-date {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.news-body {
    padding: 2rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.news-body p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.news-body p:last-child {
    margin-bottom: 0;
}

.schedule-box {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.08) 0%, rgba(139, 111, 71, 0.08) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
}

.schedule-box h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.schedule-box p {
    margin-bottom: 1rem;
}

.schedule-box strong {
    color: var(--dark-bg);
    font-weight: 600;
}

@media (max-width: 768px) {
    .news-title {
        font-size: 1.4rem;
        padding-right: 0;
        margin-bottom: 1rem;
    }
    
    .news-date {
        position: static;
        display: inline-block;
        margin-top: 1rem;
    }
    
    .news-header {
        padding: 1.5rem;
    }
    
    .news-body {
        padding: 1.5rem;
    }
}



/* Contact Page Styles */
.contact-section {
    background-color: var(--light-bg);
}

.contact-card,
.location-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover,
.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-title {
    color: var(--dark-bg);
    font-weight: 700;
    font-size: 2rem;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.05) 0%, rgba(139, 111, 71, 0.05) 100%);
    border-radius: 12px;
    transition: background 0.3s ease;
}

.contact-item:hover {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(139, 111, 71, 0.1) 100%);
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contact-value {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-value a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.contact-value a:hover {
    color: var(--primary-color);
}

.contact-description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.info-card,
.venue-info {
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.08) 0%, rgba(212, 165, 116, 0.08) 100%);
    border-left: 4px solid var(--secondary-color);
    padding: 1.5rem;
    border-radius: 10px;
}

.info-title {
    color: var(--dark-bg);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.info-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.info-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.info-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.venue-info p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .contact-card,
    .location-card {
        padding: 1.5rem;
    }
    
    .contact-title {
        font-size: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .map-container iframe {
        height: 250px;
    }
}




