/* ExploreKashi - Modern Spiritual Design System */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --bg-dark: #12090D;
    --bg-card: #1C1217;
    --maroon-deep: #4A0E17;
    --maroon-dark: #2B070C;
    --saffron-bright: #FF8F00;
    --saffron-deep: #E65100;
    --gold-warm: #D4AF37;
    --gold-light: #F3E5AB;
    --cream-light: #FAF6EE;
    --text-muted: #A89B9D;
    --border-color: rgba(212, 175, 55, 0.2);
    --glass-bg: rgba(28, 18, 23, 0.85);
    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.15);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--cream-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: 1px;
    color: var(--gold-light);
}

a {
    color: var(--saffron-bright);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--gold-warm);
}

/* Header & Navbar */
.ek-navbar {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ek-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-warm);
}

.ek-brand span {
    color: var(--saffron-bright);
}

.ek-nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.ek-nav-links a {
    color: var(--cream-light);
    font-size: 0.95rem;
    font-weight: 500;
}

.ek-nav-links a:hover,
.ek-nav-links a.active {
    color: var(--saffron-bright);
}

/* Buttons */
.btn-ek-primary {
    background: linear-gradient(135deg, var(--saffron-deep), var(--saffron-bright));
    color: #fff !important;
    padding: 0.75rem 1.8rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(230, 81, 0, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-ek-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 143, 0, 0.6);
}

.btn-ek-outline {
    border: 1px solid var(--gold-warm);
    color: var(--gold-light) !important;
    padding: 0.75rem 1.8rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    background: transparent;
}

.btn-ek-outline:hover {
    background: var(--gold-warm);
    color: var(--bg-dark) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, rgba(18,9,13,0.4) 0%, var(--bg-dark) 100%), url('../images/rohit-dey-Ndcdl6X3fY4-unsplash.jpg') center/cover no-repeat;
    padding: 4rem 1.5rem;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--gold-light), var(--saffron-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.hero-subheading {
    font-size: 1.25rem;
    color: var(--cream-light);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* Section Headings */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

/* Today's Kashi Bar */
.today-bar {
    background: var(--maroon-deep);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.today-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.today-item i {
    color: var(--saffron-bright);
    font-size: 1.2rem;
}

/* Layout Grids */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

/* Cards */
.ek-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ek-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-warm);
    box-shadow: var(--shadow-gold);
}

.ek-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.ek-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Badges */
.ek-badge {
    background: var(--maroon-deep);
    color: var(--gold-light);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-live {
    background: #D32F2F;
    color: #fff;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* Footer */
.ek-footer {
    background: var(--maroon-dark);
    border-top: 1px solid var(--border-color);
    padding: 4rem 2rem 2rem;
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

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