/* Variables */
:root {
    --background: hsl(210, 20%, 98%);
    --foreground: hsl(215, 28%, 10%);

    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(215, 28%, 10%);

    --primary: hsl(150, 59%, 30%);
    --primary-foreground: hsl(0, 0%, 100%);

    --secondary: hsl(0, 0%, 100%);
    --secondary-foreground: hsl(215, 28%, 10%);

    --muted: hsl(210, 20%, 96%);
    --muted-foreground: hsl(215, 16%, 47%);

    --accent: hsl(43, 72%, 52%);
    --accent-foreground: hsl(215, 28%, 10%);

    --destructive: hsl(0, 84%, 60%);
    --destructive-foreground: hsl(0, 0%, 100%);

    --border: hsl(214, 32%, 91%);
    --input: hsl(214, 32%, 91%);
    --ring: hsl(150, 59%, 30%);

    --radius: 0.5rem;

    --navy: hsl(222, 47%, 11%);
    --navy-foreground: hsl(0, 0%, 100%);

    --gold: hsl(43, 72%, 52%);
    --gold-foreground: hsl(215, 28%, 10%);

    --surface: hsl(210, 20%, 98%);
    --surface-alt: hsl(210, 17%, 95%);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: 'Open Sans', 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

img {
    max-width: 100%;
    display: block;
}

/* Layout Utilities */
.container-wide {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 5rem 1rem;
}

.section-padding-sm {
    padding: 3rem 1rem;
}

.bg-muted {
    background-color: var(--muted);
}

.bg-primary {
    background-color: var(--primary);
}

.bg-navy {
    background-color: var(--navy);
}

.text-white {
    color: white;
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8);
}

.text-center {
    text-align: center;
}

.relative {
    position: relative;
}

.p-large {
    padding: 2rem !important;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.pt-2 {
    padding-top: 1rem;
}

.border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.opacity-70 {
    opacity: 0.7;
}

.rounded-lg {
    border-radius: 0.75rem;
}

.shadow {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.items-center {
    align-items: center;
}

.grid {
    display: grid;
}

.grid-2 {
    grid-template-columns: repeat(1, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(1, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.grid-2.gap-2,
.grid-3.gap-2,
.grid-4.gap-2 {
    gap: 1.5rem;
}

.grid-2.gap-3,
.grid-3.gap-3,
.grid-4.gap-3 {
    gap: 3rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.glass-nav {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background-color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(214, 214, 214, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--navy);
}

.logo-subtext {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    font-weight: 600;
    margin-top: -0.25rem;
}

.nav-links {
    display: none;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
        gap: 2rem;
    }
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Buttons */
.btn-gold {
    background-color: var(--gold);
    color: var(--navy);
    padding: 0.875rem 2rem;
    border-radius: 0.375rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.btn-gold:hover {
    background-color: hsl(43, 72%, 46%);
    transform: translateY(-2px);
}

.btn-gold-sm {
    background-color: var(--gold);
    color: var(--navy);
    padding: 0.5rem 1.25rem;
    border-radius: 0.375rem;
    font-weight: 700;
    font-size: 0.875rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 0.375rem;
    font-weight: 700;
    display: inline-flex;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 0.375rem;
    font-weight: 700;
    display: inline-flex;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.7) 40%, rgba(15, 23, 42, 0.4) 100%);
}

.hero-content {
    color: white;
}

.hero-label {
    display: inline-block;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 4.5rem;
    }
}

.hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Section Header */
.section-header {
    margin-bottom: 4rem;
}

.subtitle {
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 1rem auto 0;
}

.heading-underline,
.heading-underline-center {
    position: relative;
    padding-bottom: 1rem;
}

.heading-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 4rem;
    height: 3px;
    background-color: var(--gold);
    border-radius: 1rem;
}

.heading-underline-center::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 3px;
    background-color: var(--gold);
    border-radius: 1rem;
}

/* Cards */
.card {
    background: var(--card);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(150, 59, 30, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
}

.icon-box-sm {
    width: 3rem;
    height: 3rem;
    background-color: rgba(150, 59, 30, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary);
}

.card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.card p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.text-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.875rem;
    margin-top: 1rem;
    display: inline-block;
}

/* Stats */
.stats {
    position: relative;
    background: url('../assets/post1.jpg') center/cover no-repeat;
    color: white;
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.85);
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
}

.stat-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    opacity: 0.7;
}

/* Animations (Simple versions) */
.fade-up {
    animation: fadeUp 0.8s ease-out forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--navy);
    transition: all 0.3s ease;
}