/* HERO MODULE - V74 (FLOATING MASTER CARD) */
.hero-section { position: relative; height: 100vh; background: #ffffff !important; padding: 0 20px 40px; display: flex; justify-content: center; align-items: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-master {
    height: 100%;
    width: 100%;
    position: relative;
    border-radius: inherit;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    transition: 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 var(--inner-px);
    padding-bottom: 12vh; /* Dynamic padding instead of fixed 300px */
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 8vw, 7.5rem);
    max-width: 1400px;
    color: var(--text-light);
    text-transform: uppercase;
    line-height: 0.85;
    letter-spacing: -0.02em;
    transform: translateY(40px);
    opacity: 0;
    transition: 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.6s;
}

.page-ready .hero-title {
    transform: translateY(0);
    opacity: 1;
}

.hero-quick-links {
    position: absolute;
    bottom: clamp(20px, 4vh, 40px);
    right: var(--inner-px);
    background: transparent !important;
    padding: 0 !important;
    display: flex;
    flex-direction: row !important; /* Row instead of column */
    gap: 15px;
    z-index: 200;
    box-shadow: none !important;
    opacity: 1 !important;
    transform: none !important;
}


.page-ready .hero-quick-links {
    transform: translateY(0);
    opacity: 1;
}

.ql-tag {
    font-size: 11px;
    font-weight: 900;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.ql-item {
    color: var(--text-dark);
    text-decoration: none;
    font-size: clamp(11px, 1vw, 13px);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    transition: 0.3s;
}

.scroll-hint-wrap {
    position: absolute;
    bottom: clamp(30px, 5vh, 70px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 300;
}

.scroll-down {
    color: var(--text-dark);
    font-size: 7px;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 900;
    opacity: 0.5;
}

/* HEADER ALWAYS FIXED ON TOP */
.header {
    position: fixed;
    top: clamp(10px, 2vh, 25px);
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--inner-px);
    z-index: 10000;
    transform: translateY(-20px);
    opacity: 0;
    transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 1.5s;
}

.page-ready .header {
    transform: translateY(0);
    opacity: 1;
}

.logo-box {
    width: clamp(100px, 12vw, 140px); /* Smaller logo */
    font-weight: 900;
    font-size: 18px;
    color: var(--text-light);
    text-decoration: none;
}


/* NAV PILL VISIBILITY CONTROLLED BY desktop.css / mobile.css */


