/* --- THEME SETTINGS --- */
:root {
    --bg-dark: #050505;
    --accent-gold: #ffcc33;
    --text-white: #ffffff;
    --text-readable: #e0e0e0;
    --text-dim: #888888;
    --nav-height: 80px;
}

/* --- GLOBAL CORE --- */
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-dark);
    color: var(--text-readable);
    font-family: 'Inter', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* Section */
section {
    padding: 80px 0; /* Slightly reduced for better mobile flow */
    scroll-margin-top: var(--nav-height);
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* --- NAVIGATION --- */
.navbar-custom {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-link {
    color: var(--text-dim) !important;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--accent-gold) !important;
}

/* --- HERO SECTION --- */
.hero-section {
    background-color: #000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--nav-height);
}

.hero-content-wrapper {
    padding-left: 15%;
    position: relative;
    z-index: 10;
}

.hero-sub {
    color: var(--accent-gold);
    font-weight: 700;
    text-transform: lowercase;
    display: block;
}

.hero-title {
    color: var(--text-white);
    font-size: 8rem;
    font-weight: 900;
    line-height: 0.9;
    margin: 10px 0;
}

.hero-description {
    color: #a0a0a0;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-img-wrapper {
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.hero-img-wrapper img {
    height: 90vh;
    width: auto;
    object-fit: contain;
    filter: grayscale(20%) brightness(1.2);
    /* Fade effect using mask */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%);
    mask-image: linear-gradient(to right, transparent 0%, black 30%);
}

/* --- BUTTONS --- */
.btn-gold {
    background: var(--accent-gold);
    color: #000;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 4px;
    text-decoration: none;
    border: 1px solid var(--accent-gold);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 4px;
    text-decoration: none;
    border: 1px solid #fff;
    transition: 0.3s;
}

.btn-outline-white:hover {
    background: #fff;
    color: #000;
}

/* --- ABOUT SECTION --- */
#about { background-color: #000; color: #fff; }

.section-label {
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-headline { font-size: 2.5rem; font-weight: 700; }

.about-text { color: #a0a0a0; line-height: 1.8; }

.about-circle {
    width: 100px;
    height: 100px;
    border: 1px solid #262626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    transition: 0.3s;
    font-size: 1.5rem;
}

.about-circle:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-5px);
}

/* --- POSTS / INSTAGRAM CARD --- */
.insta-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #dbdbdb;
    height: 420px;
    display: flex;
    flex-direction: column;
}

.insta-img-square {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #efefef;
    overflow: hidden;
}

.insta-img-square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-caption-box {
    max-height: 45px;
    overflow: hidden;
    font-size: 0.75rem;
}

/* --- CONTACT FORM --- */
.form-control {
    background: #111;
    border: 1px solid #222;
    color: white !important;
    padding: 15px;
    border-radius: 4px;
}

.form-control:focus {
    border-color: var(--accent-gold);
    background: #151515;
    box-shadow: none;
}

/* --- RESPONSIVE BREAKPOINTS (FIXES) --- */

