/* Main CSS for ABKKKM Foundation */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Teko', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    background-color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bakbak One', cursive;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1.1rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
}

small, .small {
    font-size: 1rem;
}

label, .form-label {
    font-size: 1.1rem;
    font-weight: 600;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
textarea,
select {
    font-size: 1.1rem;
    padding: 12px 15px;
}

.card-body, .content-card {
    font-size: 1.1rem;
}

.card-title {
    font-size: 1.5rem;
}

.lead {
    font-size: 1.3rem;
}

/* Header Styles */
.header-section {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    position: relative;
    overflow: hidden;
}

.header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.header-section .container {
    position: relative;
    z-index: 2;
}

/* Navigation Styles */
.main-navbar-container {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-link {
    color: white !important;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffd700 !important;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
}

.dropdown-menu {
    background: white;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 5px;
}

.dropdown-item {
    color: #333;
    font-size: 17px;
    padding: 12px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: #ff6b35 !important;
    color: white !important;
    transform: translateX(5px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/uttarakhand-headerbackground.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 107, 53, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Bakbak One', cursive;
    font-size: 5rem;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    font-weight: 700;
}

.hero-subtitle {
    font-family: 'Teko', sans-serif;
    font-size: 2rem;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    font-weight: 600;
}

.hero-description {
    font-size: 1.3rem;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    opacity: 0.95;
}

/* Button Styles */
.btn {
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    padding: 12px 24px;
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 3px solid white;
}

.btn-outline-light:hover {
    background: white !important;
    color: #ff6b35 !important;
    border-color: white !important;
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    padding: 80px 0;
    position: relative;
}

.stat-item {
    background: rgba(255,255,255,0.1);
    padding: 40px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    background: rgba(255,255,255,0.15);
}

.stat-icon i {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-number {
    font-family: 'Bakbak One', cursive;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-family: 'Teko', sans-serif;
    font-size: 1.2rem;
    color: #ffd700;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Floating Buttons */
.floating-buttons {
    position: fixed !important;
    left: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 1000 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
}

.floating-buttons a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.floating-buttons a:hover {
    transform: translateX(5px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Social Icons */
.header-social-icons a {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: #ff6b35;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    margin-right: 6px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.header-social-icons a:hover {
    background: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0 20px;
}

.footer-title {
    color: #ffd700;
    font-family: 'Bakbak One', cursive;
    margin-bottom: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: #ffd700 !important;
    transform: translateX(5px);
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

.footer-social a:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.floating-shape {
    animation: float 6s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .floating-buttons {
        left: 10px;
        gap: 10px;
    }
    
    .floating-buttons a {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .floating-buttons a[title*="Call"],
    .floating-buttons a[title*="WhatsApp"] {
        width: 50px;
        height: 50px;
    }
    
    .header-social-icons a {
        width: 28px;
        height: 28px;
        line-height: 28px;
        margin-right: 4px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stat-item {
        padding: 30px 15px;
    }
    
    .stat-icon i {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

/* Utility Classes */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.bg-gradient-orange {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.bg-gradient-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Google Translate Widget */
.google-translate-container {
    margin-top: 8px;
    padding: 5px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

#google_translate_element .goog-te-gadget-simple {
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    padding: 4px 6px;
    font-size: 11px;
    line-height: 1.2;
    display: inline-block;
    cursor: pointer;
    zoom: 1;
    min-width: 100px;
}

#google_translate_element .goog-te-gadget-simple:hover {
    background-color: rgba(255,255,255,0.2);
}

#google_translate_element .goog-te-gadget-simple .goog-te-menu-value {
    color: #fff;
    font-size: 11px;
}

#google_translate_element .goog-te-gadget-simple .goog-te-menu-value span {
    color: #fff !important;
}

#google_translate_element .goog-te-gadget-simple .goog-te-menu-value:before {
    content: '\f0ac';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 5px;
    color: #fff;
    font-size: 10px;
}

/* Hide Google Translate banner */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0px !important;
}

/* Ensure floating buttons are always visible */
.floating-buttons {
    position: fixed !important;
    left: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 9999 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
}

/* Ensure hero section has orange background */
.hero-section {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
}

/* Top header section should be white */
.header-section {
    background: white !important;
    border-bottom: 1px solid #e0e0e0;
}

/* Force orange background on sections that should be orange */
.header-bottom-bar,
.main-navbar-container,
.stats-section,
.hero-section {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
}

/* Override any conflicting styles */
body .header-section {
    background: white !important;
    border-bottom: 1px solid #e0e0e0;
}

body .header-bottom-bar,
body .main-navbar-container,
body .stats-section,
body .hero-section {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
}
