:root {
    /* Religious Theme Palette - Enhanced */
    --saffron: #FF9933;
    --saffron-bright: #FFB366;
    --deep-red: #800000;
    --deep-red-dark: #600000;
    --gold: #FFD700;
    --gold-soft: #FFF4CC;
    --cream: #FFFDF5;
    --dark: #2D2D2D;
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.95);
    --shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    background-color: var(--cream);
    background-image: url("https://www.transparenttextures.com/patterns/pinstriped-suit.png"); /* Subtle texture */
    color: var(--dark);
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--deep-red);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Navigation Bar */
header {
    background: var(--glass);
    backdrop-filter: blur(15px);
    position: sticky;
    top: 40px; /* Space for the Info bar */
    z-index: 1000;
    box-shadow: var(--shadow);
    padding: 1.2rem 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.info-bar {
    background: var(--deep-red);
    color: var(--gold);
    text-align: center;
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    position: sticky;
    top: 0;
    z-index: 1001;
    text-transform: uppercase;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--deep-red);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    font-weight: 600;
    color: var(--dark);
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--saffron);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--saffron), var(--deep-red));
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(128, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(128, 0, 0, 0.4);
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('hero.jpg') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 5%;
}

.hero h1 {
    font-size: 4rem;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin-bottom: 2rem;
}

/* Sections */
section {
    padding: 5rem 10%;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--gold);
}

/* Route Grid */
.route-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.route-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.route-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(128, 0, 0, 0.15);
}

.route-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--saffron), var(--gold));
    opacity: 0;
    transition: var(--transition);
}

.route-card:hover::before {
    opacity: 1;
}

.dev-credit {
    font-size: 0.9rem;
    color: var(--gold);
    margin-top: 2rem;
    display: block;
    text-shadow: none;
}

.dev-credit a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 800;
}

.dev-credit a:hover {
    color: var(--gold);
}

.route-card i {
    font-size: 2.5rem;
    color: var(--saffron);
    margin-bottom: 1.5rem;
    display: block;
}

/* Utility Classes */
.u-max-width { max-width: 1200px; margin: 0 auto; }
.u-padding-main { padding: 4rem 8%; }
.u-flex-between { display: flex; justify-content: space-between; align-items: center; }
.u-text-center { text-align: center; }
.u-margin-b-1 { margin-bottom: 1rem; }
.u-margin-b-2 { margin-bottom: 2rem; }
.u-card-white { background: var(--white); border-radius: 24px; box-shadow: var(--shadow); padding: 3rem; }
.u-gold-text { color: var(--gold); }
.u-saffron-text { color: var(--saffron); }
.u-font-bold { font-weight: 800; }

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.5rem; }
}

/* AdSense Placeholder style */
.ads-placeholder {
    background: #f4f4f4;
    border: 1px dashed #ccc;
    text-align: center;
    padding: 20px;
    margin: 20px 0;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 0.8rem;
}
