/* assets/css/style.css */
:root {
    --primary-color: #0f2b5c; /* Navy Blue */
    --secondary-color: #c5a059; /* Gold */
    --text-color: #333;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a1a;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Header & Nav */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
    font-size: 1.5rem;
}
.nav-link {
    color: #444 !important;
    font-weight: 500;
    transition: color 0.3s;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
}
.dropdown-menu {
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(15, 43, 92, 0.8), rgba(15, 43, 92, 0.8)), url('../img/hero-placeholder.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}
.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Cards */
.card-custom {
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.card-img-top {
    height: 200px;
    object-fit: cover;
}
.card-body {
    padding: 1.5rem;
}
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 15px;
}
.section-title::after {
    content: '';
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 50px 0 20px;
}
footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}
footer a:hover {
    color: white;
}
.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    display: inline-block;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-primary:hover {
    background-color: #0a1f42;
    border-color: #0a1f42;
}
.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}
.btn-gold {
    background-color: var(--secondary-color);
    color: white;
    border: none;
}
.btn-gold:hover {
    background-color: #b08d4b;
    color: white;
}
