/* ==========================================================
   UBUD ADVENTURES
   HOMEPAGE
========================================================== */

/* ==========================================================
   ROOT
========================================================== */

:root {

    --primary: #F4B400;
    --primary-hover: #F8C63A;

    --dark: #111827;
    --text: #374151;
    --muted: #6B7280;

    --white: #FFFFFF;

    --bg: #F8FAFC;
    --bg-light: #FFFFFF;

    --border: #E5E7EB;

    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 28px;
    --radius-pill: 999px;

    --shadow-sm: 0 4px 15px rgba(15, 23, 42, .05);
    --shadow: 0 12px 35px rgba(15, 23, 42, .08);
    --shadow-lg: 0 20px 60px rgba(15, 23, 42, .12);

    --container: 1320px;
    
    --transition: .3s ease;

}

/* ==========================================================
   RESET
========================================================== */

*,
*::before,
*::after {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    font-family: "Plus Jakarta Sans", sans-serif;

    background: var(--bg);

    color: var(--text);

    font-size: 16px;

    line-height: 1.7;

    overflow-x: hidden;

}

img {

    display: block;

    max-width: 100%;

    height: auto;

}

a {

    color: inherit;

    text-decoration: none;

    transition: var(--transition);

}

ul {

    list-style: none;

    margin: 0;

    padding: 0;

}

button {

    border: 0;

    background: none;

    cursor: pointer;

    font: inherit;

}

input,
select,
textarea {

    outline: none;

    box-shadow: none !important;

    font: inherit;

}

/* ==========================================================
   LAYOUT
========================================================== */

.container {

    max-width: var(--container);

}

section {

    position: relative;

}

/* ==========================================================
   TYPOGRAPHY
========================================================== */

.section-header {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 2rem;

    margin-bottom: 3rem;

}

.section-title {

    color: var(--dark);

    font-size: 2.3rem;

    font-weight: 800;

    line-height: 1.2;

}

.section-description {

    color: var(--muted);

    max-width: 650px;

}

.section-link {

    display: inline-flex;

    align-items: center;

    gap: .5rem;

    color: var(--primary);

    font-weight: 700;

}

/* ==========================================================
   CARD
========================================================== */

.ua-card {

    background: #fff;

    border-radius: var(--radius);

    box-shadow: var(--shadow);

    overflow: hidden;

    transition: var(--transition);

}

.ua-card:hover {

    transform: translateY(-6px);

    box-shadow: var(--shadow-lg);

}

/* ==========================================================
   BUTTON
========================================================== */

.btn-primary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: .95rem 1.9rem;

    border: none;

    border-radius: 999px;

    background: var(--primary);

    color: var(--dark);

    font-weight: 700;

    transition: var(--transition);

}

.btn-primary:hover {

    background: var(--primary-hover);

    transform: translateY(-2px);

}

/* ==========================================================
   UTILITIES
========================================================== */

.bg-light {

    background: var(--bg-light);

}

.rounded-xl {

    border-radius: var(--radius-lg);

}

.shadow-soft {

    box-shadow: var(--shadow);

}

/* ==========================================================
   HERO
========================================================== */

.ua-hero {

    position: relative;

    display: flex;

    align-items: center;

    overflow: hidden;

    min-height: 82vh;

    max-height: 980px;

    padding: 120px 0 70px;

    background: #000;

}

.ua-hero-image {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    z-index: 1;

}

.ua-hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        linear-gradient(90deg,
            rgba(12, 20, 35, .82) 0%,
            rgba(12, 20, 35, .58) 40%,
            rgba(12, 20, 35, .18) 100%);

}

.ua-hero .container {

    position: relative;

    z-index: 5;

}

.ua-hero-content {

    max-width: 620px;

}

/* ==========================================================
   HERO BADGE
========================================================== */

.ua-hero-badge {

    display: inline-flex;

    align-items: center;

    gap: .65rem;

    margin-bottom: 2rem;

    padding: .8rem 1.2rem;

    border-radius: 999px;

    background: rgba(255, 255, 255, .08);

    border: 1px solid rgba(255, 255, 255, .15);

    backdrop-filter: blur(18px);

    color: #fff;

    font-size: .92rem;

    font-weight: 600;

}

.ua-hero-badge i {

    color: #F4B400;

}

/* ==========================================================
   HERO TITLE
========================================================== */

.ua-hero-title {
    display: flex;
    margin-bottom: 1.5rem;
    flex-direction: column;
    color: #fff;
    gap: .08em;
    font-size: clamp(3.2rem, 5vw, 4.5rem);

    line-height: 1.02;

    letter-spacing: -2px;
    max-width: 650px;
    font-weight: 800;

}

