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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}




body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

/* Font Faces */
@font-face {
    font-family: 'Syne';
    src: url('https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap') format('woff2'),
         url('https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap') format('woff');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-medium.woff2') format('woff2'),
         url('../fonts/montserrat-medium.woff') format('woff');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Days One';
    src: url('../fonts/days-one-regular.woff2') format('woff2'),
         url('../fonts/days-one-regular.woff') format('woff');
    font-weight: 400;
    font-display: swap;
}

/* Utility Classes */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* 375px */
@media (min-width: 375px) {
    .container {
        padding: 0 1.25rem;
    }
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* 1025px – 1280px */
@media (min-width: 1025px) and (max-width: 1280px) {
    .container {
        padding: 0 2.5rem;
    }
}

/* 1281px – 1600px */
@media (min-width: 1281px) and (max-width: 1600px) {
    .container {
        padding: 0 3rem;
    }
}

/* 1600px+ */
@media (min-width: 1600px) {
    
}

.section {
    padding: 2rem 0;
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
    .section {
        padding: 2.5rem 0;
    }
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .section {
        padding: 3rem 0;
    }
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .section {
        padding: 2rem 0;
    }
}

/* 1025px – 1280px */
@media (min-width: 1025px) and (max-width: 1280px) {
    .section {
        padding: 5rem 0;
    }
}

/* 1281px+ */
@media (min-width: 1281px) {
    .section {
        padding: 6rem 0;
    }
}

.section-title {
    font-family: 'Syne';
    font-weight: 700;
    font-size: 72px;
    line-height: 100%;
    margin-bottom: 1.5rem;
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
    .section-title {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
    }
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .section-title {
        font-size: 3.5rem;
        margin-bottom: 1.75rem;
    }
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .section-title {
        font-size: 4.5rem;
        margin-bottom: 2rem;
    }
}

/* 1025px – 1280px */
@media (min-width: 1025px) and (max-width: 1280px) {
    .section-title {
        font-size: 5.5rem;
        margin-bottom: 2rem;
    }
}

/* 1281px+ */
/* @media (min-width: 1281px) {
    .section-title {
        font-size: clamp(3rem, 8vw, 7.375rem);
        margin-bottom: 2rem;
    }
} */



/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #ff4309;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease-out;
    will-change: opacity;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #333;
    border-top: 3px solid #ff4309;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    will-change: transform;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.header__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    max-width: 1440px;
    margin: 0 auto;
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
    .header__nav {
        padding: 0.75rem 1rem;
    }
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .header__nav {
        padding: 1rem 1.5rem;
    }
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .header__nav {
        padding: 1rem 2rem;
    }
}

/* 1025px+ */
@media (min-width: 1025px) {
    .header__nav {
        padding: 1rem 2rem;
    }
}

.header__logo img {
    height: 40px;
    width: auto;
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
    .header__logo img {
        height: 45px;
    }
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .header__logo img {
        height: 50px;
    }
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .header__logo img {
        height: 60px;
    }
}

/* 1025px – 1280px */
@media (min-width: 1025px) and (max-width: 1280px) {
    .header__logo img {
        height: 70px;
    }
}

/* 1281px+ */
@media (min-width: 1281px) {
    .header__logo img {
        height: 80px;
    }
}

.header__menu {
    display: none;
    list-style: none;
    gap: 1.5rem;
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .header__menu {
        display: flex;
        gap: 1rem;
    }
}

/* 1025px+ */
@media (min-width: 1025px) {
    .header__menu {
        display: flex;
        gap: 2rem;
    }
}

.header__menu a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    transition: color 0.3s ease;
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .header__menu a {
        font-size: 0.95rem;
    }
}

/* 1025px+ */
@media (min-width: 1025px) {
    .header__menu a {
        font-size: 1.125rem;
    }
}

