/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #fff8e1 0%, #ffe0b2 100%);
    min-height: 100vh;
}

/* Header and Navigation */
.navbar {
    background: linear-gradient(135deg, #ff6f00 0%, #ff8f00 100%);
    box-shadow: 0 2px 10px rgba(255, 111, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo h1 {
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 10px 15px;
    border-radius: 5px;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Layout */
main {
    display: grid;
    grid-template-columns: 250px 1fr 250px;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    min-height: calc(100vh - 140px);
}

/* Sidebars */
.left-sidebar,
.right-sidebar {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 90px;
}

.sidebar-section {
    margin-bottom: 30px;
}

.sidebar-section h3 {
    color: #ff6f00;
    margin-bottom: 15px;
    font-size: 1.1rem;
    border-bottom: 2px solid #ffe0b2;
    padding-bottom: 5px;
}

.sidebar-section ul {
    list-style: none;
}

.sidebar-section ul li {
    margin-bottom: 8px;
}

.sidebar-section ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 10px;
    border-radius: 5px;
}

.sidebar-section ul li a:hover {
    color: #ff6f00;
    background: #fff8e1;
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    display: block;
    padding: 10px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    color: #666;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.social-link.facebook:hover { background: #1877f2; color: white; }
.social-link.instagram:hover { background: #e4405f; color: white; }
.social-link.youtube:hover { background: #ff0000; color: white; }
.social-link.twitter:hover { background: #1da1f2; color: white; }

/* Updates Section */
.update-item {
    background: #fff8e1;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid #ff6f00;
}

.update-item h4 {
    color: #ff6f00;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.update-item p {
    font-size: 0.8rem;
    color: #666;
}

/* Main Content */
.main-content {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
    padding: 40px 0;
    background: linear-gradient(135deg, #fff8e1 0%, #ffe0b2 100%);
    border-radius: 15px;
    padding: 40px;
}

.hero-content h1 {
    font-size: 2.5rem;
    color: #ff6f00;
    margin-bottom: 15px;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6f00 0%, #ff8f00 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 111, 0, 0.3);
}

.btn-secondary {
    background: white;
    color: #ff6f00;
    border: 2px solid #ff6f00;
}

.btn-secondary:hover {
    background: #ff6f00;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #ff6f00;
    border: 2px solid #ff6f00;
}

.btn-outline:hover {
    background: #ff6f00;
    color: white;
}

/* Sections */
section {
    margin-bottom: 50px;
}

section h2 {
    font-size: 2rem;
    color: #ff6f00;
    margin-bottom: 30px;
    text-align: center;
}

/* Festival Grid */
.festival-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.festival-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.festival-info {
    padding: 20px;
}

.festival-info h3 {
    color: #ff6f00;
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.festival-info p {
    color: #666;
    margin-bottom: 10px;
}

.festival-info .date {
    color: #ff8f00;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-card iframe {
    width: 100%;
    height: 200px;
    border: none;
}

.video-card h3 {
    padding: 15px 20px;
    color: #ff6f00;
    text-align: center;
}

/* Calendar Section */
.calendar-section {
    background: linear-gradient(135deg, #fff8e1 0%, #ffe0b2 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.calendar-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
}

.calendar-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #ff6f00 0%, #ff8f00 100%);
    color: white;
    padding: 40px 0 20px;
    margin-top: 50px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    main {
        grid-template-columns: 200px 1fr 200px;
        gap: 15px;
        padding: 15px;
    }
    
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    main {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .left-sidebar,
    .right-sidebar {
        position: static;
        order: 2;
    }
    
    .main-content {
        order: 1;
    }
    
    .hero {
        padding: 30px 20px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .festival-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .calendar-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    main {
        padding: 10px;
    }
    
    .main-content {
        padding: 20px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States for Accessibility */
a:focus,
button:focus {
    outline: 2px solid #ff6f00;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .left-sidebar,
    .right-sidebar,
    .hamburger {
        display: none;
    }
    
    main {
        grid-template-columns: 1fr;
    }
    
    .hero {
        background: none;
    }
}
