/* style.css - Complete UI Overhaul */

/* --- 1. Global Reset & Typography --- */
body {
    font-family: 'Inter', sans-serif;
    background-color: #F8FAFC; /* Clean, light gray background */
    color: #1F2937;
    -webkit-font-smoothing: antialiased;
}

/* --- 2. Animations --- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
    animation: fadeUp 0.6s ease-out forwards;
}

/* --- 3. Component: Modern Buttons --- */
.btn-primary {
    background: linear-gradient(135deg, #483AA0 0%, #3A2E80 100%);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(72, 58, 160, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(72, 58, 160, 0.4);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    border: 2px solid #E3D095;
    color: #E3D095;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #E3D095;
    color: #0E2148;
}

/* --- 4. Component: Modern Cards --- */
.card-modern {
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #E3D095;
}

.card-image-wrapper {
    position: relative;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
    background: #f3f4f6;
}

.card-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-modern:hover .card-image-wrapper img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(14, 33, 72, 0.9);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
    z-index: 10;
}

/* --- 5. Static Hero Section --- */
.hero-wrapper {
    position: relative;
    height: 80vh; /* Taller hero */
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    background: linear-gradient(to right, rgba(14, 33, 72, 0.95) 0%, rgba(14, 33, 72, 0.4) 100%);
    position: absolute;
    inset: 0;
    z-index: 1;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3rem;
    border-radius: 24px;
    max-width: 800px;
    z-index: 10;
    position: relative;
}

/* --- 6. Section Headings --- */
.section-heading-modern {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0E2148;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-subtext {
    color: #6B7280;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}