@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Mukta:wght@300;400;600;700&display=swap');

:root {
    --primary: #002366; /* Royal Navy Blue - Professional */
    --secondary: #8B0000; /* Deep Crimson - Institutional */
    --accent: #B8860B; /* Dark Goldenrod - subtle */
    --background: #ffffff;
    --surface: #f8f9fa;
    --border: #e9ecef;
    --text: #212529;
    --text-muted: #6c757d;
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Mukta', 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

/* Header & Nav */
header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 3px solid var(--primary);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--primary);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--secondary);
}

/* Hero Section - Flat Approach */
.hero {
    padding: 6rem 2rem;
    background-color: var(--surface);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 900px;
}

.hero-tag {
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: block;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--primary);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

/* Sections */
section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 5px solid var(--secondary);
    padding-left: 1.5rem;
}

/* About Section - Flat/News Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
}

.profile-img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 10px 10px 0 var(--primary);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #444;
}

/* Stats/Cards - Flat Approach */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: #ffffff;
    padding: 3rem 2rem;
    border: 1px solid var(--border);
    border-top: 4px solid var(--primary);
    transition: 0.2s;
}

.stat-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top-color: var(--secondary);
}

.stat-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

/* Timeline - Formal */
.timeline {
    margin-top: 2rem;
}

.timeline-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}

.timeline-item h3 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

/* Gallery - Clean Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1rem;
}

.gallery-item {
    aspect-ratio: 16/9;
    background: var(--surface);
    border: 1px solid var(--border);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact/Footer - Formal */
footer {
    background: var(--primary);
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

footer .logo {
    color: #ffffff;
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--primary);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}

.btn:hover {
    background: var(--secondary);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}