.header__menu a:hover,
.header__menu a:focus {
    color: #ff4309;
    text-decoration: underline;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Language Switcher */
.language-switcher {
    position: relative;
}

.language-switcher__toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.language-switcher__toggle:hover,
.language-switcher__toggle:focus {
    background: #ff4309;
    border-color: #ff4309;
}

.language-switcher__icon {
    transition: transform 0.3s ease;
}

.language-switcher__toggle[aria-expanded="true"] .language-switcher__icon {
    transform: rotate(180deg);
}

.language-switcher__dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #000000;
    border: 1px solid #333;
    border-radius: 4px;
    list-style: none;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.language-switcher__dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-switcher__dropdown button {
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    color: #ffffff;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.language-switcher__dropdown button:hover,
.language-switcher__dropdown button:focus {
    background: #ff4309;
}

/* Social Links */
.header__social {
    display: none;
    gap: 0.75rem;
}

/* 768px+ */
@media (min-width: 768px) {
    .header__social {
        display: flex;
    }
}

.social-link {
    display: block;
    transition: transform 0.3s ease;
}

.social-link:hover,
.social-link:focus {
    transform: scale(1.1);
}

.social-link img {
    width: 31px;
    height: 31px;
    border-radius: 50%;
}

/* Mobile Menu Toggle */
.header__mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10001;
    position: relative;
}

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

.header__mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.header__mobile-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.header__mobile-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.header__mobile-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 280px;
    background: #2a2a2a;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
    .mobile-menu {
        width: 260px;
        padding: 1.5rem 1rem;
    }
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .mobile-menu {
        width: 320px;
        padding: 2rem 1.5rem;
    }
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

/* Close Button */
.mobile-menu__close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: color 0.3s ease;
}

.mobile-menu__close:hover {
    color: #ff4309;
}

/* Language Flags */
.mobile-menu__languages {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #444;
}

