/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');

/* CSS Custom Properties */
:root {
    --navy: #0D1B2A;
    --card-navy: #1A2A3A;
    --gold: #D4A017;
    --gold-light: #E6B429;
    --gold-dark: #B8860B;
    --white: #FFFFFF;
    --gray-soft: #A0AEC0;
    --navy-light: #1A2A3A;
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Century Gothic', 'Montserrat', sans-serif;
    /* Remove default background and color - let Tailwind handle it */
    line-height: 1.6;
}

/* Typography Utilities */
.font-heading {
    font-family: 'Montserrat', sans-serif;
}

.font-body {
    font-family: 'Century Gothic', 'Montserrat', sans-serif;
}

.gold-label {
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.gold-underline {
    display: inline-block;
    position: relative;
    padding-bottom: 0.5rem;
}

.gold-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--gold);
}

/* Card Styles */
.yeen-card {
    background-color: var(--card-navy);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.yeen-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.2);
}

.card-gold-top {
    border-top: 4px solid var(--gold);
}

.card-gold-left {
    border-left: 4px solid var(--gold);
}

.card-teal-left {
    border-left: 4px solid #14B8A6;
}

.card-blue-left {
    border-left: 4px solid #3B82F6;
}

.card-green-left {
    border-left: 4px solid #10B981;
}

.card-purple-left {
    border-left: 4px solid #8B5CF6;
}

.card-red-left {
    border-left: 4px solid #EF4444;
}

/* Button Styles */
.btn-gold-pill {
    display: inline-block;
    background-color: var(--gold);
    color: var(--navy);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-gold-pill:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 160, 23, 0.4);
}

.btn-ghost-white {
    display: inline-block;
    background-color: transparent;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 2px solid var(--white);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-ghost-white:hover {
    background-color: var(--white);
    color: var(--navy);
    transform: translateY(-2px);
}

.btn-gold-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--gold);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 2px solid var(--gold);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-gold-outline:hover {
    background-color: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}

/* Navigation Link Hover Effect */
.nav-link {
    position: relative;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--gold);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 10px;
}

.hamburger span:nth-child(3) {
    top: 20px;
}

.hamburger.open span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.hamburger.open span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--navy);
    z-index: 40;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.open {
    transform: translateX(0);
}

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
}

.fade-in-up.visible {
    animation: fadeInUp 0.8s ease forwards;
}

/* Float Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Gold Glow Effect */
.gold-glow {
    box-shadow: 0 0 20px rgba(212, 160, 23, 0.3);
}

/* Stat Number */
.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

/* Splash Overlay */
.splash-overlay {
    position: relative;
    background-size: cover;
    background-position: center;
}

.splash-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.85), rgba(13, 27, 42, 0.75));
    z-index: 1;
}

.splash-overlay > * {
    position: relative;
    z-index: 2;
}

/* Dashboard Layout Styles */
.dash-sidebar {
    width: 260px;
    background-color: var(--card-navy);
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    overflow-y: auto;
    border-right: 2px solid var(--gold);
}

.dash-nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: var(--gray-soft);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.dash-nav-link:hover,
.dash-nav-link.active {
    background-color: rgba(212, 160, 23, 0.1);
    color: var(--gold);
    border-left-color: var(--gold);
}

.dash-content {
    margin-left: 260px;
    min-height: 100vh;
    background-color: var(--navy);
}

.dash-topbar {
    background-color: var(--card-navy);
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(212, 160, 23, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dash-stat-card {
    background: linear-gradient(135deg, var(--card-navy) 0%, rgba(26, 42, 58, 0.8) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid var(--gold);
    transition: all 0.3s ease;
}

.dash-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .dash-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 50;
    }
    
    .dash-sidebar.open {
        transform: translateX(0);
    }
    
    .dash-content {
        margin-left: 0;
    }
}


/* Float Animation for Hero Card */
.float-animation {
    animation: float 6s ease-in-out infinite;
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 0.05;
        transform: scale(1);
    }
    50% {
        opacity: 0.1;
        transform: scale(1.1);
    }
}

.animate-pulse {
    animation: pulse 4s ease-in-out infinite;
}

/* Hover Lift */
.hover\:scale-105:hover {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .float-animation {
        transform: rotate(0deg) !important;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 2.5rem !important;
    }
    
    .section-title {
        font-size: 2rem !important;
    }
}


/* FAQ Accordion Styles */
.faq-item {
    cursor: pointer;
}

.faq-question {
    padding: 1.5rem;
}

.faq-answer {
    padding: 0 1.5rem;
}

.faq-chevron {
    transform: rotate(0deg);
}


/* Light Navigation Link */
.nav-link-light {
    position: relative;
    color: #0D1B2A;
    text-decoration: none;
    font-weight: 600;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.nav-link-light::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-link-light:hover,
.nav-link-light.active {
    color: var(--gold);
}

.nav-link-light:hover::after,
.nav-link-light.active::after {
    width: 100%;
}

/* Navy Outline Button */
.btn-navy-outline {
    display: inline-block;
    background-color: transparent;
    color: #0D1B2A;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 2px solid #0D1B2A;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-navy-outline:hover {
    background-color: #0D1B2A;
    color: var(--white);
    transform: translateY(-2px);
}

/* Light Backgrounds */
.bg-light {
    background-color: #F8F9FA;
}

.bg-gray-50 {
    background-color: #F9FAFB;
}

.bg-gray-100 {
    background-color: #F3F4F6;
}
