/* ===== CSS VARIABLES ===== */
:root {
    --red: #e8000d;
    --red-bright: #ff1a24;
    --red-glow: rgba(232, 0, 13, 0.6);
    --white: #ffffff;
    --off-white: #f0f0f0;
    --dark: #080808;
    --dark-2: #0f0f0f;
    --dark-3: #141414;
    --gray: #666;
    --light-gray: #aaa;
}
@font-face {
    font-family: "MyCustomFont";
    src: url("./Sakana.ttf") format("truetype");
}

/* ===== GLOBAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
body {
    background-color: var(--dark);
    color: var(--white);
    font-family: "MyCustomFont", sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}
button {
    border: none;
    background: none;
    font-family: inherit;
    cursor: pointer;
}

/* ===== HEADER / NAVBAR (IMPROVED RESPONSIVE) ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    background: rgba(8, 8, 8, 0.95);
    border-bottom: 1px solid rgb(82, 82, 82);
    backdrop-filter: blur(12px);
    transition: box-shadow 0.2s;
}

.nav-logo img {
    /*height: 100%;*/
    /*width: 300px;*/
    height: 80px;
    width: auto;
    display: block;
}

.nav-actions {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

/* unified button styles for both */
.btn-book,
.btn-leaderboard {
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.6rem 1.4rem;
    border-radius: 4px;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: 0.2s;
}
.btn-book {
    background: linear-gradient(90deg, #ffb300 0%, #ff2a00 100%);
    color: #fff;
}
.btn-leaderboard {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.25);
}
.btn-leaderboard:hover {
    border-color: var(--red);
}
.btn-book:hover {
    background: #ffb300;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    z-index: 5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
    /*justify-content: flex-center;*/
    overflow: hidden;
    padding-top: 150px;
}
.hero-container{
    width:50%;
    line-height:30px;
}
.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:linear-gradient(45deg, #000000, transparent) ;
    /*background: linear-gradient(*/
    /*    to right,*/
    /*    rgba(8, 8, 8, 0.98) 0%,*/
    /*    rgba(8, 8, 8, 0.7) 40%,*/
    /*    rgba(8, 8, 8, 0.1) 100%*/
    /*);*/
}
.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    height: 200px;
    /*background: linear-gradient(to top, var(--dark), transparent);*/
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 3rem 2.5rem;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ff0000;
    margin-bottom: 1.2rem;
    padding: 6px 14px;
    border: 1px solid #ff000038;
    border-radius: 40px;
    background-color: #ff000038;
}

.hero-title {
    font-style: italic;
    font-weight: 900;
    font-size: clamp(2.8rem, 10vw, 6rem);
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
}
.hero-title .white {
    color: var(--white);
}
.hero-title .red {
    color: var(--red);
}