.mobile-menu__language-flag {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.mobile-menu__language-flag:hover,
.mobile-menu__language-flag.active {
    transform: scale(1.1);
    border-color: #ff4309;
}

/* Menu Items */
.mobile-menu__nav {
    list-style: none;
    margin-bottom: 2rem;
}

.mobile-menu__nav li {
    margin-bottom: 1.5rem;
}

.mobile-menu__nav a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    display: block;
    text-align: center;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.mobile-menu__nav a:hover {
    color: #ff4309;
}

/* Social Icons */
.mobile-menu__social {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 1.5rem;
    border-top: 1px solid #444;
}

.mobile-menu__social a {
    display: block;
    transition: transform 0.3s ease;
}

.mobile-menu__social a:hover {
    transform: scale(1.1);
}

.mobile-menu__social img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

/* Body scroll lock when menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    height: calc(100vh - 80px);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    contain: layout style;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

.hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    will-change: transform;
}

.hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.hero__card {
    background: rgba(255, 67, 9, 0.9);
    border-radius: 150px 150px 0 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    height: 640px;
    width: 563px;
    margin-right: 2rem;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .hero {
        justify-content: center;
    }
    
    .hero__card {
        width: 320px;
        height: 500px;
        margin: 0;
        border-radius: 160px 160px 0 0;
    }
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero__card {
        width: 450px;
        height: 550px;
        border-radius: 225px 225px 0 0;
    }
}

/* 1025px – 1280px */
@media (min-width: 1025px) and (max-width: 1280px) {
    .hero__card {
        width: 550px;
        height: 600px;
        border-radius: 275px 275px 0 0;
    }
}

/* 1281px+ */
@media (min-width: 1281px) {
    .hero__card {
        width: 650px;
        height: 650px;
        border-radius: 325px 325px 0 0;
    }
}

.hero__card-logo {
    margin-bottom: 2rem;
}

.hero__card-logo img {
    height: 115px;
    width: 493px;
    height: auto;
}

/* 768px+ */
@media (max-width: 768px) {
    .hero__card-logo img {
        max-width: 250px;
    }
}

/* 1025px+ */
@media (max-width: 1025px) {
    .hero__card-logo img {
        max-width: 270px;
    }
}

@media (min-width: 1025px){
    .hero__card-logo{
        position: relative;
        bottom: 10px;
    }

}

.hero__cta {
    margin-bottom: 2rem;
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero__cta:hover,
.hero__cta:focus {
    background: #ffffff;
    color: #ff4309;
    transform: translateY(-2px);
}

.hero__divider {
    width: 80%;
    height: 1px;
    background: #ffffff;
    margin: 1rem 0;
}

.hero__address {
    font-family: 'Syne', sans-serif;
    font-size: 1.125rem;
    color: #ffffff;
    font-style: normal;
    margin-top: 1rem;
}

/* 768px+ */
@media (min-width: 768px) {
    .hero__address {
        font-size: 1.25rem;
    }
}

/* 1025px+ */
@media (min-width: 1025px) {
    .hero__address {
        font-size: 1.5rem;
    }
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6rem;
    font-family: 'Syne';
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    line-height: 1;
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
    .btn {
        font-size: 1.1rem;
        padding: 0.8rem 1.6rem;
    }
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .btn {
        font-size: 1.3rem;
        padding: 0.9rem 1.8rem;
    }
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .btn {
        font-size: 1.5rem;
        padding: 1rem 2rem;
    }
}

/* 1025px – 1280px */
@media (min-width: 1025px) and (max-width: 1280px) {
    .btn {
        font-size: 2rem;
        padding: 1.2rem 2.2rem;
    }
}

/* 1281px+ */
@media (min-width: 1281px) {
    .btn {
        font-size: 29px;
        padding: 1rem 2rem;
        border-radius: 6rem;
    }
}

.btn--outline {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}

.btn--outline:hover,
.btn--outline:focus {
    background: #ffffff;
    color: #000000;
}

.btn--primary {
    background: #ff4309;
    color: #ffffff;
    box-shadow: inset 0px 4px 23px rgba(0, 0, 0, 0.25);
}

.btn--primary:hover,
.btn--primary:focus {
    background: #e63a08;
    transform: translateY(-2px);
}

.btn--large {
    padding: 1.5rem 2.5rem;
    font-size: 1.5rem;
    border-radius: 2rem;
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
    .btn--large {
        padding: 1.2rem 2rem;
        font-size: 1.3rem;
    }
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .btn--large {
        padding: 1.4rem 2.2rem;
        font-size: 1.5rem;
    }
}


/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .btn--large {
        padding: 1.8rem 2.8rem;
        font-size: 2rem;
        border-radius: 3rem;
    }
}

/* 1025px – 1280px */
@media (min-width: 1025px) and (max-width: 1280px) {
    .btn--large {
        padding: 2.5rem 3.5rem;
        font-size: 3.5rem;
        border-radius: 4.5rem;
    }
}

/* 1281px+ */
@media (min-width: 1281px) {
    .btn--large {
        padding: 3rem 4rem;
        font-size: 4.5rem;
        border-radius: 5.6rem;
    }
}

.btn--dark {
    background: rgba(255, 67, 9, 0.9);
    color: #ffffff;
    box-shadow: inset 13px 16px 23px rgba(0, 0, 0, 0.25), inset -10px -9px 23px rgba(0, 0, 0, 0.25);
}

.btn--dark:hover,
.btn--dark:focus {
    background: rgba(0, 0, 0, 0.6);
}

.btn--small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 1rem;
    border: 2px solid #ffffff;
    background: transparent;
    color: #ffffff;
}

.btn--small:hover,
.btn--small:focus {
    background: #ffffff;
    color: #000000;
}

/* About Section */
.about {
    background: #000000;
}

.about__content {
    display: grid;
    gap: 2rem;
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .about__content {
        grid-template-columns: auto 1fr;
        gap: 8rem;
        align-items: start;
    }
}

/* 1025px+ */
@media (min-width: 1025px) {
    .about__content {
        grid-template-columns: auto 1fr;
        gap: 20rem;
        align-items: start;
    }
}

.about__divider {
    width: 80%;
    height: 1px;
    background: #ffffff;
    margin-top: 50px;
    margin: 1rem auto;
}

.about__title {
    color: #ffffff;
}

