@font-face {
    font-family: "Amarillo";
    src: url("amarillo/Amarillo.otf") format("opentype"),
         url("amarillo/Amarillo.ttf") format("truetype");
}

* {
    margin: 0;
    padding: 0;
}

.hero {
    position: relative;
    width: 100%;
    height: 100dvh;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hamburger {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 100;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    border-radius: 50%;
    backdrop-filter: blur(8px);
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.nav-menu {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    flex-direction: column;
    padding-top: 80px;
    transition: left 0.3s;
    z-index: 99;
}

.hamburger.active ~ .nav-menu {
    left: 0;
}

body {
    transition: margin-left 0.3s;
}

body.menu-open {
    margin-left: 250px;
}

.nav-menu a {
    font-family: "Roboto", sans-serif;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 30px;
    font-size: 18px;
    transition: background 0.2s;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.title {
    position: relative;
    z-index: 1;
    font-family: "Amarillo", sans-serif;
    font-size: 64px;
    color: #ffffff;
    text-align: center;
    padding-top: 80px;
    letter-spacing: 2px;
    font-feature-settings: "liga" 0, "calt" 0;
    -webkit-font-feature-settings: "liga" 0, "calt" 0;
}

.order-btn {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid #ffffff;
    padding: 16px 40px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.order-btn:hover {
    background: #ffffff;
    color: #000000;
}

/* Flavors Section */
.flavors {
    background: #fdf6f0;
    padding: 80px 0;
    box-sizing: border-box;
    overflow: hidden;
}

.flavors-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 60px;
}

.flavors-title {
    font-family: "Roboto", sans-serif;
    font-size: 64px;
    font-weight: 900;
    color: #000000;
    margin-bottom: 12px;
}

.flavors-subtitle {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.45);
}

.flavors-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.flavor-card {
    display: flex;
    align-items: stretch;
    width: 85%;
    min-height: 400px;
}

.flavor-card:nth-child(odd) {
    align-self: flex-start;
    border-radius: 0 24px 24px 0;
}

.flavor-card:nth-child(even) {
    flex-direction: row-reverse;
    align-self: flex-end;
    border-radius: 24px 0 0 24px;
}

.flavor-card {
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.flavor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.flavor-img-wrap {
    flex: 1;
    min-width: 0;
    aspect-ratio: 1;
    overflow: hidden;
}

.flavor-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.flavor-card:hover .flavor-img-wrap img {
    transform: scale(1.05);
}

.flavor-info {
    flex: 1;
    padding: 40px;
}

.flavor-badge {
    font-family: "Roboto", sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000000;
    background: rgba(0, 0, 0, 0.1);
    padding: 5px 14px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 14px;
}

.flavor-info h2 {
    font-family: "Roboto", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

.flavor-info p {
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
}

/* Locations Section */
.locations {
    position: relative;
    min-height: 100vh;
    background: #f5f5f5;
    padding: 80px 60px;
    box-sizing: border-box;
}

.locations-content {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.stores-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.store-card {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.store-card:hover {
    background: #e8e8e8;
    border-color: #999;
}

.store-card.active {
    background: #e0e0e0;
    border-color: #000000;
}

.store-card h2 {
    font-family: "Roboto", sans-serif;
    color: #000000;
    font-size: 22px;
    margin-bottom: 8px;
}

.store-card p {
    font-family: "Roboto", sans-serif;
    color: rgba(0, 0, 0, 0.6);
    font-size: 16px;
    line-height: 1.5;
}

.map-container {
    flex: 1;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.locations-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.locations-title {
    font-family: "Roboto", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    text-align: right;
    line-height: 1.1;
    margin-bottom: 40px;
}

/* Footer */
.footer {
    background: #111111;
    padding: 40px 20px;
    text-align: center;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
}

.footer-socials a {
    color: #ffffff;
    transition: color 0.2s, transform 0.2s;
}

.footer-socials a:hover {
    color: #aaaaaa;
    transform: translateY(-3px);
}

.footer-copy {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

/* Mobile */
@media (max-width: 768px) {
    .title {
        font-size: 40px;
    }

    .order-btn {
        font-size: 14px;
        padding: 14px 36px;
        bottom: 40px;
        letter-spacing: 2px;
    }

    .flavors {
        padding: 40px 20px;
    }

    .flavors-title {
        font-size: 36px;
    }

    .flavors-subtitle {
        font-size: 15px;
    }

    .flavors-grid {
        gap: 30px;
    }

    .flavor-card,
    .flavor-card:nth-child(even) {
        flex-direction: column;
    }

    .flavor-info {
        padding: 20px;
    }

    .flavor-info h2 {
        font-size: 22px;
    }

    .flavor-info p {
        font-size: 14px;
    }

    .locations {
        padding: 40px 20px;
        min-height: auto;
    }

    .locations-content {
        flex-direction: column;
        gap: 30px;
    }

    .locations-title {
        font-size: 40px;
        text-align: center;
        margin-bottom: 20px;
    }

    .map-container {
        width: 100%;
        height: 300px;
        order: 2;
    }

    .locations-right {
        width: 100%;
        order: 1;
    }

    .stores-list {
        width: 100%;
    }

    .store-card {
        padding: 20px;
    }

    .store-card h2 {
        font-size: 18px;
    }

    .store-card p {
        font-size: 14px;
    }
}