/* Distillery Page Styles */
.distillery-page {
    min-height: 100vh;
}

.distillery-header {
    position: relative;
    margin-bottom: 3rem;
}

.header-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

.header-content {
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 2rem 0;
    margin-top: -100px;
    position: relative;
    z-index: 1;
}

.header-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
}

.distillery-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    margin-top: 2rem;
}

.main-content section {
    margin-bottom: 3rem;
}

.description-section h2,
.tours-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.description-section p {
    line-height: 1.8;
    color: #666;
    font-size: 1.1rem;
}

.tours-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tour-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.tour-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.tour-info {
    padding: 1.5rem;
}

.tour-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.tour-info p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.tour-details {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.tour-details span {
    padding: 0.5rem 1rem;
    background: #f5f5f5;
    border-radius: 6px;
    font-size: 0.9rem;
}

.tour-details .price {
    background: #2e4573;
    color: white;
    font-weight: 600;
}

.sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
}

.info-card p {
    margin-bottom: 0.75rem;
    color: #666;
    line-height: 1.6;
}

.info-card a {
    color: #2e4573;
    text-decoration: none;
}

.info-card a:hover {
    text-decoration: underline;
}

@media (max-width: 968px) {
    .distillery-content {
        grid-template-columns: 1fr;
    }
    
    .tour-card {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
    }
}
