@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@800&family=Playfair+Display:ital,wght@1,700&display=swap');

:root {
    --dark-forest: #0B1A14;
    --forest: #1B4332;
    --sage: #40916C;
    --light-sage: #D8E2DC;
    --alabaster: #F4F1EA;
    --gold-accent: #C2A878;
    --subtle-gray: #F8FAFC;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-forest);
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

/* Updated Button using Brand Colors */
.btn-gradient {
    background: linear-gradient(135deg, var(--forest) 0%, var(--sage) 100%);
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}
.team-role {
    font-size: 12px !important;
    color: var(--gold-accent) !important; /* Forces the gold color to appear */
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-top: 0.25rem;
    font-family: 'Inter', sans-serif;
}


.nav-link {
    color: var(--forest);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--gold-accent);
}

/* --- Learning Hub Styles --- */

.module-card {
    padding: 2.5rem;
    border-radius: 0 !important; /* Forces sharp corners */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}


/* Ensure the bottom toolkit boxes are also sharp */
#learning-hub .grid.md\:grid-cols-2 p {
    font-size: 1rem !important; /* Adjust to 0.875rem if you want it slightly smaller */
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.module-number {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

/* Phosphor Icon Styling */
.ph {
    line-height: 1;
}

/* Custom Transition for the links */
#learning-hub a i {
    transition: transform 0.2s ease;
}

#learning-hub a:hover i {
    transform: translateX(5px);
}

/* Modern & Professional Form Styles */
.form-input {
    width: 100%;
    background-color: var(--alabaster);
    border: 1px solid transparent;
    border-bottom: 2px solid rgba(11, 26, 20, 0.1); /* Subtle dark forest underline */
    padding: 1rem 1.25rem;
    font-family: 'Inter', sans-serif;
    color: var(--dark-forest);
    outline: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.form-input::placeholder {
    color: rgba(11, 26, 20, 0.4);
    font-size: 0.9rem;
}

.form-input:focus {
    background-color: #ffffff; /* Turns pure white on focus */
    border-bottom-color: var(--gold-accent);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03); /* Very subtle lift */
    transform: translateY(-1px);
}

/* Specific styling for the Select to handle the dropdown arrow */
select.form-input {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23C2A878'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2em;
}

/* Hover state for the submit button to match the premium feel */
.btn-gradient {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--sage) 0%, var(--forest) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.btn-gradient:hover::before {
    opacity: 1;
}
/* Utility for removing rounded corners as requested */
.rounded-none {
    border-radius: 0px !important;
}
#hero-title {
    /* 1.2 to 1.3 is ideal for large display titles */
    line-height: 1.2 !important; 
    
    /* Optional: Ensure the 'br' doesn't cause extra large gaps */
    display: block; 
}

/* If you want to push the second line specifically even further */
#hero-title span {
    display: inline-block;
    margin-top: 0.25rem; 
}
#about {
    background-color: #F8FAFC !important; /* Subtle Grey */
}

/* Square Container Styles */
.group .aspect-square {
    max-width: 300px; 
    margin-left: auto;
    margin-right: auto; 
    border: none;
}


/* Text alignment to match your preferred look */
.group h5 {
    font-size: 1.125rem;
    margin-top: 1rem;
    color: var(--dark-forest);
}

.group p {
    font-size: 0.75rem;
    color: #F8FAFC;
    letter-spacing: 0.05em;
}
/* Typography & Layout for Mission Section */
#about .font-playfair {
    font-style: normal !important; /* Forces removal of italics */
}

/* Creating a "Premium" feel for the mission text */
#about h3 {
    font-family: 'Montserrat', sans-serif;
    /* 2026 Trend: Slightly tighter letter spacing for bold headers */
    letter-spacing: -0.02em;
}


.text-center.max-w-4xl h3 {
    line-height: 1.35;
    letter-spacing: -0.015em;
}