/* ============================================================
   NEWS & EVENTS — Sikh Classroom
   Colors: #E87511 (orange), #F4A524 (golden), #C25E0A (deep)
   Fonts:  Poppins (headings), Inter (body)
   ============================================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a2e;
    background: #fff;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input { font-family: inherit; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

/* ---- REVEAL ANIMATION ---- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    border-bottom-color: rgba(232, 117, 17, 0.12);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: #E87511;
    white-space: nowrap;
    transition: color 0.3s;
}

.nav-logo:hover { color: #C25E0A; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links li a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    padding: 8px 14px;
    border-radius: 8px;
    transition: color 0.25s, background 0.25s;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #E87511;
    background: rgba(232, 117, 17, 0.07);
}

.nav-login { margin-left: 8px; }

.btn-login {
    background: linear-gradient(135deg, #E87511, #F4A524) !important;
    color: #fff !important;
    padding: 9px 22px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 0.88rem !important;
    transition: transform 0.25s, box-shadow 0.25s !important;
    box-shadow: 0 4px 16px rgba(232, 117, 17, 0.25);
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(232, 117, 17, 0.35) !important;
    background: linear-gradient(135deg, #C25E0A, #E87511) !important;
}

.nav-login-btn {
    display: none;
    background: linear-gradient(135deg, #E87511, #F4A524);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 16px rgba(232, 117, 17, 0.25);
}

.nav-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(232, 117, 17, 0.35);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    z-index: 1001;
}

.hamburger span {
    width: 26px;
    height: 2.5px;
    background: #333;
    border-radius: 4px;
    transition: transform 0.35s, opacity 0.35s, background 0.35s;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: #E87511;
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: #E87511;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
    padding-top: 72px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(232, 117, 17, 0.15), transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(244, 165, 36, 0.1), transparent 50%);
}

.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.hero-shape--1 {
    width: 400px;
    height: 400px;
    background: #E87511;
    top: -120px;
    right: -80px;
    animation: heroFloat 8s ease-in-out infinite;
}

.hero-shape--2 {
    width: 260px;
    height: 260px;
    background: #F4A524;
    bottom: -60px;
    left: -40px;
    animation: heroFloat 10s ease-in-out infinite reverse;
}

.hero-shape--3 {
    width: 160px;
    height: 160px;
    background: #C25E0A;
    top: 40%;
    left: 50%;
    animation: heroFloat 6s ease-in-out infinite 1s;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 24px;
}

.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff 30%, #F4A524 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.15rem;
    font-weight: 400;
}

/* ============================================================
   BUTTONS (shared)
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, #E87511, #F4A524);
    color: #fff;
    box-shadow: 0 4px 20px rgba(232, 117, 17, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(232, 117, 17, 0.4);
    background: linear-gradient(135deg, #C25E0A, #E87511);
}

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: #555;
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto 48px;
}

/* ============================================================
   FEATURED EVENT
   ============================================================ */
.featured-section {
    background: #fafafa;
}

.featured-event {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(232, 117, 17, 0.1);
    position: relative;
}

.featured-event__badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #E87511, #F4A524);
    color: #fff;
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 0 0 12px 0;
}

.featured-event__body {
    display: flex;
    gap: 40px;
    padding: 40px 48px 48px;
    align-items: center;
}

.featured-event__info {
    flex: 1;
}

.featured-event__title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    line-height: 1.3;
}

.featured-event__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #666;
}

.meta-item svg {
    color: #E87511;
    flex-shrink: 0;
}

.featured-event__desc {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 28px;
}

.featured-event__visual {
    flex-shrink: 0;
}

.featured-visual-inner {
    width: 180px;
    height: 200px;
    background: linear-gradient(135deg, #E87511, #F4A524);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 8px 32px rgba(232, 117, 17, 0.3);
    position: relative;
    overflow: hidden;
}

.featured-visual-inner::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    top: -50%;
    left: -50%;
}

.featured-date-big {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    position: relative;
}

.featured-month-big {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    position: relative;
}

.featured-year-big {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.8;
    position: relative;
}

/* ============================================================
   UPCOMING EVENTS
   ============================================================ */
.upcoming-section {
    background: #fff;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 24px;
}

.event-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eee;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.35s;
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(232, 117, 17, 0.12);
    border-color: rgba(232, 117, 17, 0.25);
}

