/* RESET E GENERALI */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    background-color: #000;
    color: #fff;
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    padding: 0;
    position: relative;
}

.header {
    text-align: center;
    padding: 20px 0 0 0;
    margin-bottom: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.logo {
    max-width: 120px;
    height: auto;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px 60px 20px;
}

.badge {
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
}

.badge-icon {
    font-size: 18px;
}

.badge-text {
    color: #fff;
    font-size: 16px;
    font-weight: 400;

}

.title {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: #ffb300;
}

.description {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 300;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 350px;
    margin-bottom: 25px;
}

.buttons a {
    display: block;
    width: 100%;
}

.btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: #ffb300;
    color: #000;
}

.btn-primary:hover {
    background-color: #ffb300;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #ffb300;
    border: 2px solid #ffb300;
}

.btn-secondary:hover {
    background-color: rgba(255, 179, 0, 0.1);
    transform: translateY(-2px);
}

.menu-link {
    color: #fff;
    font-size: 14px;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.menu-link:hover {
    color: #ffb300;
}

/* ===== MENU SECTION ===== */
.menu-section {
    background-color: #000;
    min-height: 100vh;
    padding: 40px 20px 100px 20px;
}

.menu-header {
    text-align: center;
    margin-bottom: 40px;
}

.menu-title {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.menu-subtitle {
    color: #999;
    font-size: 16px;
    font-weight: 300;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 50px;
}

.category-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-image {
    width: 100%;
    height: 140px;
    background-size: cover;
    background-position: center;
    background-color: #333;
}

.category-content {
    padding: 15px;
}

.category-title {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.category-desc {
    color: #999;
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 12px;
}

.category-btn {
    background: none;
    border: none;
    color: #ffb300;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.category-btn:hover {
    color: #ffb300;
}

/* ===== DRINK SECTION ===== */
.drink-section {
    margin-top: 40px;
}

.drink-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.drink-title {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    line-height: 1.2;
}

.view-all {
    color: #ffb300;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.view-all:hover {
    color: #ffb300;
}

.featured-drink {
    background-image: url("assets/drink.webp");
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
    min-height: 200px;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.popular-badge {
    background-color: #ffb300;
    color: #000;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.featured-title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.featured-desc {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
}

/* Carousel Container */
.carousel-container {
    max-width: 950px;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    padding: 0 5px;
}

.carousel-wrapper {
    display: flex;
    gap: 10px;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Drink Card */
.drink-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border-radius: 12px;
    padding: 0;
    display: flex;
    gap: 0;
    align-items: stretch;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    min-height: 160px;
}

.drink-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.3);
}

.drink-image {
    width: 140px;
    min-width: 140px;
    height: auto;
    border-radius: 0;
    overflow: hidden;
    flex-shrink: 0;
}

.drink-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.drink-card:hover .drink-image img {
    transform: scale(1.1);
}

.drink-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 20px;
    justify-content: center;
}

.drink-name {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.drink-price {
    color: #ffb300;
    font-size: 22px;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.2);
}

.order-btn {
    background: linear-gradient(135deg, #ffb300, #ffb300);
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
    align-self: flex-start;
}

.order-btn:hover {
    background: linear-gradient(135deg, #ffb300, #ffb300);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.order-btn:active {
    transform: translateY(0);
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ffb300;
    width: 30px;
    border-radius: 5px;
}

.dot:hover {
    background: rgba(255, 215, 0, 0.6);
}

/* ===== EVENTI SECTION ===== */
.eventi-section {
    padding: 60px 0;
    background: black;
    overflow: hidden;
}

.eventi-title {
    color: white;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 900;
    font-style: italic;
    line-height: 1.2;
}

.event-slider {
    max-width: 950px;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    padding: 0 5px;
}

.event-slider-wrapper {
    display: flex;
    gap: 10px;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    padding: 20px;
}

.event-card-inner {
    height: 400px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    border: 1px solid #3a3427;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    transition: all 0.3s ease;
}

.event-card-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 179, 0, 0.15);
}

.event-card-special {
    border: 2px solid #ffb300;
}

.event-badge {
    color: #ffb300;
    font-weight: bold;
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.event-badge-special {
    background: #ffb300;
    color: black;
    padding: 2px 8px;
    border-radius: 5px;
    width: fit-content;
    font-size: 0.7rem;
    margin-bottom: 10px;
}

.event-title {
    color: white;
    margin: 5px 0;
    font-size: 1.2rem;
}

.event-desc {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
}

/* Event Slider Dots */
.event-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.event-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 179, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.event-dot.active {
    background: #ffb300;
    width: 30px;
    border-radius: 5px;
}

.event-dot:hover {
    background: rgba(255, 179, 0, 0.6);
}

/* ===== RESERVATION SECTION ===== */
.reservation-section {
    padding: 60px 16px;
    background: #000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reservation-container {
    width: 100%;
    max-width: 420px;
    background: rgba(24, 22, 16, 0.9);
    border-radius: 24px;
    border: 1px solid rgba(255, 179, 0, 0.2);
    padding: 32px 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.reservation-header,
.reservation-title,
.reservation-subtitle {
    text-align: center;
}

.reservation-title {
    color: #ffb300;
    font-weight: 900;
    font-size: 1.6rem;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.reservation-subtitle {
    color: #9c9689;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Due colonne solo su schermi più larghi */
.two-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.form-row label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #9c9689;
}

.form-input {
    width: 100%;
    max-width: 100%;
    background: #181610;
    border: 1px solid #3a3427;
    border-radius: 10px;
    padding: 12px 14px;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.1s ease;
}

.form-input::placeholder {
    color: #666;
}

.form-input:focus {
    border-color: #ffb300;
    box-shadow: 0 0 0 2px rgba(255, 179, 0, 0.22);
    transform: translateY(-1px);
}

/* Date & select */
.form-input[type="date"] {
    color-scheme: dark;
    color: #fff;
}

/* Placeholder "finto" per i browser che non lo mostrano (es. iOS) */
.form-input[type="date"]:not(:focus):invalid::before {
    content: attr(placeholder);
    color: #666;
}

/* rimuove l'overlay su browser che non lo supportano bene */
.form-input[type="date"]::-webkit-datetime-edit {
    color: inherit;
}

select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffb300' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

/* Contatore persone */
.form-counter {
    background: #181610;
    border: 1px solid #3a3427;
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.counter-label {
    color: #9c9689;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.counter-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.counter-btn {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    border: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.12s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.counter-minus {
    background: #0a0a0a;
    color: #fff;
    border: 1px solid #3a3427;
}

.counter-minus:hover {
    background: #171717;
    border-color: #ffb300;
}

.counter-plus {
    background: #ffb300;
    color: #000;
}

.counter-plus:hover {
    background: #ffc700;
    transform: scale(1.05);
}

.counter-value {
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    min-width: 32px;
    text-align: center;
}

.btn-submit {
    margin-top: 12px;
    width: 100%;
    background: linear-gradient(135deg, #ffb300, #ff9100);
    color: #000;
    border: none;
    padding: 16px;
    border-radius: 14px;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 1px;
    box-shadow: 0 10px 22px rgba(255, 145, 0, 0.35);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(255, 145, 0, 0.45);
    filter: brightness(1.05);
}

.btn-submit:active {
    transform: translateY(0);
    box-shadow: 0 8px 18px rgba(255, 145, 0, 0.35);
}

/* ===== MAP SECTION ===== */
.Title-map {
    text-align: center;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    line-height: 1.2;
    text-transform: uppercase;
}

.map-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border-radius: 16px;
    padding: 0;
    border: 1px solid rgba(255, 215, 0, 0.15);
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    margin: 20px;
}

.map-container:hover {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.map-header {
    padding: 20px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
}

.location-icon {
    color: #ffb300;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.map-title {
    color: #ffb300;
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 4px 0;
}

.map-address {
    color: #bbb;
    font-size: 13px;
    margin: 0;
}

.map-wrapper {
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.info-card {
    background: rgba(42, 42, 42, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(42, 42, 42, 0.8);
    border-color: rgba(255, 215, 0, 0.3);
}

.info-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    color: #ffb300;
    width: 22px;
    height: 22px;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.info-label {
    color: #888;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.info-value {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.directions-btn {
    background: linear-gradient(135deg, #ffb300, #ffb300);
    color: #000;
    border: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.directions-btn:hover {
    background: linear-gradient(135deg, #ffb300, #ffb300);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(255, 215, 0, 0.5);
}

/* ===== CAREERS SECTION SEMPLIFICATA ===== */
.careers-section {
    padding: 80px 20px;
    background: #000;
    position: relative;
    overflow: hidden;
}

.careers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 179, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.careers-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.careers-header {
    text-align: center;
    margin-bottom: 60px;
}

.careers-badge {
    background: linear-gradient(135deg, #ffb300, #ff9100);
    color: #000;
    font-size: 12px;
    font-weight: 800;
    padding: 8px 20px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.careers-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff 0%, #ffb300 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.careers-subtitle {
    color: #999;
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* BENEFITS GRID */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.benefit-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 179, 0, 0.15);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffb300, #ff9100);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 179, 0, 0.4);
    box-shadow: 0 10px 30px rgba(255, 179, 0, 0.2);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffb300;
}

.benefit-desc {
    color: #bbb;
    font-size: 14px;
    line-height: 1.6;
}

/* CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, rgba(255, 179, 0, 0.1) 0%, rgba(255, 145, 0, 0.05) 100%);
    border: 2px solid rgba(255, 179, 0, 0.3);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 15px;
    color: #fff;
}

.cta-description {
    color: #bbb;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #2BE87A, #14A37F);
}

.whatsapp-btn:active {
    transform: translateY(-1px);
}

.whatsapp-icon {
    font-size: 28px;
}

.alternative-contact {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 179, 0, 0.2);
}

.alternative-contact p {
    color: #999;
    font-size: 14px;
    margin-bottom: 15px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.contact-item {
    color: #ffb300;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: #ffc700;
}

/* RESPONSIVE CAREERS */
@media (max-width: 768px) {
    .careers-title {
        font-size: 36px;
    }

    .cta-title {
        font-size: 28px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-btn {
        padding: 16px 32px;
        font-size: 16px;
    }
}

/* ===== FOOTER ===== */
.footer {
    background-color: #0a0a0a;
    border-top: 1px solid #333;
    padding: 60px 20px 40px 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.footer-logo img {
    max-width: 100px;
    height: auto;
}

.footer-info h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-info p {
    color: #999;
    font-size: 14px;
}

.footer-section {
    flex: 0 0 auto;
    min-width: 180px;
}

.footer-section h4 {
    color: #ffb300;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-section p {
    color: #999;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 5px;
}

.footer-social {
    max-width: 1200px;
    margin: 40px auto;
    text-align: center;
}

.footer-social h4 {
    color: #ffb300;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-links a {
    color: #999;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #ffb300;
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 13px;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #999;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffb300;
}

.footer-links span {
    color: #666;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
    .reservation-container {
        padding: 40px 25px;
    }

    .reservation-title {
        font-size: 1.8rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 480px) {
    .reservation-container {
        max-width: 480px;
        padding: 36px 28px;
    }

    .two-cols {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .hero-section {
        padding: 0;
    }

    .logo {
        max-width: 150px;
    }

    .content {
        padding: 0 40px 80px 40px;
    }

    .title {
        font-size: 48px;
    }

    .description {
        font-size: 18px;
    }

    .buttons {
        flex-direction: row;
        max-width: 100%;
        justify-content: center;
    }

    .buttons a {
        flex: 1;
        width: auto;
    }

    .btn {
        padding: 18px 32px;
        font-size: 15px;
        width: 100%;
        flex: 1;
    }

    .menu-section {
        padding: 60px 40px 120px 40px;
    }

    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto 60px auto;
    }

    .category-image {
        height: 180px;
    }

    .drink-section {
        max-width: 1200px;
        margin: 0 auto;
    }

    .event-slider {
        padding: 0;
        max-width: 700px;
        margin: 0 auto;
    }

    .event-slider-wrapper {
        gap: 0;
    }

    .event-card-inner {
        height: 450px;
    }

    .map-container {
        max-width: 900px;
        margin: 20px auto;
    }

    .map-wrapper {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("assets/mobile.webp");
    }
}

@media (min-width: 768px) {
    .hero-section {
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("assets/home.webp");
    }
} 