@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@400;600;700&display=swap');

:root {
    --theme-dark-green: #1D3C2A;
    --theme-light-green: #749444;
    --theme-accent-gold: #B6A05E;
    --theme-white: #FFFFFF;
    --theme-glass: rgba(255, 255, 255, 0.1);
    --theme-glass-border: rgba(255, 255, 255, 0.2);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--theme-dark-green);
    color: var(--theme-white);
    line-height: 1.6;
    overflow-x: hidden;
}


/* --- Common Components --- */
.sub-label {
    display: inline-block;
    color: var(--theme-accent-gold);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-heading {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
}

.section-heading {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
}

.social-icon {
    width: 2.75rem; /* 44px */
    height: 2.75rem; /* 44px */
    border-radius: 9999px;
    background-color: var(--theme-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-white);
    border: 1px solid var(--theme-glass-border);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--theme-accent-gold);
    color: var(--theme-dark-green);
    transform: translateY(-0.25rem);
    border-color: var(--theme-accent-gold);
}

.btn-primary {
    display: inline-block;
    background-color: var(--theme-dark-green);
    color: var(--theme-white);
    font-weight: 700;
    transition: all 0.3s ease;
    border-radius: 0.75rem; /* rounded-xl */
}

.btn-primary:hover {
    background-color: var(--theme-accent-gold);
    color: var(--theme-dark-green);
    transform: translateY(-0.25rem);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.nav-link {
    color: var(--theme-white);
    font-weight: 500;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    opacity: 1;
    color: var(--theme-accent-gold);
}

.footer-link {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: block;
}

.footer-link:hover {
    color: var(--theme-accent-gold);
    transform: translateX(0.375rem); /* translate-x-1.5 */
}

.mentor-card {
    position: relative;
    background-color: var(--theme-white);
    border-radius: 1.5rem; /* rounded-3xl */
    overflow: hidden;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
    border: 1px solid rgba(0, 0, 0, 0.05); /* border-black/5 */
    transition: all 0.3s ease;
}

.mentor-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* shadow-2xl */
    transform: translateY(-0.5rem); /* -translate-y-2 */
}

.social-icon.variant-profile {
    background-color: #f3f4f6;
    color: rgba(29, 60, 42, 0.6);
    border-color: transparent;
}

.social-icon.variant-profile:hover {
    background-color: var(--theme-accent-gold);
    color: var(--theme-white);
}

/* --- Layout Components --- */
.section-padding {
    padding-top: 6rem; /* py-24 */
    padding-bottom: 6rem; /* py-24 */
    padding-left: 5%;
    padding-right: 5%;
}

/* .hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(29,60,42,0.55) 0%, rgba(29,60,42,0.92) 100%);
    z-index: 10;
} */

.btn-pill {
    display: inline-block;
    background-color: var(--theme-accent-gold);
    color: var(--theme-dark-green);
    padding: 0.5rem 1.25rem; /* py-2 px-5 */
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem; /* text-sm */
    transition: all 0.3s ease;
    white-space: nowrap;
}

@media (min-width: 640px) {
    .btn-pill {
        padding: 0.625rem 1.5rem; /* sm:py-2.5 sm:px-6 */
    }
}

.btn-pill:hover {
    background-color: var(--theme-white);
    color: var(--theme-dark-green);
    transform: translateY(-0.1rem);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.owl--hero {
    position: absolute !important;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.owl--hero .owl-stage-outer,
.owl--hero .owl-stage,
.owl--hero .owl-item {
    height: 100%;
}

.owl--hero .slide {
    width: 100%;
    height: 100%;
}

.owl--hero .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