.about__text {
    font-family: 'Syne';
    font-size: 1rem;
    line-height: 1.4;
    color: #ffffff;
    max-width: 740px;
    font-weight: 400;
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
    .about__text {
        font-size: 1.05rem;
        line-height: 1.5;
    }
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .about__text {
        font-size: 1.1rem;
        line-height: 1.6;
    }
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .about__text {
        font-size: 1.3rem;
        line-height: 1.7;
    }
}

/* 1025px – 1280px */
@media (min-width: 1025px) and (max-width: 1280px) {
    .about__text {
        font-size: 1.5rem;
        line-height: 1.8;
    }
}

/* 1281px+ */
@media (min-width: 1281px) {
    .about__text {
        font-size: 1.625rem;
        line-height: 1.8;
    }
}

/* What's On Section */
.whats-on {
    background: #000000;
}

.whats-on .section-title {
    margin-bottom: 3rem;
}

/* 768px+ */
@media (min-width: 768px) {
    .whats-on .section-title {
        margin-bottom: 4rem;
    }
}

/* Event Styles */
.event {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 4rem;
    align-items: center;
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
    .event {
        gap: 1.5rem;
        margin-bottom: 4rem;
    }
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .event {
        gap: 2rem;
        margin-bottom: 5rem;
    }
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .event {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        margin-bottom: 5rem;
    }
    
    .event--image-right {
        direction: rtl;
    }
    
    .event--image-right > * {
        direction: ltr;
    }
}

/* 1025px+ */
@media (min-width: 1025px) {
    .event {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        margin-bottom: 4rem;
    }
    
    .event--image-right {
        direction: rtl;
    }
    
    .event--image-right > * {
        direction: ltr;
    }
}

.event__image1 img {
    width: 72%;
    padding-left: 1%;
    border-radius: 8px;
}
.event__image2 img {
    width: 100%;
    border-radius: 8px;
}

.event__content {
    padding: 1rem 0;
}

.event__type {
    font-family: 'Syne';
    font-weight: 400;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
    .event__type {
        font-size: 1.6rem;
    }
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .event__type {
        font-size: 1.8rem;
    }
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .event__type {
        font-size: 2.5rem;
    }
}

/* 1025px – 1280px */
@media (min-width: 1025px) and (max-width: 1280px) {
    .event__type {
        font-size: 3.5rem;
    }
}

/* 1281px+ */
@media (min-width: 1281px) {
    .event__type {
        font-size: 4.25rem;
    }
}

.event__title {
    font-family: 'Syne';
    font-weight: 400;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
    .event__title {
        font-size: 1.9rem;
        margin-bottom: 1.5rem;
    }
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .event__title {
        font-size: 2.2rem;
        margin-bottom: 1.7rem;
    }
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .event__title {
        font-size: 2.8rem;
        margin-bottom: 2rem;
    }
}

/* 1025px – 1280px */
@media (min-width: 1025px) and (max-width: 1280px) {
    .event__title {
        font-size: 3.5rem;
        margin-bottom: 2rem;
    }
}

/* 1281px+ */
@media (min-width: 1281px) {
    .event__title {
        font-size: 4.1875rem;
        margin-bottom: 2rem;
    }
}

.event__schedule,
.event__time {
    font-family: 'Syne';
    font-weight: 400;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
    .event__schedule,
    .event__time {
        font-size: 1.25rem;
    }
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .event__schedule,
    .event__time {
        font-size: 1.35rem;
    }
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .event__schedule,
    .event__time {
        font-size: 1.7rem;
    }
}

/* 1025px – 1280px */
@media (min-width: 1025px) and (max-width: 1280px) {
    .event__schedule,
    .event__time {
        font-size: 2rem;
    }
}

/* 1281px+ */
@media (min-width: 1281px) {
    .event__schedule,
    .event__time {
        font-size: 2.25rem;
    }
}

