/*
Theme Name: Astra Child
Theme URI: https://varga.dskwebsolutions.com
Description: Child Theme for Astra
Author: Sandeep
Author URI: https://varga.dskwebsolutions.com
Template: astra
Version: 1.0.0
Text Domain: astra-child
*/



:root {
    --clr-navy: #171717;
    --clr-gold: #C9A961;
    --clr-charcoal: #3F4141;
    --clr-white: #FFFFFF;
    --clr-light: #F9F9F9;
    --clr-medium: #A7A9A9;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;

    --container-max: 1280px;
    --section-pad: clamp(80px, 10vw, 150px);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- RESET & FOUNDATION --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: var(--clr-charcoal);
    background-color: #f8f8f6;
    -webkit-font-smoothing: antialiased;
}

main{
    width: 100%;
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--clr-navy);
    line-height: 1.1;
}

h1 {
    font-size: clamp(40px, 6vw, 72px);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 20px;
}

h3 {
    font-size: clamp(24px, 3vw, 36px);
    margin-bottom: 15px;
}

h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* .text-gold { color: var(--clr-gold); } */
.text-white {
    color: var(--clr-white);
}

.text-medium {
    color: var(--clr-medium);
}

.text-center {
    text-align: center;
}

.eyebrow {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-gold);
    font-weight: 500;
    margin-bottom: 15px;
}

/* Utilities */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: var(--section-pad) 0;
}

.bg-navy {
    background-color: var(--clr-navy);
}

.bg-light {
    background-color: var(--clr-light);
}

.mt-2 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 3rem;
}

.mt-large {
    margin-top: clamp(60px, 8vw, 120px);
}

.overflow-hidden {
    overflow: hidden;
}

/* --- BUTTONS & LINKS --- */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: var(--transition);
    border-radius: 2px;
}

.btn-gold {
    background-color: var(--clr-gold);
    color: var(--clr-navy);
    border: 1px solid var(--clr-gold);
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--clr-gold);
}

.btn-large {
    padding: 18px 36px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--clr-navy);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.link-arrow span {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    color: var(--clr-gold);
}

.link-arrow:hover span {
    transform: translateX(5px);
}

/* --- NAVIGATION --- */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
    /* padding: 25px 0; */
    transition: var(--transition);
    /* background-color: #fff; */
    background-color: #f8f8f6;
}

.site-header.scrolled {
    background: rgba(31, 33, 33, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
}

.site-header.scrolled .nav-links a {
    color: var(--clr-white);
}

.site-header.scrolled .brand-logo {
    color: var(--clr-gold);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--clr-gold);
    /* Adjusted for dark hero */
    text-decoration: none;
    letter-spacing: 0.05em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--clr-gold);
}

/* --- HERO SECTION --- */
/* :root {
    --clr-navy: #171717;
    --clr-charcoal: #3F4141;
    --clr-white: #FFFFFF;
    --clr-light: #F9F9F9;

    --gold: #B89B5E;
    --gold-light: #D8C7A3;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;

    --container-max: 1280px;
} */

/* HERO */
:root {
    --clr-navy: #171717;
    --clr-charcoal: #3F4141;
    --clr-white: #ffffff;
    --clr-light: #f8f8f6;
    --clr-gold: #b89b5e;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

/* HERO */





.site-footer {
    background: #083335;
    padding: 100px 0 40px;
}

.site-footer .container {
    max-width: var(--container-max);
    margin: auto;
    padding: 0 40px;
}

.site-footer ul{
    list-style: none;
}

/* TOP */

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-brand h3 {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-weight: 400;
    font-size: 28px;
    letter-spacing: 1px;
    color: var(--clr-white);
    margin-bottom: 18px;
}

.footer-brand p {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    max-width: 280px;
}

.footer-heading {
    display: block;
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 22px;
}

.footer-col a,
.footer-address {
    display: block;
    font-family: var(--font-body);
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    margin-bottom: 14px;
    transition: color 0.25s ease;
}

.footer-col a:hover {
    color: var(--clr-white);
}

/* DIVIDER */

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin: 70px 0 30px;
}

/* BOTTOM */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    gap: 28px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-legal a:hover {
    color: var(--clr-white);
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        row-gap: 50px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
}