.event-card__date {
    flex-shrink: 0;
    width: 68px;
    height: 76px;
    background: linear-gradient(135deg, #E87511, #F4A524);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 16px rgba(232, 117, 17, 0.25);
}

.event-month {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

.event-day {
    font-family: 'Poppins', sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1.1;
}

.event-card__body h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.event-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 10px;
}

.event-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: #888;
}

.event-card__meta svg { color: #E87511; }

.event-card__body p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 14px;
    line-height: 1.6;
}

.event-card__link {
    font-size: 0.88rem;
    font-weight: 600;
    color: #E87511;
    transition: color 0.25s, gap 0.25s;
    display: inline-flex;
    align-items: center;
}

.event-card__link:hover {
    color: #C25E0A;
}

/* ============================================================
   NEWS SECTION
   ============================================================ */
.news-section {
    background: #fafafa;
}

.news-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.news-filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    background: #fff;
    border: 1px solid #ddd;
    transition: all 0.3s;
}

.news-filter-btn:hover {
    border-color: #E87511;
    color: #E87511;
    background: rgba(232, 117, 17, 0.04);
}

.news-filter-btn.active {
    background: linear-gradient(135deg, #E87511, #F4A524);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(232, 117, 17, 0.3);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.news-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.35s;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(232, 117, 17, 0.1);
    border-color: rgba(232, 117, 17, 0.2);
}

.news-card.hidden {
    display: none;
}

.news-card__image {
    height: 180px;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    position: relative;
    overflow: hidden;
}

.news-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent 60%);
}

.news-card__tag {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 5px 14px;
    border-radius: 50px;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.news-card__body {
    padding: 24px 28px 28px;
}

.news-card__date {
    font-size: 0.8rem;
    color: #999;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.news-card__title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-card__excerpt {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
}

.news-card__link {
    font-size: 0.88rem;
    font-weight: 600;
    color: #E87511;
    transition: color 0.25s;
}

.news-card__link:hover {
    color: #C25E0A;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
    background: #fff;
}

.newsletter-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 24px;
    padding: 56px 48px;
    display: flex;
    align-items: center;
    gap: 48px;
    overflow: hidden;
    position: relative;
}

.newsletter-card::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232, 117, 17, 0.15), transparent 70%);
    right: -80px;
    top: -80px;
    pointer-events: none;
}

.newsletter-card::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(244, 165, 36, 0.1), transparent 70%);
    left: 20%;
    bottom: -60px;
    pointer-events: none;
}

.newsletter-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.newsletter-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.98rem;
    line-height: 1.7;
}

.newsletter-form {
    flex: 1;
    position: relative;
    z-index: 1;
}

.newsletter-input-group {
    display: flex;
    gap: 12px;
}

.newsletter-input-group input {
    flex: 1;
    padding: 14px 22px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.newsletter-input-group input:focus {
    border-color: #E87511;
    background: rgba(255, 255, 255, 0.12);
}

.newsletter-note {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 12px;
    padding-left: 4px;
}

.newsletter-success {
    display: none;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 20px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    color: #22c55e;
    font-size: 0.9rem;
    font-weight: 500;
    animation: fadeSlideUp 0.5s ease;
}

.newsletter-success.show {
    display: flex;
}

.newsletter-success svg {
    flex-shrink: 0;
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   CALENDAR
   ============================================================ */
.calendar-section {
    background: #fafafa;
}

.calendar-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 36px 40px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.calendar-nav {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    border: 1px solid #eee;
    transition: all 0.25s;
}

.calendar-nav:hover {
    border-color: #E87511;
    color: #E87511;
    background: rgba(232, 117, 17, 0.05);
}

.calendar-month-year {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a2e;
}

.calendar-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 8px;
}

.calendar-days-header span {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    padding: 8px 0;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-grid .cal-day {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: #444;
    border-radius: 10px;
    transition: background 0.25s, color 0.25s, transform 0.25s;
    cursor: default;
    position: relative;
}

.calendar-grid .cal-day.empty {
    cursor: default;
}

.calendar-grid .cal-day.today {
    background: #f0f0f0;
    font-weight: 700;
    color: #1a1a2e;
}

.calendar-grid .cal-day.has-event {
    background: rgba(232, 117, 17, 0.1);
    color: #E87511;
    font-weight: 700;
    cursor: pointer;
}

.calendar-grid .cal-day.has-event:hover {
    background: #E87511;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(232, 117, 17, 0.3);
}

.calendar-grid .cal-day.has-event::after {
    content: '';
    position: absolute;
    bottom: 4px;
    width: 5px;
    height: 5px;
    background: #E87511;
    border-radius: 50%;
}

.calendar-grid .cal-day.has-event:hover::after {
    background: #fff;
}

.calendar-grid .cal-day.selected {
    background: #E87511;
    color: #fff;
    box-shadow: 0 4px 12px rgba(232, 117, 17, 0.3);
}

.calendar-grid .cal-day.selected::after {
    background: #fff;
}

.calendar-event-detail {
    margin-top: 24px;
    padding: 20px 24px;
    background: #fafafa;
    border-radius: 14px;
    min-height: 60px;
    transition: all 0.3s;
}

.calendar-event-detail__empty {
    color: #999;
    font-size: 0.9rem;
    text-align: center;
}

.calendar-event-detail .event-detail-item {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.calendar-event-detail .event-detail-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.calendar-event-detail .event-detail-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.calendar-event-detail .event-detail-item p {
    font-size: 0.85rem;
    color: #777;
}

/* ============================================================
   PAST EVENTS
   ============================================================ */
.past-events-section {
    background: #fff;
}

.past-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.past-event-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 28px 28px 32px;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s,
                border-color 0.35s;
}

.past-event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border-color: rgba(232, 117, 17, 0.2);
}

.past-event-card__accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #E87511, #F4A524);
    border-radius: 4px 0 0 4px;
}