.event__content .btn {
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
    .event__content .btn {
        margin-top: 1.5rem;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .event__content .btn {
        margin-top: 1.7rem;
        padding: 1.1rem 2.1rem;
        font-size: 1.1rem;
    }
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .event__content .btn {
        margin-top: 2rem;
        padding: 1.3rem 2.5rem;
        font-size: 1.3rem;
        position: relative;
        top: 5px;
    }
}

/* 1025px – 1280px */
@media (min-width: 1025px) and (max-width: 1280px) {
    .event__content .btn {
        margin-top: 2rem;
        padding: 1.7rem 3.5rem;
        font-size: 1.8rem;
        position: relative;
        top: 8px;
    }
}

/* 1281px+ */
@media (min-width: 1281px) {
    .event__content .btn {
        padding: 2rem 4rem;
        font-size: 2.25rem;
        position: relative;
        top: 10px;
    }
}

/* Promotion Section */
.promotion {
    background: #000000;
    text-align: center;
}

.promotion__title {
    font-family: 'Syne';
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
    .promotion__title {
        font-size: 2.2rem;
        margin-bottom: 2.2rem;
    }
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .promotion__title {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .promotion__title {
        font-size: 3rem;
        margin-bottom: 2.8rem;
    }
}

/* 1025px – 1280px */
@media (min-width: 1025px) and (max-width: 1280px) {
    .promotion__title {
        font-size: 3.5rem;
        margin-bottom: 3rem;
    }
}

/* 1281px+ */
@media (min-width: 1281px) {
    .promotion__title {
        font-size: clamp(2rem, 6vw, 4.175rem);
        margin-bottom: 3rem;
    }
}

.promotion__highlight {
    color: #ff4309;
}

.promotion__cta {
    border: 4px solid #ff4309;
    background: transparent;
    color: #ffffff;
}

.big{
    height: 990px;
}

.mid{
    height: 475px;
}

.promotion__cta:hover,
.promotion__cta:focus {
    background: rgba(255, 67, 9, 0.2);
}

/* Gallery Section */
.gallery {
    background: #000000;
    text-align: center;
}

.gallery__grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
    padding:15px;
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 1.5rem;
    }
}

/* 1025px+ */
@media (min-width: 1025px) {
    .gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 2rem;
    }
}

.gallery__item {
    overflow: hidden;
    border-radius: 8px;
}

.gallery__item--large {
    grid-row: 1 / -1;
}

/* Mobile - reset large item */
@media (max-width: 767px) {
    .gallery__item--large {
        grid-row: auto;
    }
}

