body {
    font-family: 'Inter', sans-serif;
    background: #111;
}

/* HERO BASE */
.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* ===== PREMIUM NAVBAR ===== */

.navbar {
    backdrop-filter: blur(12px);
    background: linear-gradient(to bottom, rgba(0, 0, 0, .8), rgba(0, 0, 0, .3));
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    transition: all .3s ease;
}

.navbar-brand {
    font-weight: 800;
    letter-spacing: 2px;
}

/* NAV LINKS */
.nav-link {
    position: relative;
    color: rgba(255, 255, 255, .8) !important;
    font-weight: 500;
    transition: .3s;
}

/* GOLD HOVER EFFECT */
.nav-link:hover {
    color: #ffc107 !important;
}

/* UNDERLINE SLIDE EFFECT */
.nav-link::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #ffc107;
    transition: .3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* ===== HERO TEXT READABILITY SYSTEM ===== */

.hero-content {
    position: relative;
    z-index: 20;
    text-align: center;
    max-width: 900px;
}

/* SOFT DARK GRADIENT BEHIND TEXT */
.hero-content::before {
    content: "";
    position: absolute;
    inset: -40px -60px;
    background: radial-gradient(circle, rgba(0, 0, 0, .65) 0%, rgba(0, 0, 0, .4) 40%, transparent 70%);
    filter: blur(20px);
    z-index: -1;
}

/* MAIN HEADER */
.headertext {
    font-size: clamp(48px, 6vw, 88px);
    font-weight: 900;
    letter-spacing: 3px;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;

    /* CLEAN SHADOW (not glow) */
    text-shadow:
        0 3px 10px rgba(0, 0, 0, .8),
        0 0 40px rgba(0, 0, 0, .6);
}

/* SUBTEXT */
.paratext {
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 500;
    color: rgba(255, 255, 255, .92);
    margin-top: 15px;
    letter-spacing: 1px;

    text-shadow:
        0 2px 8px rgba(0, 0, 0, .8);
}

/* STRIP */
.hero-strip {
    position: absolute;
    inset: 0;
    display: flex;
}

/* SLICES */
.hero-slice {
    flex: 1;
    overflow: hidden;
    position: relative;
}

/* IMAGE */
.hero-slice img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.7) contrast(1.1);
}

/* TRUE DIAGONAL SLICES */
.hero-slice:nth-child(1) {
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
}

.hero-slice:nth-child(2) {
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0% 100%);
}

.hero-slice:nth-child(3) {
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0% 100%);
}

.hero-slice:nth-child(4) {
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0% 100%);
}

.hero-slice:nth-child(5) {
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0% 100%);
}

.hero-slice:nth-child(6) {
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
}

/* HERO TEXT */
.hero-content {
    position: relative;
    z-index: 10;
    color: white;
}

/* ===== LENS DIRT ANIMATION ===== */

.lens-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.06), transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.04), transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.03), transparent 45%);
    animation: lensFloat 12s infinite linear;
}

@keyframes lensFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -20px) scale(1.05);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}


/* ===== LETTER ANIMATION ===== */

.letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(60px);
    animation: slideUp 0.7s forwards;
}

/* Stagger animation */
.letter:nth-child(n) {
    animation-delay: calc(0.05s * var(--i));
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Auto stagger */
.split .letter {
    animation-delay: calc(0.04s * var(--index));
}

/* BRAND STACKED TEXT */
.brand-top {
    display: block;
    font-size: .9em;
    letter-spacing: 6px;
}

.brand-bottom {
    display: block;
    font-size: .6em;
    font-weight: 700;
    letter-spacing: 10px;
    margin-top: 8px;
    color: #ffc107;
}

.brand-bottom {
    border-top: 2px solid rgba(255, 193, 7, .5);
    padding-top: 12px;
}

/* MOBILE STACK */
@media (max-width: 768px) {
    .hero-strip {
        flex-wrap: wrap;
    }

    .hero-slice {
        flex: 50%;
        height: 50%;
    }

    .hero-slice::after {
        display: none;
    }

    .headertext {
        font-size: 48px;
    }
}

.hero .btn-warning {
    box-shadow:
        0 8px 30px rgba(255, 193, 7, .4),
        0 0 40px rgba(255, 193, 7, .25);
    font-weight: 700;
}

/* SERVICES */
.service-card {
    background: #1b1b1b;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #333;
    transition: .3s;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #ffc107;
}

/* GALLERY */
.gallery-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
    transition: .3s;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* CONTACT */
.contact-section {
    background: linear-gradient(135deg, #111, #000);
    padding: 100px 0;
    border-top: 4px solid #ffc107;
}