@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;800;900&display=swap');

/* ==========================================
   BASE
========================================== */

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, system-ui, sans-serif;
}

.asiagate-landing-page {
    font-family: Inter, system-ui, sans-serif;
}

.hero-heading,
.section-title {
    letter-spacing: -0.06em;
}

.section-kicker {
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: #BFA46A;
}

.section-title {
    margin-top: 1.25rem;
    font-size: 3rem;
    line-height: 0.95;
    text-transform: uppercase;
    font-weight: 900;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 5rem;
    }
}

/* ==========================================
   COLORS
========================================== */

.bg-gold {
    background-color: #BFA46A;
}

.text-gold {
    color: #BFA46A;
}

.bg-ink {
    background-color: #001012;
}

.bg-forest {
    background-color: #06393D;
}

/* ==========================================
   REVEAL ANIMATION
========================================== */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   HEADER
========================================== */

#siteHeader {
    backdrop-filter: blur(16px);
    transition: all .3s ease;
}

#siteHeader nav {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

#siteHeader img {
    height: 70px !important;
    width: auto !important;
    max-height: none !important;
    max-width: none !important;
}

@media (max-width:768px) {
    #siteHeader img {
        height: 55px !important;
    }
}

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

.hero-title {
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 0.9;
}

.hero-description {
    color: rgba(255,255,255,.8);
    line-height: 1.8;
}

/* ==========================================
   BUTTONS
========================================== */

.btn-gold {
    background: #BFA46A;
    color: #001012;
    border-radius: 999px;
    font-weight: 900;
    text-transform: uppercase;
    transition: .3s ease;
}

.btn-gold:hover {
    background: white;
}

.btn-outline {
    border: 1px solid rgba(255,255,255,.3);
    color: white;
    border-radius: 999px;
    font-weight: 900;
    text-transform: uppercase;
    transition: .3s ease;
}

.btn-outline:hover {
    background: white;
    color: #001012;
}

/* ==========================================
   ABOUT SECTION
========================================== */

#about {
    background: #F6F3EC;
}

#about h2 {
    color: #001012;
}

#about strong {
    color: #001012;
}

/* ==========================================
   SERVICES
========================================== */

#services h2,
#services h3 {
    color: #ffffff !important;
}

#services p {
    color: rgba(255,255,255,.8);
}

#services article {
    transition: .3s ease;
}

#services article:hover {
    transform: translateY(-8px);
}

#services article:hover h3,
#services article:hover p {
    color: #001012 !important;
}

/* ==========================================
   PACKAGES
========================================== */

#packages h2 {
    color: #ffffff !important;
}

#packages h3 {
    color: #ffffff !important;
}

#packages article {
    backdrop-filter: blur(10px);
    transition: .3s ease;
}

#packages article:hover {
    transform: translateY(-8px);
    border-color: #BFA46A;
}

#packages ul {
    color: rgba(255,255,255,.85);
}

/* ==========================================
   FORMS
========================================== */

input,
textarea,
select {
    width: 100%;
    outline: none;
    border: none;
}

input:focus,
textarea:focus,
select:focus {
    box-shadow: 0 0 0 2px #BFA46A;
}

/* ==========================================
   FOOTER
========================================== */

footer img {
    height: 70px;
    width: auto;
}

footer {
    background: #001012;
}

footer h3,
footer h4 {
    color: white;
}

footer p,
footer a {
    color: rgba(255,255,255,.7);
}

footer a:hover {
    color: white;
}

/* ==========================================
   ACCESSIBILITY
========================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
}

.focus\:not-sr-only:focus {
    position: static;
    width: auto;
    height: auto;
    clip: auto;
    display: block;
    padding: 1rem;
    background: white;
    z-index: 9999;
}