/* =========================================================
   HEADER NAV — single list, left aligned
========================================================= */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: #fff;
    border-bottom: 1px solid #F0F0F0;
    z-index: 1000;
    transition: .5s all linear;
}

header .container {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding-left: 2%;
    /* logo alanı */
    padding-right: 2%;
    /* desktop’ta hamburger yok */
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
}

#logo {
    margin-right: 30px;
    height: 60px
}


/* Tek menü */

header ul.nav {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
    height: 100%;
}


/* Linkler sola dayansın */

header ul.nav {
    margin-right: auto;
    /* CTA’lar sağa gider */
}

header ul.nav>li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

header ul.nav>li>a {
    color: #000;
    font-family: "Sarabun", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}


/* =========================================================
   CTA — header right
========================================================= */

.header-ctas a {
    background: #b0351d;
    color: #fff;
    padding: 12px 16px;
    border-radius: 40px;
    cursor: pointer;
    border: none;
    font-size: 12px;
    white-space: nowrap;
    transition: .25s ease;
    margin-left: 6px;
}

.header-ctas a:hover {
    opacity: .85;
    transform: translateY(-2px);
}

.header-ctas a.sec {
    background: #E84B2C;
}


/* =========================================================
   DROPDOWN + ok (▼ / ▲)
========================================================= */

header ul.nav li.has-dropdown>a {
    position: relative;
    padding-right: 18px;
}

header ul.nav li.has-dropdown>a::after {
    content: "▼";
    position: absolute;
    right: 0;
    top: 50%;
    font-size: 10px;
    transform: translateY(-45%);
    transition: .25s ease;
}

header ul.nav li.has-dropdown:hover>a::after,
header ul.nav li.has-dropdown:focus-within>a::after {
    transform: translateY(-45%) rotate(180deg);
}

header ul.nav li.has-dropdown>.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #fff;
    border: 1px solid #F0F0F0;
    padding: 18px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: .25s ease;
    z-index: 999;
}

header ul.nav li:hover a {
    color: #E84B2C
}

header ul.nav li.has-dropdown:hover>.dropdown,
header ul.nav li.has-dropdown:focus-within>.dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

header ul.nav li.has-dropdown .dropdown li {
    padding: 8px 30px;
    white-space: nowrap;
}

header ul.nav li.has-dropdown .dropdown a {
    font-size: 15px;
    color: #000;
}

header ul.nav li.has-dropdown .dropdown a:hover {
    color: #E84B2C;
}


/* =========================================================
   HAMBURGER — desktop hidden, mobile only
========================================================= */

#hamburger {
    display: none;
}

@media (max-width:1180px) {
    header .container {
        gap: 10px;
    }
    header ul.nav {
        gap: 10px;
    }
}

@media (max-width:1024px) {
    #hamburger {
        display: block;
    }
    header .container {
        padding-left: 5%;
        padding-right: 90px;
        /* mobile’da hamburger alanı */
    }
    header ul.nav {
        display: none;
    }
    .header-ctas {
        display: none;
    }
}


/* =========================================================
   RESPONSIVE BREAKPOINT
========================================================= */

@media (max-width: 1024px) {
    header ul.left,
    header ul.right {
        display: none;
    }
}

#menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 10000;
    display: none;
    transition: 1s all linear;
}

#menu-overlay.active {
    display: block;
    opacity: 1;
}

#breadcrumb {
    padding-top: 15px;
    padding-bottom: 15px;
}

#breadcrumb ul {
    display: flex;
    gap: 10px;
}

#breadcrumb ul li {
    font-family: "Sarabun", sans-serif;
    font-style: normal;
    font-size: 14px;
    color: #000;
    opacity: .5;
}

#breadcrumb ul li a {
    color: #000;
}

#inner-title {
    padding-bottom: 65px;
    position: relative;
    display: flex;
    gap: 100px;
}

#inner-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: #000;
}

#inner-title h1 {
    font-family: "Sarabun", sans-serif;
    font-style: normal;
    font-size: 18px;
    color: #000;
    opacity: 1;
    padding-top: 35px;
    min-width: 300px;
}

#inner-title p {
    font-family: 'Atyp Text';
    font-size: 68px;
    color: #000;
    line-height: 1.2;
    letter-spacing: -2px;
    margin-top: -6px;
}

.inner-title {
    padding-bottom: 65px;
    position: relative;
    display: flex;
    gap: 100px;
}

.inner-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: #000;
}

.inner-title h2 {
    font-family: "Sarabun", sans-serif;
    font-style: normal;
    font-size: 18px;
    color: #000;
    opacity: 1;
    padding-top: 35px;
    min-width: 200px;
}

.inner-title p {
    font-family: 'Atyp Text';
    font-size: 68px;
    color: #000;
    line-height: 1.2;
    letter-spacing: -2px;
    margin-top: -6px;
}

.inner-title h1 {
    font-family: 'Atyp Text';
    font-size: 68px;
    color: #000;
    line-height: 1.2;
    letter-spacing: -2px;
    margin-top: -6px;
}

.inner-title h1.small {
    font-family: "Sarabun", sans-serif;
    font-style: normal;
    font-size: 18px;
    color: #000;
    opacity: 1;
    padding-top: 35px;
    min-width: 200px;
    letter-spacing: 0;
}

sup {
    font-size: 0.75em;
    /* Adjust size relative to parent text */
    vertical-align: super;
    /* Position the text above the baseline */
    color: inherit;
    /* Use the same color as the parent by default */
}

#content {
    padding-bottom: 190px;
}

footer {
    background: #000;
    padding-top: 40px;
    position: relative;
}

