/* Regular Fonts */
@font-face {
    font-family: 'Aeroport-Regular-Italic';
    src: url('/fonts/Aeroport-regular-italic-trial.otf') format('opentype');
}

/* Medium Fonts */
@font-face {
    font-family: 'Aeroport-Medium';
    src: url('/fonts/Aeroport-medium-trial.otf') format('opentype');
}
@font-face {
    font-family: 'Aeroport-Medium-Italic';
    src: url('/fonts/Aeroport-medium-italic-trial.otf') format('opentype');
}

/* Light Fonts */
@font-face {
    font-family: 'Aeroport-Light';
    src: url('/fonts/Aeroport-light-trial.otf') format('opentype');
}
@font-face {
    font-family: 'Aeroport-Light-Italic';
    src: url('/fonts/Aeroport-light-italic-trial.otf') format('opentype');
}

/* Bold Fonts */
@font-face {
    font-family: 'Aeroport-Bold';
    src: url('/fonts/Aeroport-bold-trial.otf') format('opentype');
}
@font-face {
    font-family: 'Aeroport-Bold-Italic';
    src: url('/fonts/Aeroport-bold-italic-trial.otf') format('opentype');
}

/* Black Fonts */
@font-face {
    font-family: 'Aeroport-Black';
    src: url('/fonts/Aeroport-black.otf') format('opentype');
}
@font-face {
    font-family: 'Aeroport-Black-Italic';
    src: url('/fonts/Aeroport-black-italic.otf') format('opentype');
}

/* Another Font */
@font-face {
    font-family: 'Matura MT Script Capitals', sans-serif;
    src: url('/fonts/MATURASC_1.TTF') format('otf');
}

@font-face {
    font-family: 'Aeroport';
    src: url('/fonts/Aeroport-regular-trial.otf') format('opentype');
}

@font-face {
    font-family: 'Matura MT Script Capitals';
    src: url('/fonts/MATURASC_1.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}
body {
    font-family: 'Aeroport', sans-serif;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /*font-family: 'Aeroport', sans-serif;*/
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* Header Styles */
.header-wrapper {
    background-color: #000000;
    padding: 16px;
    z-index: 999;
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
}

.header .nav-menu {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
}

.header .nav-menu ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.header .nav-menu ul li {
    margin-right: 20px;
    white-space: nowrap;
}

.header .nav-menu ul li:last-child {
    margin-right: 0;
}

.header .nav-menu ul li a {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.header .nav-menu ul li a:hover {
    opacity: 0.8;
}

.header .nav-menu  a.btn {
    padding: 8px 16px;
    border-radius: 8px;
    background-color: #C50009;
    transition: background-color 0.3s ease;
    text-decoration: none;
    color: #FFFFFf;
}

.header .nav-menu  a.btn:hover {
    background-color: #a30007;
    opacity: 1;
}

.header .nav-menu .logo {
    display: flex;
    justify-content: center;
    padding: 0 20px;
    min-width: 207px;
}

.header .nav-menu .logo img {
    width: 207px;
    height: 77px;
}

/* Align left and right navigation sections */
.nav-menu .nav:first-child {
    justify-content: flex-end;
    padding-right: 15px;
}

.nav-menu .nav:last-child {
    justify-content: flex-start;
    padding-left: 15px;
}

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

/* Mobile Header */
.mobile-header {
    display: none;
}

.mobile-nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.mobile-nav-top .logo img {
    width: 150px;
    height: auto;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    width: auto;
    height: 21px;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 48px;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 10px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-47deg) translate(4px, -8px);
}

.mobile-menu {
    position: fixed;
    top: 65px;
    left: 0;
    width: 100%;
    height: calc(100vh - 65px);
    background-color: #000;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-content {
    padding-top: 32px;
    padding-left: 16px;
    padding-right: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-nav-items {
    list-style: none;
}

.mobile-nav-items li {
    margin-bottom: 24px;
}

.mobile-nav-items li a {
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.mobile-order-btn {
    padding-bottom: 88px;
    text-align: center;
}

.mobile-order-btn .btn {
    display: inline-block;
    background-color: #C50009;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #FFFFFF;
    text-decoration: none;
    transition: background-color 0.3s ease;
    width: 100%;
    max-width: 100%;
}

.mobile-order-btn .btn:hover {
    background-color: #a30007;
}

/* Responsive Header Styles */

/* Tablet Styles (1280) */
@media (max-width: 1280px) {
    .header-wrapper {
        padding: 12px;
    }

    .header .nav-menu.desktop-menu .nav{
        margin-right: 16px;
    }

    .header .nav-menu.desktop-menu .nav li:not(:last-child){
        margin-right: 16px;
    }

    .header .nav-menu.desktop-menu ul li a {
        font-size: 14px;
    }

    .header .nav-menu.desktop-menu .logo img {
        width: 180px;
        height: 67px;
    }
}

/* Tablet Styles (1024px) */
@media (max-width: 1024px) {
    .header-wrapper {
        padding: 16px;
    }

    .header .nav-menu.desktop-menu .nav {
        margin-right: 0;
    }

    .header .nav-menu.desktop-menu .nav li:not(:last-child)
    {
        margin-right: 10px;
    }

    .header .nav-menu.desktop-menu ul li a {
        font-size: 12px;
    }

    .header .nav-menu.desktop-menu .logo img {
        width: 120px;
        height: 67px;
    }
}

/* Small Tablet Styles (769px) */
@media (max-width: 769px) {
    .header-wrapper {
        padding: 10px;
    }

    .header .nav-menu.desktop-menu {
        display: none;
    }

    .mobile-header {
        display: block;
    }

    .header .nav-menu.desktop-menu ul li a {
        font-size: 24px;
    }

    .header .nav-menu.desktop-menu .logo img {
        width: 160px;
        height: 60px;
    }
}

/* Mobile Styles (below 768px) */
@media (max-width: 768px) {
    .header-wrapper {
        padding: 12px 16px;
    }

    .header .nav-menu.desktop-menu {
        display: none;
    }

    .mobile-header {
        display: block;
    }

    .mobile-nav-top .logo img {
        width: 130px;
    }

    .mobile-menu .mobile-menu-content .mobile-nav-items {
        text-align: center;
    }

    .mobile-menu .mobile-menu-content .mobile-nav-items li a {
        font-size: 24px;
    }

    .mobile-order-btn .btn {
        font-size: 24px;
        padding: 16px 24px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .mobile-nav-top .logo img {
        width: 120px;
    }

    .mobile-menu .mobile-menu-content .mobile-nav-items li a {
        font-size: 24px;
    }

    .mobile-order-btn .btn {
        font-size: 16px;
        padding: 12px;
    }
}
