/* Simple CSS for ISKCON Janmashtami */

:root {
    --maroon: #7b1831;
    --gold: #ffd700;
    --dark-green: #388e3c;
    --light-cream: #fffaf0;
    --text-dark: #333;
    --text-light: #555;
}

body {
    background: var(--light-cream);
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    transition: color 0.2s;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #fff;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.07);
    border: 1px solid #eee;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--maroon);
}

.text-maroon { color: var(--maroon); }
.bg-maroon { background: var(--maroon) !important; }

.btn-success {
    background: var(--dark-green);
    border: none;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
}

.btn-success:hover { 
    background: #2e7031; 
}

.btn-maroon {
    background: var(--maroon);
    color: #fff;
    border: none;
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 8px;
}

.btn-maroon:hover { 
    background: #5a1224; 
    color: #fff; 
}
.hero-banner-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    overflow: hidden;
  }
  
  .hero-video-background {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    position: relative;
  }
  
  .hero-video-background iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  
/* Content Cards */
.content-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.section-subtitle {
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.highlight-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid var(--dark-green);
}

.benefit-item {
    padding: 15px;
    border-radius: 12px;
    background: #fafafa;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #f5f5f5;
    transform: translateX(5px);
}

/* Form Styles */
.form-control, .form-select {
    border-radius: 8px;
    padding: 12px 16px;
    border: 1px solid #ddd;
}

.form-control:focus, .form-select:focus {
    border-color: var(--maroon);
    box-shadow: 0 0 0 3px rgba(123, 24, 49, 0.1);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
}

/* Amount Selector Grid */
.amount-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 12px;
}

.amount-btn {
    background: #f5f5f5;
    color: var(--text-dark);
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 5px;
    transition: all 0.2s;
}

.amount-btn.active,
.amount-btn:hover {
    background: var(--maroon);
    color: #fff;
    border-color: var(--maroon);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(123, 24, 49, 0.2);
}

/* Route Info Card */
.route-card-body {
    background-color: #fdfaf5;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #f0e9dd;
}

.route-card-body .list-group-item {
    background: transparent;
    border: none;
    font-weight: 500;
    padding: .25rem 0;
    color: var(--maroon);
}

.route-list-item {
    color: var(--maroon);
    font-weight: 500;
    padding: .25rem 0;
}

/* Total section */
.total-section {
    background: linear-gradient(135deg, var(--maroon) 0%, #5a1224 100%);
    border-radius: 15px;
}

.total-amount h3 {
    color: var(--gold);
}

#totalAmount {
    color: var(--gold);
    font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    
    .content-card {
        margin-bottom: 20px;
    }
} 