/* Main stylesheet - imports all CSS modules */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* Base styles */
@import url('./reset.css');

/* Layout components */
@import url('./header.css');
@import url('./navigation.css');
@import url('./layout.css');

/* Page-specific styles */
@import url('./brands.css');
@import url('./timeline.css');
@import url('./cocktails.css');
@import url('./culture.css');
@import url('./details.css');

/* UI components */
@import url('./components.css');

/* Animations */
@import url('./animations.css');

.history-promo {
    background-color: #ff7236;
    border-radius: 20px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.promo-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-align: center
}

.history-promo-text {
    font-size: 14px;
    color: #fff;
    margin-top: 20px;
    line-height: 1.5;
    text-align: center;
}

.history-btn {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.history-btn:hover {
    background-color: #e5e7eb;
}

/* Aperitivo Intro Section */
.aperitivo-intro {
    padding: 25px 0;
    text-align: center;
}

.aperitivo-intro .section-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    padding: 0 20px;
}

.intro-slider-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.intro-slider-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.intro-slider {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    padding: 5px 20px;
    margin: 0 -20px; /* Compensate for container padding */
}

.intro-card {
    flex: 0 0 140px;
    background-color: #fff;
    border-radius: 16px;
    padding: 15px;
    border: 1px solid #f5f2f2;
    text-align: center;
}

.intro-card-image {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
}

.intro-card-title {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 5px;
}

.intro-card-text {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.4;
    min-height: 34px; /* To align cards with 1 or 2 lines of text */
}

.aperitivo-philosophy {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin-top: 25px;
    padding: 0
}
