/* Fonts */
@font-face {
    font-family: 'GT Pressura';
    src: url('../../assets/fonts/GT Pressura/GT-Pressura-Light-Trial.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'GT Pressura';
    src: url('../../assets/fonts/GT Pressura/GT-Pressura-Regular-Trial.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'GT Pressura';
    src: url('../../assets/fonts/GT Pressura/GT-Pressura-Medium-Trial.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'GT Pressura';
    src: url('../../assets/fonts/GT Pressura/GT-Pressura-Bold-Trial.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'GT Pressura';
    src: url('../../assets/fonts/GT Pressura/GT-Pressura-Black-Trial.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

/* Variables */
:root {
    --color-primary: #E63946;
    --color-primary-dark: #C62836;
    --color-secondary: #F4A261;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-bg: #FFFFFF;
    --color-bg-light: #F8F8F8;
    --color-footer: #1A1A1A;
    --font-family: 'GT Pressura', sans-serif;
    --container-width: 1200px;
    --header-height: 80px;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1),
                transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

body {
    font-family: var(--font-family);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

html, body {
    max-width: 100vw;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo */
.header__logo-img {
    height: 90px;
    width: auto;
}

.footer__logo-img {
    height: 80px;
    width: auto;
}

.footer__tagline {
    margin-top: 15px;
    font-size: 1rem;
    opacity: 1;
    color: #fff;
    line-height: 1.5;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .footer__brand {
        align-items: flex-start;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--color-bg);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header__container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__nav {
    display: none;
}

.nav__list {
    display: flex;
    gap: 40px;
}

.nav__link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-primary);
    transition: opacity 0.3s;
}

.nav__link:hover,
.nav__link--active {
    opacity: 0.7;
}

.nav__link--active {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Button */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: scale(1.03);
}

.btn:active {
    transform: scale(0.98);
}

.btn--primary {
    background: var(--color-primary);
    color: #fff;
}

.btn--primary:hover {
    background: var(--color-primary-dark);
}

.btn__icon {
    width: 18px;
    height: 18px;
}

/* Mobile Toggle */
.header__mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.header__mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero */
.hero {
    position: relative;
    margin-top: var(--header-height);
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1920 / 700;
    background: #1a1a1a;
}

.hero__slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero__slide {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1s cubic-bezier(0.25, 0.1, 0.25, 1),
                transform 5s cubic-bezier(0.25, 0.1, 0.25, 1);
    cursor: pointer;
}

.hero__slide--active {
    opacity: 1;
    transform: scale(1.05);
}

.hero__dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    cursor: pointer;
    transition: 0.3s;
}

.hero__dot--active {
    background: #fff;
}

@media (min-width: 768px) {
    .hero__dot {
        width: 12px;
        height: 12px;
        border-color: var(--color-primary);
    }

    .hero__dot--active {
        background: var(--color-primary);
    }
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.star {
    color: var(--color-primary);
    font-size: 1.5rem;
}

/* Menu Section */
.menu {
    padding: 60px 0;
    background: var(--color-bg);
}

.menu__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.menu__card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #fff;
    border-radius: 16px;
    padding: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.4s, box-shadow 0.4s;
}

.menu__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.menu__card-title {
    display: block;
    width: 100%;
    background: var(--color-primary);
    color: #fff;
    text-align: center;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
}

.menu__card-body {
    position: relative;
    line-height: 0;
}

.menu__card-img {
    width: 100%;
}

.menu__card-arrow {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: var(--color-primary);
    border-radius: 50%;
    border: 3px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.menu__card-arrow svg {
    width: 18px;
    height: 18px;
}

@media (min-width: 768px) {
    .menu {
        padding: 80px 0;
    }

    .menu__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        max-width: none;
    }

    .menu__card-title {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .menu__grid {
        gap: 30px;
    }

    .menu__card-title {
        padding: 14px 24px;
        font-size: 1.1rem;
    }
}

/* Features */
.features {
    padding: 0 0 60px;
    background: var(--color-bg);
}

.features__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background: #fff;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 10px;
    width: 50%;
    border-right: none;
    border-bottom: 1px solid #eee;
    transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.feature:hover {
    transform: scale(1.02);
}

.feature:nth-child(odd) {
    border-right: 1px solid #eee;
}

.feature:nth-child(3),
.feature:nth-child(4) {
    border-bottom: none;
}

.feature__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
}

.feature__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature__title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 2px;
    line-height: 1.2;
}

.feature__text {
    font-size: 0.7rem;
    color: var(--color-text-light);
    line-height: 1.3;
}

/* Footer */
.footer {
    background: var(--color-footer);
    color: #fff;
    padding: 50px 0;
}

.footer__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    text-align: center;
}


.footer__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

@media (min-width: 768px) {
    .footer__links {
        align-items: flex-start;
    }
}

.footer__links a {
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer__links a:hover {
    opacity: 1;
}

.footer__website a {
    color: #fff;
    font-weight: 500;
}

.footer__social {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .footer__social {
        align-items: flex-start;
    }
}

.footer__social p {
    margin-bottom: 15px;
    font-weight: 500;
}

.footer__social-icons {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
}

.footer__social-icons a {
    width: 44px;
    height: 44px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.footer__social-icons a:hover {
    transform: scale(1.1);
}

.footer__social-icons a:hover {
    background: #fff;
    color: var(--color-footer);
}

.footer__social-icons svg {
    width: 20px;
    height: 20px;
}

.footer__foody-img {
    height: 60px;
    width: auto;
}

/* Responsive - Tablet */
@media (min-width: 768px) {
    .header__mobile-toggle {
        display: none;
    }

    .header__nav {
        display: block;
    }

    .menu__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .features__grid {
        border-radius: 50px;
        padding: 25px 40px;
        flex-wrap: nowrap;
    }

    .feature {
        width: auto;
        padding: 15px 25px;
        gap: 15px;
        border-bottom: none;
        border-right: 1px solid #eee;
    }

    .feature:nth-child(odd) {
        border-right: 1px solid #eee;
    }

    .feature:last-child {
        border-right: none;
    }

    .feature__icon {
        width: 50px;
        height: 50px;
    }

    .feature__title {
        font-size: 1rem;
    }

    .feature__text {
        font-size: 0.85rem;
    }

    .footer__grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        text-align: left;
        align-items: center;
    }

    .footer__social-icons {
        justify-content: flex-start;
    }
}

/* Responsive - Desktop */
@media (min-width: 1024px) {
    .menu__grid {
        gap: 30px;
    }

    .menu__card-label {
        padding: 10px 20px;
        font-size: 1rem;
    }

    .feature__icon {
        width: 50px;
        height: 50px;
    }

    .feature__title {
        font-size: 1.1rem;
    }

    .feature__text {
        font-size: 0.9rem;
    }
}

/* Mobile Menu Open State */
.header--menu-open .header__mobile-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header--menu-open .header__mobile-toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.header--menu-open .header__mobile-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.header__nav--mobile {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.header--menu-open .header__nav--mobile {
    opacity: 1;
    visibility: visible;
}

.header__nav--mobile .nav__list {
    flex-direction: column;
    text-align: center;
    gap: 30px;
}

.header__nav--mobile .nav__link {
    font-size: 1.5rem;
}