.past-event-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.08rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.past-event-card__date {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #E87511;
    margin-bottom: 10px;
}

.past-event-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #1a1a2e;
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #E87511;
    margin-bottom: 14px;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-col h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 18px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.25s, padding-left 0.25s;
}

.footer-col ul li a:hover {
    color: #F4A524;
    padding-left: 4px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    transition: background 0.3s, color 0.3s, transform 0.3s;
}

.social-links a:hover {
    background: #E87511;
    color: #fff;
    transform: translateY(-3px);
}

.footer-contact {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
    .nav-links { gap: 4px; }
    .nav-links li a { padding: 8px 10px; font-size: 0.84rem; }
    .featured-event__body { padding: 32px; gap: 28px; }
    .newsletter-card { flex-direction: column; gap: 32px; padding: 40px 36px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile Nav Breakpoint */
@media (max-width: 900px) {
    .hamburger { display: flex; }
    .nav-login-btn { display: inline-block; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 40px;
        gap: 0;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li { width: 100%; }

    .nav-links li a {
        display: block;
        padding: 14px 16px;
        font-size: 1rem;
        border-radius: 10px;
    }

    .nav-login { margin-left: 0; margin-top: 12px; }

    .btn-login {
        display: block !important;
        text-align: center !important;
        width: 100% !important;
    }
}

/* Tablet-small / Large mobile */
@media (max-width: 768px) {
    .section { padding: 72px 0; }

    .hero { min-height: 340px; }

    .featured-event__body {
        flex-direction: column-reverse;
        text-align: center;
        padding: 28px 24px 32px;
    }

    .featured-event__meta { justify-content: center; }
    .featured-event__badge { border-radius: 0 0 10px 0; }

    .featured-visual-inner {
        width: 140px;
        height: 160px;
    }

    .featured-date-big { font-size: 3rem; }
    .featured-month-big { font-size: 1.1rem; }

    .events-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .past-events-grid { grid-template-columns: 1fr; }

    .calendar-wrapper { padding: 28px 20px; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Small mobile */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section { padding: 56px 0; }

    .hero { min-height: 280px; }
    .hero-content { padding: 40px 16px; }

    .event-card { flex-direction: column; align-items: flex-start; padding: 20px; }
    .event-card__date { flex-direction: row; width: auto; height: auto; padding: 8px 18px; gap: 8px; }
    .event-day { font-size: 1.3rem; }

    .newsletter-card { padding: 32px 20px; }
    .newsletter-input-group { flex-direction: column; }
    .newsletter-input-group .btn { width: 100%; justify-content: center; }

    .calendar-grid .cal-day { height: 38px; font-size: 0.82rem; }
    .calendar-days-header span { font-size: 0.7rem; }

    .nav-links { width: 260px; }
}