/* Tablets and below */
@media (max-width: 991px) {
    .hero-section {
        flex-direction: column;
        padding-top: 120px;
        text-align: center;
    }

    .hero-content-wrapper {
        padding-left: 0;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 5rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-img-wrapper {
        justify-content: center;
        margin-top: 50px;
    }

    .hero-img-wrapper img {
        height: 50vh;
        -webkit-mask-image: none; /* Disable fade on mobile to center image better */
        mask-image: none;
    }

    .about-headline {
        font-size: 2rem;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .navbar-nav {
        background: rgba(0, 0, 0, 0.9);
        padding: 20px;
        text-align: center;
        border-radius: 10px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .about-circle {
        width: 80px;
        height: 80px;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .btn-gold, .btn-outline-white {
        width: 100%; /* Full width buttons for easy tapping */
    }
}

.copyright{
    color: #cacaca;
}

/* --- HERO SOCIALS --- */
.hero-socials {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.hero-socials a {
    color: var(--text-dim);
    font-size: 1.2rem;
    transition: 0.3s;
    text-decoration: none;
}

.hero-socials a:hover {
    color: var(--accent-gold);
    transform: translateY(-3px);
    display: inline-block; /* Required for transform to work */
}

/* Ensure icons stack nicely on mobile */
@media (max-width: 991px) {
    .hero-socials {
        justify-content: center;
        margin-top: 30px;
    }
}

/* Example of a quick minimalist scrollbar styling */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 3px;
}

:root {
            --lerp-0: 1;
            --lerp-1: 0.5625;
            --lerp-2: 0.25;
            --lerp-3: 0.0625;
            --lerp-4: 0;
            --accent-gold: #e5c07b;
            --bg-dark: #0a0a0c;
        }

        *,
        *:after,
        *:before {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            padding: 0;
            height: 100vh;
            width: 100vw;
            overflow: hidden;
            font-family: 'Google Sans', sans-serif, system-ui;
            background-color: var(--bg-dark, #0a0a0c);
            color: #ffffff;
        }

        /* ----------------------------------
           HORIZONTAL SCROLL CANVAS
        ---------------------------------- */
        .horizontal-viewport {
            display: flex;
            width: 100vw;
            height: 100vh;
            overflow-x: auto;
            overflow-y: hidden;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
        }

        /* Hide Scrollbars */
        .horizontal-viewport::-webkit-scrollbar {
            display: none;
        }

        .horizontal-viewport {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        .page-section {
            flex: 0 0 100vw;
            width: 100vw;
            height: 100vh;
            scroll-snap-align: start;
            scroll-snap-stop: always;
            padding: 2rem 4rem 6rem 4rem;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow-y: auto;
        }

        /* ----------------------------------
           COMPACT MACOS DOCK NAVIGATION
        ---------------------------------- */
        .dock-wrapper {
            position: fixed;
            bottom: 14px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
        }

        .blocks {
            display: flex;
            list-style-type: none;
            padding: 5px 10px;
            border-radius: 14px;
            gap: 8px;
            background: rgba(18, 18, 24, 0.7);
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
            margin: 0;
        }

        .blocks:hover {
            --show: 1;
        }

        /* Reduced Icon Box Sizes */
        .block {
            width: 38px;
            height: 38px;
            display: grid;
            place-items: center;
            transition: flex 0.2s cubic-bezier(0.2, 0, 0, 1);
            flex: calc(0.2 + (var(--lerp, 0) * 1.3));
            position: relative;
            text-decoration: none;
            outline: none;
        }

        /* Compact Tooltip Label */
        .block-label {
            position: absolute;
            top: -32px;
            left: 50%;
            transform: translateX(-50%) translateY(6px);
            background: rgba(0, 0, 0, 0.85);
            color: #fff;
            padding: 2px 8px;
            border-radius: 5px;
            font-size: 0.7rem;
            font-weight: 600;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: transform 0.2s, opacity 0.2s;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        :is(.block:hover, .block:focus-visible) .block-label {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        /* Active Indicator Dot */
        .block:after {
            content: '';
            width: 3px;
            height: 3px;
            background: var(--accent-gold);
            position: absolute;
            bottom: -4px;
            left: 50%;
            border-radius: 50%;
            transform: translateX(-50%);
            opacity: 0;
            transition: opacity 0.2s;
        }

        .block.active:after {
            opacity: 1;
        }

        .block__item {
            width: 100%;
            aspect-ratio: 1;
            border-radius: 8px;
            background: var(--bg, #222);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.95rem;
            color: white;
            transition: transform 0.2s cubic-bezier(0.2, 0, 0, 1);
            transform-origin: 50% 100%;
            position: relative;
            transform: translateY(calc(var(--lerp, 0) * -50%));
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
        }

        .block__item:after {
            content: '';
            position: absolute;
            height: 100%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            aspect-ratio: 1;
            border-left: 1px solid rgba(255, 255, 255, 0.3);
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            mask: linear-gradient(135deg, black, transparent 50%);
        }

        /* Magnification Lerp Hierarchy */
        :is(.block:hover, .block:focus-visible) {
            --lerp: var(--lerp-0);
            z-index: 5;
        }

        .block:has(+ :is(.block:hover, .block:focus-visible)),
        :is(.block:hover, .block:focus-visible)+.block {
            --lerp: var(--lerp-1);
            z-index: 4;
        }

        .block:has(+ .block + :is(.block:hover, .block:focus-visible)),
        :is(.block:hover, .block:focus-visible)+.block+.block {
            --lerp: var(--lerp-2);
            z-index: 3;
        }

        .block:has(+ .block + .block + :is(.block:hover, .block:focus-visible)),
        :is(.block:hover, .block:focus-visible)+.block+.block+.block {
            --lerp: var(--lerp-3);
            z-index: 2;
        }


        .pricing-card {
        border-radius: 6px;
        position: relative;
        max-height: 340px; /* Controls compact card height */
        min-height: 300px;
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        overflow: hidden;
    }

    .pricing-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.45);
    }

    /* Small Header Icon Circle */
    .icon-circle {
        width: 44px;
        height: 44px;
        background: rgba(10, 10, 12, 0.85);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 0.9rem;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    }

    .divider-line {
        height: 1px;
        background: rgba(255, 255, 255, 0.2);
        width: 85%;
        margin: 0 auto;
    }

    .service-description {
        display: -webkit-box;
        -webkit-line-clamp: 5; /* Truncates extra lines cleanly */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .action-btn {
        border-radius: 4px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-size: 0.8rem;
        background: rgba(0, 0, 0, 0.25);
        border: none;
        transition: background 0.2s;
    }

    .action-btn:hover {
        background: rgba(0, 0, 0, 0.45);
    }

    /* COLOR VARIANTS */
    .card-variant-cyan { background: #2ca9bd; }
    .card-variant-cyan .action-btn { background: #23899a; }

    .card-variant-orange { background: #f25a2b; }
    .card-variant-orange .action-btn { background: #c9461e; }

    .card-variant-teal { background: #2bb3c0; }
    .card-variant-teal .action-btn { background: #208e9a; }

    .card-variant-green { background: #73c898; }
    .card-variant-green .action-btn { background: #5aa77c; }