/* MMYVV - Maharishi Mahesh Yogi Vedic Vishwavidyalaya Styles */

/* ===== GENERAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ===== HEADER STYLES ===== */
.main-header {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    border-bottom: 3px solid #d68910;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: #fff;
    padding: 10px 0;
    border-bottom: 2px solid #f39c12;
}

.logo-container {
    text-align: center;
}

.logo-container img {
    max-width: 100%;
    height: auto;
}

/* Navigation */
.main-nav {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.nav-list > li {
    position: relative;
}

.nav-list > li > a {
    display: block;
    padding: 15px 18px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-list > li > a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    list-style: none;
    padding: 10px 0;
    z-index: 999;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: #f39c12;
    color: #fff;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    padding: 20px 0;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu ul li a {
    display: block;
    padding: 12px 20px;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #000;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.slide.active {
    display: block;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 50px;
    left: 50px;
    right: 50px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 20px;
    border-radius: 5px;
}

.slide-caption h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.slide-caption p {
    font-size: 16px;
    line-height: 1.5;
}

/* ===== INTRO SECTION ===== */
.intro-section {
    background: #2c3e50;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.intro-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.intro-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.btn {
    padding: 10px 20px;
    background: #f39c12;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* ===== MAIN CONTENT SECTIONS ===== */
.content-section {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.content-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.content-card h3 {
    font-size: 22px;
    color: #f39c12;
    margin-bottom: 15px;
}

.content-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.content-card ul {
    list-style: none;
    padding: 0;
}

.content-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.content-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f39c12;
    font-weight: bold;
}

/* ===== FOOTER ===== */
.main-footer {
    background: linear-gradient(to bottom, #2c3e50, #1a252f);
    color: #fff;
    padding: 40px 0 20px;
    border-top: 3px solid #f39c12;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #f39c12;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    padding: 5px 0;
}

.footer-section ul li a {
    color: #bdc3c7;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #f39c12;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #bdc3c7;
    margin: 5px 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #f39c12;
    transform: scale(1.1);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-list {
        display: none;
    }
    
    .hamburger {
        display: flex;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .hero-slider {
        height: 350px;
    }
    
    .slide-caption {
        bottom: 20px;
        left: 20px;
        right: 20px;
        padding: 15px;
    }
    
    .slide-caption h2 {
        font-size: 20px;
    }
    
    .slide-caption p {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.bg-gradient {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.bg-white {
    background: #fff;
}

.bg-gray {
    background: #ecf0f1;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.p-20 {
    padding: 20px;
}
