/* Tavern page specific styles */

/* Hero Section */
.tavern-hero {
    height: 100vh;
    background: linear-gradient(rgba(255, 107, 53, 0.3), rgba(42, 42, 42, 0.6)), 
                url('assets-adrenaland/tavern/25.jpg') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: #ffffff;
}

.tavern-hero .hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #ffffff;
}

.tavern-hero .hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 300;
    opacity: 0.9;
    color: #ffffff;
}

/* Intro Section */
.intro-section {
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(rgba(255, 140, 66, 0.4), rgba(26, 26, 26, 0.6)), 
                url('assets-adrenaland/tavern/30.jpg') center/cover fixed;
    text-align: center;
}

.intro-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
}

.intro-text p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
}

/* Ingredients Section */
.ingredients-section {
    padding: 120px 0;
    background: linear-gradient(rgba(42, 42, 42, 0.7), rgba(255, 107, 53, 0.3)), 
                url('assets-adrenaland/tavern/3.jpg') center/cover fixed;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.ingredient-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    color: #ffffff;
}

.ingredient-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.ingredient-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.ingredient-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent);
}

.ingredient-card p {
    line-height: 1.6;
    opacity: 0.9;
    color: #ffffff;
}

/* Tavern Content Section */
.tavern-content {
    padding: 120px 0;
    background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(255, 107, 53, 0.2)), 
                url('assets-adrenaland/tavern/40.jpg') center/cover fixed;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    color: #ffffff;
}

.info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.info-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.5rem;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.info-icon.cuisine {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
}

.info-icon.experience {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.info-icon.hours {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.info-icon.atmosphere {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.info-icon.location {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent);
    margin: 0;
}

.info-list p {
    margin-bottom: 1rem;
    font-weight: 500;
    color: #ffffff;
}

.info-list .hours-highlight {
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 600;
}

.info-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #ffffff;
    opacity: 0.9;
}

.info-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.8rem;
}

/* Gallery Section */
.gallery-section {
    padding: 120px 0;
    background: linear-gradient(rgba(42, 42, 42, 0.9), rgba(255, 107, 53, 0.3)), 
                url('assets-adrenaland/tavern/50.jpg') center/cover fixed;
}

.gallery-title {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    opacity: 1;
    display: block;
    background-color: rgba(255, 255, 255, 0.1);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(42, 42, 42, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    color: #ffffff;
    font-size: 2rem;
}

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

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(rgba(255, 107, 53, 0.3), rgba(42, 42, 42, 0.6)), 
                url('assets-adrenaland/tavern/20.jpg') center/cover fixed;
    text-align: center;
    color: #ffffff;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.cta-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    margin: 0 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    color: #ffffff;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-color: #ff6b35;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff8c42, #ffb347);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(6, 1fr);
        gap: 1.2rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .tavern-hero {
        background-attachment: scroll;
    }
    
    .intro-section {
        background-attachment: scroll;
        padding: 80px 0;
    }
    
    .ingredients-section {
        background-attachment: scroll;
        padding: 80px 0;
    }
    
    .tavern-content {
        background-attachment: scroll;
        padding: 80px 0;
    }
    
    .gallery-section {
        background-attachment: scroll;
        padding: 80px 0;
    }
    
    .cta-section {
        background-attachment: scroll;
        padding: 80px 0;
    }
    
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .ingredient-card, .info-card {
        padding: 1.5rem;
    }
    
    .info-card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .ingredients-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .ingredient-card {
        padding: 1.5rem 1rem;
    }
    
    .ingredient-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .info-card {
        padding: 1.5rem 1rem;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}