.ua-line {
    display: block;
}

.ua-highlight {
    color: var(--primary);
}

/* ==========================================================
   HERO DESCRIPTION
========================================================== */

.ua-hero-description {

    max-width: 560px;

    margin-bottom: 2.5rem;

    color: rgba(255, 255, 255, .88);

    font-size: 1.15rem;

    line-height: 1.9;

}

/* ==========================================================
   HERO TRUST
========================================================== */

.ua-trust {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 18px;

    margin-top: 42px;

}

.ua-trust-item {

    display: flex;

    align-items: center;

    gap: 10px;

    flex: 1;

    min-width: 0;

}

.ua-trust-icon {

    width: 36px;

    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 10px;

    background: rgba(244, 180, 0, .10);

    border: 1px solid rgba(244, 180, 0, .22);

    color: #F4B400;

    transition: .3s;

}

.ua-trust-item:hover .ua-trust-icon {

    background: #F4B400;

    color: #111827;

}

.ua-trust-item span {

    color: #fff;

    font-size: .9rem;

    font-weight: 600;

    line-height: 1.4;

}



.ua-trust-item:hover .ua-trust-icon {

    background: #F4B400;

    color: #111827;

    transform: translateY(-2px);

}

.ua-trust-text {

    display: flex;

    flex-direction: column;

    line-height: 1.2;

}

.ua-trust-text strong {

    color: #fff;

    font-size: .95rem;

    font-weight: 700;

}

.ua-trust-text span {

    margin-top: .2rem;

    color: rgba(255, 255, 255, .70);

    font-size: .82rem;

}


/* ==========================================================
   HERO ACTIONS
========================================================== */

.ua-hero-actions {

    display: flex;

    align-items: center;

    gap: 16px;

    margin: 0 0 42px;

}

.ua-hero-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    height: 56px;

    padding: 0 28px;

    border-radius: 999px;

    font-size: .95rem;

    font-weight: 700;

    transition: all .3s ease;

    white-space: nowrap;

}

/* Primary */

.ua-hero-btn-primary {

    background: var(--primary);

    color: var(--dark);

    box-shadow: 0 12px 30px rgba(244, 180, 0, .28);

}

.ua-hero-btn-primary:hover {

    background: var(--primary-hover);

    transform: translateY(-2px);

    box-shadow: 0 18px 40px rgba(244, 180, 0, .35);

}

/* Secondary */

.ua-hero-btn-secondary {

    background: rgba(255, 255, 255, .08);

    border: 1px solid rgba(255, 255, 255, .18);

    color: #fff;

    backdrop-filter: blur(16px);

}

.ua-hero-btn-secondary:hover {

    background: rgba(255, 255, 255, .14);

    transform: translateY(-2px);

}

.ua-hero-btn i {

    font-size: 1rem;

}

/* Play Button */

.ua-hero-btn-secondary .bi-play-fill {

    width: 28px;

    height: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, .18);

    font-size: .9rem;

}

/* ==========================================================
   HERO RESPONSIVE
========================================================== */

/* ---------- Tablet ---------- */

@media (max-width:991px) {

    .ua-hero {

        min-height: 680px;
        padding: 90px 0 70px;

    }

}

/* ---------- Mobile ---------- */

@media (max-width:768px) {

    .ua-hero {

        min-height: auto;
        padding: 90px 0 60px;

    }

    .ua-hero-content {

        max-width: 100%;

    }

    .ua-hero-title {

        font-size: 2.8rem;
        line-height: 1.08;
        letter-spacing: -1px;

    }

    .ua-hero-description {

        max-width: 100%;
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 2rem;

    }

    /* Buttons */

    .ua-hero-actions {

        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 21px;

    }

    .ua-hero-btn {

        width: 100%;
        height: 50px;
        padding: 0 14px;
        font-size: .9rem;

    }

    /* Trust */

    .ua-trust {

        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 18px;
        margin-top: 0;

    }

    .ua-trust-item {

        display: flex;
        align-items: center;

    }

}

/* ---------- Small Mobile ---------- */

@media (max-width:576px) {

    .ua-hero {

        padding: 80px 0 50px;

    }

    .ua-hero-title {

        font-size: 2.35rem;
        line-height: 1.05;

    }

    .ua-hero-badge {

        font-size: .82rem;
        padding: .6rem 1rem;

    }

    .ua-hero-description {

        font-size: .95rem;

    }

    .ua-hero-actions {

        gap: 8px;

    }

    .ua-hero-btn {

        height: 38px;
        font-size: .85rem;

    }

}