.gallery__item img {
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery__item:hover img {
    transform: scale(1.05);
}

@media(max-width: 1281px){
    .gallery__item .mid{
        width: 468px;
        height: 449px;
    }
}

@media(max-width: 1283px){
    .gallery__item .mid{
        height: 400px;
    }
}

@media(max-width:1024px){
    .gallery__item .mid{
        height: 388px;
    }
}

@media(max-width:768px){
    .gallery__item .mid{
        height: 274px;
    }
}

/* Review Section */
.review {
    background: #000000;
}

.review__card {
    background: transparent;
    border: none;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
}

/* 481px+ */
@media (min-width: 481px) {
    .review__card {
        padding: 2rem;
    }
}

.review__avatar {
    margin-bottom: 1.5rem;
}

/* 481px+ */
@media (min-width: 481px) {
    .review__avatar {
        margin-bottom: 2rem;
    }
}

.review__avatar img {
    width: 120px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
    .review__avatar img {
        width: 130px;
        height: 110px;
    }
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .review__avatar img {
        width: 150px;
        height: 125px;
    }
}

/* 768px+ */
@media (min-width: 768px) {
    .review__avatar img {
        width: 172px;
        height: 144px;
    }
}

.review__name {
    font-family: 'Days One';
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
    .review__name {
        font-size: 1.6rem;
        margin-bottom: 1.6rem;
    }
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .review__name {
        font-size: 1.8rem;
        margin-bottom: 1.8rem;
    }
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .review__name {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

/* 1025px+ */
@media (min-width: 1025px) {
    .review__name {
        font-size: 32px;
        margin-bottom: 2rem;
    }
}

.review__divider {
    width: 100%;
    height: 1px;
    background: #ffffff;
    margin: 1.5rem 0;
}

/* 481px+ */
@media (min-width: 481px) {
    .review__divider {
        margin: 2rem 0;
    }
}

.review__text {
    font-family: 'Syne';
    font-weight: 400;
    font-size: 24px;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 1.5rem;
    max-width: 1058px;
    margin-left: auto;
    margin-right: auto;
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
    .review__text {
        font-size: 1.1rem;
        margin-bottom: 1.6rem;
    }
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .review__text {
        font-size: 1.2rem;
        margin-bottom: 1.8rem;
    }
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .review__text {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }
}

/* 1025px – 1280px */
@media (min-width: 1025px) and (max-width: 1280px) {
    .review__text {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }
}

/* 1281px+ */
@media (min-width: 1281px) {
    .review__text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

.review__rating {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

/* 481px+ */
@media (min-width: 481px) {
    .review__rating {
        margin-bottom: 3rem;
    }
}

.star {
    color: rgba(255, 67, 9, 0.9);
    font-size: 1.5rem;
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
    .star {
        font-size: 1.6rem;
    }
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .star {
        font-size: 1.8rem;
    }
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .star {
        font-size: 2.2rem;
    }
}

/* 1025px – 1280px */
@media (min-width: 1025px) and (max-width: 1280px) {
    .star {
        font-size: 2.8rem;
    }
}

/* 1281px+ */
@media (min-width: 1281px) {
    .star {
        font-size: 3.3125rem;
    }
}

.review__cta {
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
    .review__cta {
        padding: 1.2rem 2.5rem;
        font-size: 1.3rem;
    }
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .review__cta {
        padding: 1.4rem 2.8rem;
        font-size: 1.5rem;
    }
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .review__cta {
        padding: 1.8rem 3.5rem;
        font-size: 2rem;
    }
}

/* 1025px – 1280px */
@media (min-width: 1025px) and (max-width: 1280px) {
    .review__cta {
        padding: 2.5rem 5rem;
        font-size: 2.8rem;
    }
}

/* 1281px+ */
@media (min-width: 1281px) {
    .review__cta {
        padding: 3rem 6rem;
        font-size: 3.3125rem;
    }
}

/* Booking Section */
.booking {
    background: #000000;
    padding-bottom: 0;
}

.booking__title {
    text-align: center;
    margin-bottom: 3rem;
}

/* 768px+ */
@media (min-width: 768px) {
    .booking__title {
        margin-bottom: 4rem;
    }
}

.booking__form {
    top: -20px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    margin: 0 auto;
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
    .booking__form {
        top: -25px;
        gap: 1.7rem;
    }
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .booking__form {
        top: -30px;
        gap: 2rem;
    }
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .booking__form {
        top: -35px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

/* 1025px+ */
@media (min-width: 1025px) {
    .booking__form {
        display: flex
;
        flex-direction: row;
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
        margin-left: 0rem;
    
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-family: 'Syne';
    font-weight: 500;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
    .form-label {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .form-label {
        font-size: 1.2rem;
        margin-bottom: 0.9rem;
    }
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .form-label {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
}

/* 1025px – 1280px */
@media (min-width: 1025px) and (max-width: 1280px) {
    .form-label {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
}

/* 1281px+ */
@media (min-width: 1281px) {
    .form-label {
        font-size: 1.875rem;
        margin-bottom: 1rem;
    }
}

.form-input {
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 1rem;
    padding: 20px 1.5rem;
    color: #ffffff;
    font-family: 'Syne';
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
    .form-input {
        padding: 1.1rem 1.6rem;
        font-size: 1.05rem;
        border-radius: 1.1rem;
    }
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .form-input {
        padding: 1.2rem 1.7rem;
        font-size: 1.1rem;
        border-radius: 1.2rem;
    }
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .form-input {
        padding: 1.4rem 2rem;
        font-size: 1.3rem;
        border-radius: 1.4rem;
    }
}

/* 1025px – 1280px */
@media (min-width: 1025px) and (max-width: 1280px) {
    .form-input {
        padding: 1.7rem 2.2rem;
        font-size: 1.6rem;
        border-radius: 1.5rem;
    }
}

/* 1281px+ */
@media (min-width: 1281px) {
    .form-input {
        padding: 20px 2.5rem;
        font-size: 1.75rem;
        border-radius: 1.5rem;
    }
}

.form-input:focus {
    outline: none;
    border-color: #ff4309;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-error {
    color: #ff4309;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    min-height: 1.25rem;
}

.booking__submit {
    justify-self: center;
    align-self: center;
    top: -25px;
    position: relative;
    margin-top: 2rem;
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
    .booking__submit {
        top: -30px;
        margin-top: 2.5rem;
        padding: 1.1rem 2.2rem;
        font-size: 1.1rem;
    }
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .booking__submit {
        top: -35px;
        margin-top: 3rem;
        padding: 1.2rem 2.4rem;
        font-size: 1.2rem;
    }
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .booking__submit {
        top: -40px;
        margin-top: 4rem;
        padding: 1.3rem 2.6rem;
        font-size: 1.4rem;
        grid-column: 1 / -1;
    }
}

/* 1025px – 1280px */
@media (min-width: 1025px) and (max-width: 1280px) {
    .booking__submit {
        top: -42px;
        margin-top: 6rem;
        padding: 1rem 15px;
        font-size: 22px;
    }
}

/* 1281px+ */
@media (min-width: 1281px) {
    .booking__submit {
        top: -45px;
        margin-top: 7rem;
        padding: 20px 20px;
        font-size: 26px;
    }
}

/* Restaurant Image */
.restaurant-image {
    width: 100%;
}

.restaurant-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
    .restaurant-image img {
        height: 220px;
    }
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .restaurant-image img {
        height: 250px;
    }
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .restaurant-image img {
        height: 350px;
    }
}

/* 1025px – 1280px */
@media (min-width: 1025px) and (max-width: 1280px) {
    .restaurant-image img {
        height: 450px;
    }
}

/* 1281px+ */
@media (min-width: 1281px) {
    .restaurant-image img {
        height: 507px;
    }
}

/* Footer */
.footer {
    background: #000000;
    padding: 2rem 0 1.5rem;
}

/* 481px+ */
@media (min-width: 481px) {
    .footer {
        padding: 3rem 0 2rem;
    }
}

.footer__content {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .footer__content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .footer__content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

/* 1025px+ */
@media (min-width: 1025px) {
    .footer__content {
        grid-template-columns: repeat(4, 1fr);
        gap: 4rem;
    }
}

.footer__section {
    color: #ffffff;
}

.footer__brand {
    font-family: 'Syne';
    font-weight: 500;
    font-size: 1.8rem;
    color: #ffffff;
    position: relative;
    top: -8px;
    left: 14px;
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
    .footer__brand {
        font-size: 2rem;
    }
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .footer__brand {
        font-size: 2.2rem;
    }
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .footer__brand {
        font-size: 2.5rem;
    }
}

/* 1025px – 1280px */
@media (min-width: 1025px) and (max-width: 1280px) {
    .footer__brand {
        font-size: 3rem;
    }
}

/* 1281px+ */
@media (min-width: 1281px) {
    .footer__brand {
        font-size: 3.4375rem;
    }
}

.footer__menu {
    font-family: 'Syne';
    font-weight: 500;
    font-size: 1.2rem;
    color: #ffffff;
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
    .footer__menu {
        font-size: 1.3rem;
    }
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .footer__menu {
        font-size: 1.4rem;
    }
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .footer__menu {
        font-size: 1.6rem;
    }
}

/* 1025px – 1280px */
@media (min-width: 1025px) and (max-width: 1280px) {
    .footer__menu {
        font-size: 2rem;
    }
}

/* 1281px+ */
@media (min-width: 1281px) {
    .footer__menu {
        font-size: 28px;
    }
}

.footer__title {
    font-family: 'Syne';
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
    .footer__title {
        font-size: 1.15rem;
        margin-bottom: 1.6rem;
    }
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .footer__title {
        font-size: 1.2rem;
        margin-bottom: 1.7rem;
    }
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .footer__title {
        font-size: 1.4rem;
        margin-bottom: 1.8rem;
    }
}

/* 1025px – 1280px */
@media (min-width: 1025px) and (max-width: 1280px) {
    .footer__title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
}

/* 1281px+ */
@media (min-width: 1281px) {
    .footer__title {
        font-size: 1.8125rem;
        margin-bottom: 2rem;
    }
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

/* 481px+ */
@media (min-width: 481px) {
    .footer__contact {
        margin-bottom: 2rem;
    }
}

.footer__link {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Syne';
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
    .footer__link {
        font-size: 1rem;
    }
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .footer__link {
        font-size: 1.05rem;
    }
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .footer__link {
        font-size: 1.1rem;
    }
}

/* 1025px+ */
@media (min-width: 1025px) {
    .footer__link {
        font-size: 1.125rem;
    }
}

.footer__link:hover,
.footer__link:focus {
    color: #ff4309;
}

.footer__social-title {
    font-family: 'Syne';
    font-weight: 500;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
    .footer__social-title {
        font-size: 1.05rem;
    }
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .footer__social-title {
        font-size: 1.1rem;
    }
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .footer__social-title {
        font-size: 1.3rem;
    }
}

/* 1025px – 1280px */
@media (min-width: 1025px) and (max-width: 1280px) {
    .footer__social-title {
        font-size: 1.6rem;
    }
}

/* 1281px+ */
@media (min-width: 1281px) {
    .footer__social-title {
        font-size: 1.85rem;
    }
}

.footer__social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer__social-links a {
    transition: transform 0.3s ease;
}

.footer__social-links a:hover,
.footer__social-links a:focus {
    transform: scale(1.1);
}

.footer__reviews {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-platform {
    display: nowrap;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.review-platform span {
    font-family: 'Syne';
    font-weight: 500;
    font-size: 0.9rem;
    color: #ffffff;
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
    .review-platform span {
        font-size: 0.95rem;
    }
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .review-platform span {
        font-size: 1rem;
    }
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .review-platform span {
        font-size: 1.2rem;
    }
}

/* 1025px – 1280px */
@media (min-width: 1025px) and (max-width: 1280px) {
    .review-platform span {
        font-size: 1.4rem;
    }
}

/* 1281px+ */
@media (min-width: 1281px) {
    .review-platform span {
        font-size: 1.58125rem;
    }
}

.footer__hours {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__hours p {
    font-family: 'Syne';
    font-weight: 500;
    font-size: 0.95rem;
    color: #ffffff;
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
    .footer__hours p {
        font-size: 1rem;
    }
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .footer__hours p {
        font-size: 1.05rem;
    }
}

.footerlogo{
   justify-self: center;
    align-self: center;
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .footer__hours p {
        font-size: 1.1rem;
    }
}

/* 1025px+ */
@media (min-width: 1025px) {
    .footer__hours p {
        font-size: 1.125rem;
    }
}

.footer__divider {
    width: 100%;
    height: 1px;
    background: #ffffff;
    margin-top: 2rem;
}

/* 481px+ */
@media (min-width: 481px) {
    .footer__divider {
        margin-top: 3rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
    will-change: transform, opacity;
}

/* Lazy Loading */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
    border-radius: 8px 8px 8px 8px
}

/* Focus Styles */
*:focus {
    outline: 2px solid #ff4309;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .btn--outline {
        border-width: 3px;
    }
    
    .form-input {
        border-width: 3px;
    }
}

/* Print Styles */
@media print {
    .header,
    .loading-screen,
    .btn {
        display: none !important;
    }
    
    body {
        color: #000000 !important;
        background: #ffffff !important;
    }
    
    .section {
        page-break-inside: avoid;
    }
}




.review-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-text {
  font-size: 20px;
  color: white;
}

.review-icon {
  width: 30px; /* Подкорректируйте под нужный размер */
  height: 30px;
}

.review-button {
  padding: 8px 16px;
  background: transparent;
  border: 2px solid white;
  color: white;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
}