.hero-sub {
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 2rem;
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.hero-stat {
    display: flex;
    flex-direction: column;
}
.hero-stat .num {
    font-size: 2.5rem;
    color: var(--red);
    line-height: 1;
}
.hero-stat .label {
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ccc;
}

.hero-cta {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}
.cta-primary,
.cta-secondary {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.9rem 2.2rem;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.2s;
}
.cta-primary {
    background: var(--red);
    color: #fff;
}
.cta-primary:hover {
    background: #ffb300;
}
.cta-secondary {
    background: linear-gradient(90deg, #ffb300 0%, #ff2a00 100%);
    color: #fff;
}
.cta-secondary:hover {
    background: linear-gradient(90deg, #ff2a00 0%, #ffb300 100%);
}

/* ===== SECTION COMMON ===== */
section {
    position: relative;
    z-index: 5;
    padding: 5rem 5rem;
}
.section-header {
    margin-bottom: 3.5rem;
}
.section-eyebrow {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 12px;
}
.section-eyebrow::before {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--red);
    flex-shrink: 0;
}
.section-title {
    font-style: italic;
    font-weight: 900;
    font-size: clamp(2.2rem, 6vw, 5rem);
    text-transform: uppercase;
    line-height: 0.95;
    letter-spacing: -0.5px;
}
.section-title .red {
    color: var(--red);
}

/* ===== ABOUT ===== */
.about-section {
    background: var(--dark-2);
    padding: 5rem;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-content p {
    color: #dbd6cd;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
}
.about-stats-mini {
    display: flex;
    gap: 2.5rem;
    margin: 2rem 0 1.5rem;
    flex-wrap: wrap;
}
.about-stat-item .num {
    font-size: 4.2rem;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
}
.about-stat-item .label {
    font-size: 2.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaa;
}
.about-quote {
    border-left: 4px solid var(--red);
    padding-left: 1.5rem;
    font-style: italic;
    color: #ccc;
    margin: 2rem 0;
}
.about-highlight {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.about-highlight span {
    background: rgba(232, 0, 13, 0.08);
    border: 1px solid rgba(232, 0, 13, 0.3);
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: #eee;
}
.about-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.about-image-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(232, 0, 13, 0.3);
}
.about-image-grid .wide {
    grid-column: span 2;
    height: 220px;
}

/* ===== EQUIPMENT ===== */
.equipment-section {
    background: var(--dark);
    padding: 5rem;
}
.equip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.equip-card {
    background: var(--dark-3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-top: 3px solid var(--red);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
}
.equip-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(232, 0, 13, 0.25);
}
.equip-img {
    width: 100%;
    height: 330px;
    overflow: hidden;
}
.equip-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}
.equip-card:hover .equip-img img {
    transform: scale(1.05);
}
.equip-content {
    padding: 2rem 1.5rem 2rem;
    flex: 1;
}
.equip-icon {
    width: 54px;
    height: 54px;
    background: rgba(232, 0, 13, 0.1);
    border: 1px solid rgba(232, 0, 13, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    color: var(--red);
}
.equip-card h3 {
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
}
.equip-spec {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}
.equip-card p {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.6;
}

/* ===== WHY ===== */
.why-section {
    background: var(--dark-2);
    padding: 5rem;
}
.why-layout {
    /*display: grid;*/
    /*grid-template-columns: 1fr 1fr;*/
    /*gap: 5rem;*/
    /*align-items: center;*/
}
.why-visual {
    position: relative;
}
.why-main-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(232, 0, 13, 0.3);
}
.why-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--dark-2);
}
.why-badge .num {
    font-size: 2.2rem;
    line-height: 1;
}
.why-badge .label {
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.why-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2rem;
}
.why-feature {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.2rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--red);
    background: rgba(0, 0, 0, 0.3);
}
.why-feature-icon {
    font-size: 1.6rem;
    color: var(--red);
    flex-shrink: 0;
}
.why-feature h4 {
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.why-feature p {
    font-size: 0.9rem;
    color: #aaa;
}

/* ===== FOOTER ===== */
footer {
    background: #050505;
    border-bottom: 2px solid #676767;
    padding: 4rem 5rem 2rem;
}
.footer-top {
   display:flex;
   justify-content:center;
   align-items:center ;
    padding-bottom: 3rem;
    margin:auto
}
.footer-brand img {
    height: 45px;
    margin-bottom: 1rem;
}
.footer-brand p {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.6;
    max-width: 280px;
}
.footer-col h4 {
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--red);
    margin-bottom: 1.2rem;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 0.7rem;
    font-size: 0.9rem;
    color: #aaa;
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}
.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #aaa;
    transition: 0.2s;
}
.social-link:hover {
    border-color: var(--red);
    color: white;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction:column;
    flex-wrap: wrap;
    /*gap: 1rem;*/
}
.footer-bottom p {
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #FFF;
}

.footer-bottom a:hover {
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #e90000;
}
.footer-bottom span {
    color: var(--red);
}

