/* ============================================
   Kinderoase - Responsive Kindergarten Stylesheet
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #5A5A5A;
    background-color: #FFF9F0;
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

h1, h2, h3, h4 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color: #4A4A4A;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); margin-bottom: 1rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }

p {
    margin-bottom: 1rem;
}

/* === Navigation === */
.main-nav {
    background: linear-gradient(135deg, #FFB347 0%, #FFCC99 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 179, 71, 0.3);
    padding-bottom: 0.5rem;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    font-weight: 700;
    color: white;
    white-space: nowrap;
}

.logo-icon {
    font-size: clamp(1.5rem, 5vw, 2rem);
    animation: gentle-bounce 2s ease-in-out infinite;
}

@keyframes gentle-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(0.5rem, 2vw, 2rem);
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 0.8rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: clamp(0.75rem, 2vw, 1rem);
    white-space: nowrap;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.nav-menu a.active {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.nav-icon {
    font-size: clamp(0.8rem, 2.5vw, 1.2rem);
}

/* === Hamburger Menu === */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    gap: 0.5rem;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.hamburger-line {
    width: 32px;
    height: 4px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.hamburger.show {
    display: flex;
}

/* === Hero Section === */
.hero {
    background: linear-gradient(135deg, #87CEEB 0%, #98D8C8 100%);
    padding: clamp(3rem, 8vw, 8rem) 1.5rem clamp(2rem, 6vw, 6rem);
    text-align: center;
    position: relative;
    overflow: hidden;
    clip-path: ellipse(120% 100% at 50% 0%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    color: white;
    font-size: clamp(2rem, 8vw, 3.5rem);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: fade-in-up 0.8s ease-out;
}

.hero-subtitle {
    color: white;
    font-size: clamp(1rem, 4vw, 1.5rem);
    margin-bottom: 2rem;
    animation: fade-in-up 0.8s ease-out 0.2s backwards;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === Floating Elements === */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-cloud, .float-star {
    position: absolute;
    font-size: clamp(1.5rem, 5vw, 3rem);
    opacity: 0.6;
}

.cloud-1 { top: 10%; left: 5%; animation: float 6s ease-in-out infinite; }
.cloud-2 { top: 20%; right: 5%; animation: float 8s ease-in-out infinite 1s; }
.star-1 { top: 30%; left: 10%; animation: twinkle 3s ease-in-out infinite; }
.star-2 { top: 15%; right: 10%; animation: twinkle 4s ease-in-out infinite 1.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-20px) translateX(10px); }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* === CTA Button === */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #FFB347 0%, #FF6B6B 100%);
    color: white;
    padding: clamp(0.8rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
    animation: fade-in-up 0.8s ease-out 0.4s backwards;
    border: none;
    cursor: pointer;
    margin: 0.5rem;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}

.cta-secondary {
    background: linear-gradient(135deg, #B19CD9 0%, #87CEEB 100%);
    box-shadow: 0 8px 25px rgba(177, 156, 217, 0.3);
}

/* === Main Content === */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.content-section {
    padding: clamp(2rem, 6vw, 4rem) 0;
}

.section-alt {
    background: linear-gradient(to bottom, transparent 0%, #F5F5F5 20%, #F5F5F5 80%, transparent 100%);
    margin: 0 -1rem;
    padding: clamp(2rem, 6vw, 4rem) 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(1.5rem, 4vw, 3rem);
}

.decorative-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #FFB347, #87CEEB, #98D8C8);
    margin: 1rem auto;
    border-radius: 2px;
}

/* === Content Grid === */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 4vw, 3rem);
    margin-top: 2rem;
}

.content-card {
    background: white;
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 25px 30px 25px 30px;
    box-shadow: 0 10px 40px rgba(255, 179, 71, 0.15);
    transition: all 0.3s ease;
}

.card-left {
    transform: rotate(-1deg);
}

.card-right {
    transform: rotate(1deg);
    position: relative;
    overflow: hidden;
}

.content-card:hover {
    transform: translateY(-8px) rotate(0deg);
    box-shadow: 0 15px 50px rgba(255, 179, 71, 0.25);
}

.card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    border-radius: 25px 25px 0 0;
}

.accent-mint {
    background: #98D8C8;
}

.card-image {
    width: 100%;
    height: clamp(150px, 40vw, 250px);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.content-card:hover .card-image img {
    transform: scale(1.05);
}

/* === Playful List === */
.playful-list {
    list-style: none;
    margin-top: 1rem;
}

.playful-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.list-icon {
    font-size: clamp(1rem, 3vw, 1.5rem);
    flex-shrink: 0;
}

/* === Wave Divider === */
.wave-divider {
    height: clamp(50px, 10vw, 80px);
    background: linear-gradient(135deg, #FFB347 0%, #FFCC99 100%);
    clip-path: polygon(
        0 40%, 10% 35%, 20% 45%, 30% 38%, 40% 48%, 50% 35%, 
        60% 45%, 70% 38%, 80% 42%, 90% 35%, 100% 40%, 100% 100%, 0 100%
    );
    margin: clamp(2rem, 5vw, 4rem) 0;
}

/* === Program Grid === */
.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(1rem, 3vw, 2rem);
}

.program-card {
    background: white;
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.card-elevated {
    transform: translateY(-10px);
}

.program-card:hover {
    transform: translateY(-15px) rotate(-2deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.program-icon {
    width: clamp(60px, 12vw, 80px);
    height: clamp(60px, 12vw, 80px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    margin: 0 auto 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* === Text Content Styling === */
.text-content, .text-content-wide {
    max-width: 800px;
    margin: 0 auto;
}

.text-content-wide {
    max-width: 900px;
}

.text-block {
    margin-bottom: 2rem;
}

.drop-cap {
    float: left;
    font-size: clamp(2.5rem, 8vw, 4rem);
    line-height: 0.8;
    margin-right: 0.5rem;
    margin-top: 0.1rem;
    color: #FFB347;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}

.pull-quote {
    background: linear-gradient(135deg, #FFB347 0%, #FFCC99 100%);
    padding: clamp(1.5rem, 4vw, 2rem);
    margin: clamp(1.5rem, 4vw, 3rem) 0;
    border-radius: 20px;
    transform: rotate(-1deg);
    box-shadow: 0 8px 30px rgba(255, 179, 71, 0.2);
    text-align: center;
}

.pull-quote p {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    font-weight: 600;
    color: white;
    font-style: italic;
}

.quote-mark {
    font-size: clamp(1.5rem, 5vw, 3rem);
    color: rgba(255, 255, 255, 0.5);
    font-family: Georgia, serif;
}

.info-box {
    background: #E8F8F5;
    border-left: 5px solid #98D8C8;
    padding: clamp(1rem, 2.5vw, 1.5rem);
    margin: clamp(1.5rem, 3vw, 2rem) 0;
    border-radius: 0 15px 15px 0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    font-size: clamp(1.5rem, 4vw, 2rem);
    flex-shrink: 0;
}

/* === Image Gallery === */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: clamp(200px, 40vw, 250px);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.item-1 { transform: rotate(-2deg); }
.item-2 { transform: rotate(1deg); }
.item-3 { transform: rotate(-1deg); }

/* === Team Section === */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    margin-top: 2rem;
}

.team-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-photo {
    width: clamp(150px, 30vw, 200px);
    height: clamp(150px, 30vw, 200px);
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 5px solid #FFB347;
    box-shadow: 0 8px 25px rgba(255, 179, 71, 0.3);
}

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

.team-role {
    color: #87CEEB;
    font-weight: 600;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

/* === Contact Section === */
.contact-container {
    background: white;
    padding: clamp(1.5rem, 3vw, 3rem);
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 3vw, 3rem);
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: clamp(1.5rem, 4vw, 2rem);
    flex-shrink: 0;
}

.contact-form-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

/* === Page Hero for Subpages === */
.page-hero {
    background: linear-gradient(135deg, #FFB347 0%, #FFCC99 100%);
    padding: clamp(3rem, 6vw, 5rem) 1.5rem clamp(2rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.page-hero-content h1 {
    color: white;
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 0.5rem;
}

.page-hero-content p {
    color: white;
    font-size: clamp(1rem, 3vw, 1.2rem);
    margin-bottom: 0;
}

/* === Timeline Styles === */
.timeline-container {
    margin: 3rem 0;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.timeline-marker {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    flex-shrink: 0;
    min-width: 50px;
}

.timeline-content {
    background: white;
    padding: clamp(1rem, 2vw, 1.5rem);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    flex-grow: 1;
}

.timeline-content h4 {
    color: #FFB347;
    margin-bottom: 0.5rem;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

/* === Activity Cards === */
.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: 2rem;
}

.activity-card {
    background: white;
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.activity-icon {
    font-size: clamp(2rem, 6vw, 3rem);
    display: block;
    margin-bottom: 1rem;
}

/* === Schedule Styles === */
.schedule-container {
    margin: 2rem 0;
}

.schedule-item {
    display: flex;
    gap: clamp(1rem, 3vw, 2rem);
    margin-bottom: 2rem;
    align-items: flex-start;
}

.schedule-time {
    flex-shrink: 0;
}

.time-badge {
    background: linear-gradient(135deg, #FFB347 0%, #FFCC99 100%);
    color: white;
    padding: clamp(0.6rem, 2vw, 0.8rem) clamp(1rem, 2vw, 1.5rem);
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 179, 71, 0.3);
    font-size: clamp(0.8rem, 2.5vw, 1rem);
}

.schedule-content {
    background: white;
    padding: clamp(1rem, 2vw, 1.5rem);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    flex-grow: 1;
}

.schedule-content h4 {
    margin-bottom: 0.5rem;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

/* === Fest Cards === */
.fest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: 2rem;
}

.fest-card {
    background: white;
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    transform: rotate(0deg);
}

.fest-card:nth-child(odd) {
    transform: rotate(-1deg);
}

.fest-card:nth-child(even) {
    transform: rotate(1deg);
}

.fest-card:hover {
    transform: translateY(-8px) rotate(0deg);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.fest-icon {
    font-size: clamp(2.5rem, 7vw, 3.5rem);
    margin-bottom: 1rem;
}

.fest-card h3 {
    color: #FFB347;
    margin-bottom: 1rem;
    font-size: clamp(1.1rem, 3vw, 1.4rem);
}

/* === Contact Details Page === */
.contact-details-page {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card-large {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.contact-card-large .card-accent {
    height: 6px;
}

.contact-card-large h3 {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.contact-card-large a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card-large a:hover {
    color: #FF6B6B;
}

.anfahrt-info {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.anfahrt-info .info-box {
    display: flex;
    align-items: flex-start;
}

/* === Impressum Sections === */
.impressum-section {
    margin-bottom: 2.5rem;
}

.impressum-section h3 {
    color: #FFB347;
    margin-bottom: 1rem;
    font-size: clamp(1.1rem, 3vw, 1.4rem);
}

.impressum-section p {
    margin-bottom: 1rem;
    font-size: clamp(0.95rem, 2.5vw, 1rem);
}

.impressum-section a {
    color: #FFB347;
    text-decoration: none;
    transition: color 0.3s ease;
}

.impressum-section a:hover {
    color: #FF6B6B;
}

.impressum-section ul {
    margin-left: 1.5rem;
}

/* === Footer === */
.footer {
    background: linear-gradient(135deg, #87CEEB 0%, #98D8C8 100%);
    color: white;
    padding: clamp(2rem, 4vw, 3rem) 1rem 1rem;
    margin-top: clamp(3rem, 6vw, 5rem);
    position: relative;
    clip-path: ellipse(120% 100% at 50% 100%);
    padding-top: clamp(3rem, 5vw, 4rem);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.footer-column p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.social-links a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    font-size: clamp(0.75rem, 2vw, 0.9rem);
}

.footer-decoration {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-top: 1rem;
    opacity: 0.6;
}

.footer-links a {
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
}

/* === Responsive Design === */

/* Mobile Menu - Triggered by JavaScript on touch devices */
.nav-menu.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: linear-gradient(135deg, #FFB347 0%, #FFCC99 100%);
    padding: 1rem 0;
    display: none !important;
    width: 100%;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-menu.mobile-menu.active {
    display: flex !important;
}

.nav-menu.mobile-menu a {
    padding: 0.75rem 1.5rem;
    display: block;
    font-size: 1rem;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

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

.nav-menu.mobile-menu li {
    list-style: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-menu.mobile-menu li:last-child {
    border-bottom: none;
}

.nav-menu.mobile-menu .nav-icon {
    display: inline;
    margin-right: 0.5rem;
}

.hamburger.show {
    display: flex;
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 0.3rem;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #FFB347 0%, #FFCC99 100%);
        padding: 1rem 0;
        display: none;
        width: 100%;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu a {
        padding: 0.75rem 1.5rem;
        display: block;
    }
    
    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu .nav-icon {
        display: none;
    }
    
    .main-content {
        padding: 0 0.75rem;
    }
    
    .content-grid,
    .program-grid,
    .activity-grid,
    .fest-grid,
    .team-grid,
    .image-gallery {
        grid-template-columns: 1fr;
    }
    
    .card-left,
    .card-right,
    .item-1,
    .item-2,
    .item-3,
    .fest-card:nth-child(odd),
    .fest-card:nth-child(even) {
        transform: rotate(0deg);
    }
    
    .timeline-item,
    .schedule-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .section-alt {
        margin: 0 -0.75rem;
        padding: clamp(2rem, 6vw, 4rem) 0.75rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    .nav-container {
        padding: 0 0.75rem;
        flex-wrap: wrap;
    }
    
    .logo-text {
        display: none;
    }
    
    .nav-menu {
        width: 100%;
        gap: 0.2rem;
        justify-content: center;
    }
    
    .nav-menu a {
        padding: 0.3rem 0.5rem;
        font-size: 0.65rem;
    }
    
    .cta-button {
        margin: 0.25rem;
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
    
    .main-content {
        padding: 0 0.5rem;
    }
    
    .hero {
        padding: clamp(2rem, 5vw, 3rem) 1rem clamp(1.5rem, 4vw, 2rem);
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .floating-elements {
        display: none;
    }
    
    .page-hero {
        padding: 2rem 1rem;
        margin-bottom: 1rem;
    }
    
    .section-header {
        margin-bottom: 1rem;
    }
    
    .text-block {
        margin-bottom: 1.5rem;
    }
    
    .drop-cap {
        font-size: 2rem;
    }
    
    .pull-quote {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .info-box {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .info-icon {
        font-size: 1.2rem;
    }
    

    .footer-content {
        gap: 1rem;
    }
    
    .footer-column p {
        font-size: 0.85rem;
    }
    
    .footer-links a {
        margin-right: 0.5rem;
        padding: 0.3rem 0.75rem;
        font-size: 0.8rem;
    }
}