/* =========================
   PREMIUM HEADER STYLES
   ========================= */

.premium-header {
    width: 100%;
    padding: 80px 20px 70px;
    background: linear-gradient(
        180deg,
        #3b1d0f 0%,
        #0b2a3c 55%,
        #071c27 100%
    );
    text-align: center;
    position: relative;
}

/* INNER WRAPPER */
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* BRAND NAME */
.brand-name {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 6px;
    margin: 0;
    line-height: 1.1;
}

/* LEFT & RIGHT TEXT */
.brand-left,
.brand-right {
    color: #ffffff;
}

/* GOLDEN S */
.brand-s {
    display: inline-block;
    margin: 0 6px;
    color: #d4af37; /* premium gold */
    text-shadow:
        0 0 8px rgba(212, 175, 55, 0.6),
        0 0 18px rgba(212, 175, 55, 0.4);
    position: relative;
}

/* TAGLINE */
.brand-tagline {
    margin-top: 14px;
    font-size: 15px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.85);
}

/* SUBTLE GLOW UNDER LOGO */
.premium-header::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(212,175,55,0.6),
        transparent
    );
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .brand-name {
        font-size: 40px;
        letter-spacing: 4px;
    }

    .brand-tagline {
        font-size: 13px;
    }
}

/* REMOVE extra spacing between WHALE - S - TOWER */
.brand-name {
    letter-spacing: 0;   /* IMPORTANT */
    white-space: nowrap;
}

/* Remove spacing added earlier */
.brand-left,
.brand-right {
    margin: 0;
    padding: 0;
}

/* GOLD S – keep glow but no spacing */
.brand-s {
    margin: 0;           /* IMPORTANT */
    padding: 0;
    display: inline;
}



/* HARD FIX FOR WHALESTOWER GAP */
.brand-name {
    letter-spacing: 0 !important;
    word-spacing: 0 !important;
    white-space: nowrap;
}

/* Gold S — no spacing allowed */
.brand-s {
    margin: 0 !important;
    padding: 0 !important;
    letter-spacing: 0 !important;
    display: inline;
}
