html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Festival-specific styles */
.hero-section {
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ffcd02);
    background-size: 400% 400%;
    animation: festivalGradient 8s ease infinite;
}

@keyframes festivalGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.navbar-brand {
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
}

/* Festive animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.hero-section h1 {
    animation: bounce 2s infinite;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0 !important;
    }
    
    .hero-section h1 {
        font-size: 2rem !important;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
}

/* Festival colors */
.text-festival-orange { color: #ff6b35; }
.text-festival-yellow { color: #ffcd02; }
.bg-festival-orange { background-color: #ff6b35; }
.bg-festival-yellow { background-color: #ffcd02; }

/* Custom button styles */
.btn-festival {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border: none;
    color: white;
    font-weight: bold;
}

.btn-festival:hover {
    background: linear-gradient(45deg, #e55a2e, #e0821b);
    color: white;
}