/* ticker */
.ticker-wrap {
    background: var(--red);
    padding: 0.7rem 0;
    overflow: hidden;
    white-space: nowrap;
}
.ticker-content {
    display: inline-block;
    animation: ticker 30s linear infinite;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.ticker-content .sep {
    margin: 0 2rem;
    opacity: 0.5;
}
@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.divider {
    height: 2px;
    background: linear-gradient(to right, transparent, var(--red), transparent);
    opacity: 0.3;
}

/* fade */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE FIXES ===== */

/* extra small screens */
@media (max-width: 1100px) {
    .navbar {
        padding: 0.8rem 1.5rem;
    }
}
@media (max-width: 900px) {
    .nav-logo img {
        /*height: 42px;*/
    }
    .btn-book,
    .btn-leaderboard {
        font-size: 0.85rem;
        padding: 0.5rem 1.2rem;
        letter-spacing: 1.2px;
        background: linear-gradient(90deg, #ffb300 0%, #ff2a00 100%);
    }
}
@media (max-width: 768px) {
    /* navbar button group — keep side by side but shrink */
    
    .hero-container{
        width:100%;
    }
    .navbar {
        padding: 0.7rem 1.2rem;
    }
    .nav-logo img {
        /*height: 38px;*/
    }
    .nav-actions {
        gap: 0.5rem;
    }
    .btn-book,
    .btn-leaderboard {
        font-size: 0.8rem;
        padding: 0.45rem 1rem;
        letter-spacing: 1px;
        clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    }
    .hero {
        padding-top: 80px;
    }
    .hero-content {
        padding: 2rem 1.5rem;
    }
    .hero-stats {
        gap: 2rem;
    }
    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    .cta-primary,
    .cta-secondary {
        font-size: 1rem;
        padding: 0.8rem 1.8rem;
    }

    section,
    .about-section,
    .equipment-section,
    .why-section {
        padding: 3rem 1.5rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-image-grid {
        order: -1;
    }
    .equip-grid {
        grid-template-columns: repeat(2, 1fr);
    } /* 2 cards on tablet */
    .why-layout {
        /*grid-template-columns: 1fr;*/
        /*gap: 2.5rem;*/
    }
    
    .footer-brand {
        /*grid-column: span 2;*/
    }
}

@media (max-width: 600px) {
    .navbar {
        padding: 0.6rem 1rem;
    }
    .nav-logo img {
        /*height: 34px;*/
    }
    .btn-book,
    .btn-leaderboard {
        font-size: 0.7rem;
        padding: 0.4rem 0.9rem;
        gap: 4px;
    }
    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }
    .hero-stat .num {
        font-size: 2rem;
        margin-right:10px ;
    }
    .hero-stat .label {
        font-size: 0.75rem;
    }
}

@media (max-width: 500px) {
    .nav-actions {
        gap: 0.4rem;
    }
    .btn-book,
    .btn-leaderboard {
        font-size: 0.65rem;
        padding: 0.35rem 0.7rem;
        letter-spacing: 0.5px;
    }
}
/* for very narrow (<=450) we might keep both visible; they already shrink */
@media (max-width: 450px) {
    .navbar {
        padding: 0.5rem 0.8rem;
    }
    .nav-logo img {
        /*height: 30px;*/
        width:200px;
    }
    .btn-book i,
    .btn-leaderboard i {
        font-size: 0.65rem;
    }
    .btn-book,
    .btn-leaderboard {
        padding: 0.3rem 0.6rem;
    }
    .hero-content {
        padding: 1.5rem 1rem;
    }
    .hero-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    .hero-stat {
        flex-direction: row;
        align-items: baseline;
        gap: 1rem;
    }
    .hero-stat .num {
        font-size: 1.8rem;
    }
    .hero-stat .label {
        font-size: 0.8rem;
    }
    .equip-grid {
        grid-template-columns: 1fr;
    } /* single column on very small */
    
    .footer-brand {
        /*grid-column: span 1;*/
    }
    .ticker-content {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }
}

/* ensure text contrast */
.about-content p,
.why-feature p,
.footer-brand p,
.footer-col li {
    color: #bbb;
}
