/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Mukta', sans-serif;
}

body {
    background-color: #fdf5e6; /* Antique White Background */
    color: #333;
}

/* Header & Nav */
header {
    background-color: #5b0e2d; /* Dark Maroon */
    color: #fff;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo h1 {
    font-size: 24px;
}

header .logo span {
    color: #f4d03f; /* Gold */
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #f4d03f;
}

/* Hero Section */
.hero {
    /* Replace with your own historical background image link below */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('http://veergatha.dixitji.in/head.png') center/cover;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero h2 {
    font-size: 40px;
    margin-bottom: 10px;
    color: #f4d03f;
}

.hero p {
    font-size: 20px;
}

/* Sections */
.section {
    padding: 60px 50px;
    text-align: center;
}

.section-title {
    font-size: 32px;
    color: #0c2461; /* Navy Blue */
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.dark-bg {
    background-color: #e5e0d8;
}

.text-light {
    color: #5b0e2d;
}

/* Cards */
.card-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background-color: #fff;
    width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border-bottom: 5px solid #5b0e2d;
}

.card:hover {
    transform: translateY(-10px);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card h3 {
    color: #0c2461;
    margin: 15px 0 10px;
}

.card p {
    padding: 0 15px 20px;
    font-size: 15px;
    color: #555;
}

.btn {
    display: inline-block;
    background-color: #cfb53b; /* Gold/Bronze */
    color: #fff;
    padding: 8px 20px;
    margin-bottom: 20px;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
}

.btn:hover {
    background-color: #5b0e2d;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

/* Detail Page Specific CSS */
.detail-page {
    background-color: #fdf5e6;
    padding: 50px 20px;
}

.detail-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 8px solid #5b0e2d;
}

.detail-title {
    font-size: 40px;
    color: #0c2461;
    margin-bottom: 10px;
    text-align: center;
}

.detail-subtitle {
    font-size: 20px;
    color: #cfb53b;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.detail-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
}

.detail-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

.detail-facts {
    background-color: #f8f9fa;
    padding: 20px;
    border-left: 5px solid #cfb53b;
    margin-bottom: 30px;
}

.detail-facts ul {
    list-style-type: square;
    margin-left: 20px;
}

.detail-facts li {
    font-size: 17px;
    margin-bottom: 10px;
    color: #333;
}

.back-btn {
    display: inline-block;
    background-color: #2c3e50;
    color: #fff;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

.back-btn:hover {
    background-color: #5b0e2d;
}