footer video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

#marquee-box {
    position: relative;
    overflow: hidden;
    height: 60px;
    width: 100%;
    margin-bottom: 60px;
}

#marquee-box-overlay {
    animation: marquee 30s linear infinite;
    position: absolute;
    top: 0;
    left: 100%;
    height: 60px;
    white-space: nowrap;
}

#marquee-box-overlay p {
    color: #E84B2C;
    font-size: 54px;
    font-family: 'Atyp Text';
    font-weight: 700;
}

@keyframes marquee {
    0% {
        left: 100%;
    }
    100% {
        left: -100%;
    }
}

#footer-top {
    padding-bottom: 40px;
}

#footer-top .row {
    display: flex;
    gap: 20px;
}

#footer-top .row .col {
    flex: 1;
}

#footer-top .row .col h2 {
    font-size: 24px;
    color: white;
    margin-bottom: 24px;
}

#footer-top .row .col ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

#footer-top .row .col ul li {
    font-family: "Sarabun", sans-serif;
    font-style: normal;
    font-size: 14px;
    color: #fff;
}

#footer-top .row .col ul li a {
    color: white;
    opacity: .5;
    transition: .5s all linear;
}

#footer-top .row .col ul li:hover a {
    color: #E84B2C;
    opacity: 1
}

#footer-top .row .col #footer-mid-menu {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: right;
}

#footer-top .row .col #footer-mid-menu li {
    font-size: 30px;
    color: white;
    margin-bottom: 30px;
    opacity: 1;
}

#footer-top .row .col #footer-mid-menu li a {
    color: white;
}

#footer-mid {
    padding-bottom: 190px;
}

#footer-mid .container {
    display: flex;
}

#footer-mid .container div {
    flex: 1;
}

.footer-mid-left p {
    font-size: 28px;
    line-height: 28px;
    color: #fff;
    margin-bottom: 35px;
}

.footer-mid-left ul {
    display: flex;
    gap: 20px
}

.footer-mid-right ul {
    float: right;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-mid-right ul li {
    font-size: 18px;
    color: #fff;
}

.footer-mid-left ul li img {
    width: 32px;
}

.footer-mid-right ul li a {
    color: #fff;
    opacity: .5;
}

.footer-mid-right ul li.selected a {
    opacitY: 1;
}

#footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 20px;
    padding-bottom: 20px;
    overflow: hidden;
}

#footer-bottom .container {
    display: flex;
}

#footer-bottom .container div {
    flex: 1;
}

.footer-bottom-left p {
    font-family: "Sarabun", sans-serif;
    color: #fff;
    font-size: 14px;
}

.footer-bottom-right ul {
    float: Right;
}

.footer-bottom-right ul li {
    float: left;
    font-family: "Sarabun", sans-serif;
    color: #fff;
    font-size: 14px;
    margin-left: 20px;
}

.footer-bottom-right ul li a {
    color: #fff;
    opacity: .5;
}

.link-up {
    display: flex;
    gap: 10px;
}

#menu-overlay-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
    background: url('../images/img-menu-image.webp') center center no-repeat;
    background-size: cover;
    opacity: 0;
    transition: 1s all linear;
}

#menu-overlay.active #menu-overlay-image {
    opacity: 1;
}

#menu-overlay-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 100%;
    box-sizing: border-box;
    padding-top: 100px;
    padding-left: 100px
}

#menu-overlay-content ul li ul {
    display: none;
}

#menu-overlay-content ul li.big {
    color: #E84B2C;
    font-size: 40px;
    position: relative;
    font-weight: 300;
    padding-left: 50px;
    margin-bottom: 24px;
    cursor: pointer;
}

#menu-overlay-content ul li.big span {
    position: absolute;
    width: 31px;
    height: 31px;
    left: 0;
    top: 10px
}

#menu-overlay-content ul li.big span::before {
    content: '';
    position: absolute;
    left: 15px;
    width: 1px;
    top: 0;
    height: 31px;
    background: #E84B2C;
}

#menu-overlay-content ul li.big span::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    height: 1px;
    width: 31px;
    background: #E84B2C;
}

#menu-overlay-content ul li ul {
    margin-top: 20px;
}

#menu-overlay-content ul li ul li {
    color: #fff;
    font-size: 20px;
    font-family: "Sarabun", sans-serif;
    margin-bottom: 10px;
}

#menu-overlay-content ul li ul li a {
    color: white;
}

#menu-overlay-content ul li.small ul {
    display: block !important;
}

#menu-overlay-content ul li.small {
    font-size: 50px;
    position: relative;
    font-weight: 300;
    padding-left: 50px;
    margin-bottom: 24px;
    cursor: pointer;
}

#menu-overlay-content ul li.small span {
    position: absolute;
    width: 21px;
    height: 21px;
    left: 0;
    top: 5px
}

#menu-overlay-content ul li.small span::before {
    content: '';
    position: absolute;
    left: 10px;
    width: 1px;
    top: 0;
    height: 21px;
    background: #ffffff;
}

#menu-overlay-content ul li.small span::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    height: 1px;
    width: 21px;
    background: #ffffff;
}


/* Loading screen covers the entire page */

#content img {
    max-width: 100%;
}

#full-width {
    padding-bottom: 100px;
}

#full-width img {
    width: 100%;
}

.parallax-container {
    height: 70vh;
    overflow: hidden;
    position: relative;
}

.parallax-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
}

#menu-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: white;
    cursor: pointer;
}

#menu-close svg {
    height: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/* === HEADER DROPDOWN (DESKTOP) === */