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

:root {
    /* Bangladeshi-inspired color palette */
    --background: hsl(45, 25%, 97%);
    --foreground: hsl(20, 20%, 15%);
    --card: hsl(45, 35%, 95%);
    --card-foreground: hsl(20, 20%, 15%);
    
    /* Deep forest green inspired by Bangladesh's lush nature */
    --primary: hsl(150, 45%, 25%);
    --primary-foreground: hsl(45, 35%, 95%);
    
    /* Warm golden yellow representing Bengali culture and marigolds */
    --secondary: hsl(45, 85%, 60%);
    --secondary-foreground: hsl(20, 20%, 15%);
    
    --muted: hsl(45, 20%, 90%);
    --muted-foreground: hsl(20, 15%, 45%);
    
    /* Rich terracotta representing traditional pottery and architecture */
    --accent: hsl(15, 65%, 55%);
    --accent-foreground: hsl(45, 35%, 95%);
    
    --border: hsl(45, 20%, 85%);
    --input: hsl(45, 20%, 90%);
    
    /* Bengali cultural gradients */
    --gradient-cultural: linear-gradient(135deg, hsl(150, 45%, 25%), hsl(15, 65%, 55%));
    --gradient-golden: linear-gradient(135deg, hsl(45, 85%, 60%), hsl(40, 75%, 50%));
    --gradient-sunset: linear-gradient(135deg, hsl(15, 65%, 55%), hsl(25, 70%, 60%));
    
    /* Traditional patterns and textures */
    --shadow-cultural: 0 10px 30px -10px hsla(150, 45%, 25%, 0.3);
    --shadow-warm: 0 8px 25px -8px hsla(15, 65%, 55%, 0.4);
    
    /* Animation easing inspired by traditional music rhythms */
    --transition-cultural: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-gentle: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: hsla(45, 25%, 97%, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid hsla(45, 20%, 85%, 0.4);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 2rem;
    color: var(--primary);
}

.logo-bengali {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-cultural);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-english {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--muted-foreground);
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-link {
    color: var(--foreground);
    text-decoration: none;
    transition: var(--transition-gentle);
}

.nav-link:hover {
    color: var(--primary);
}

.cta-desktop {
    display: none;
}

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

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hamburger {
    width: 1.5rem;
    height: 2px;
    background-color: var(--foreground);
    transition: var(--transition-gentle);
}

.menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(0.375rem, 0.375rem);
}

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

.menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(0.375rem, -0.375rem);
}

.mobile-menu {
    display: none;
    padding: 1rem 0;
    background-color: hsla(45, 25%, 97%, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 0.5rem;
    margin-top: 0.5rem;
    border: 1px solid hsla(45, 20%, 85%, 0.4);
}

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

.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--foreground);
    text-decoration: none;
    transition: var(--transition-gentle);
}

.mobile-nav-link:hover {
    color: var(--primary);
}

.mobile-cta {
    padding: 0.75rem 1rem;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-cultural);
    min-width: fit-content;
}

.btn-primary {
    background: var(--gradient-cultural);
    color: var(--primary-foreground);
    border: 1px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-cultural);
}

.btn-secondary {
    background: var(--gradient-golden);
    color: var(--secondary-foreground);
    border: 1px solid transparent;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-warm);
}

.btn-hero {
    background: hsla(0, 0%, 100%, 0.1);
    color: white;
    border: 1px solid hsla(0, 0%, 100%, 0.2);
    backdrop-filter: blur(8px);
}

.btn-hero:hover {
    background: hsla(0, 0%, 100%, 0.2);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: hsla(0, 0%, 0%, 0.4);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, hsla(150, 45%, 25%, 0.2), hsla(15, 65%, 55%, 0.2));
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, hsla(45, 20%, 45%, 0.1) 1px, transparent 0);
    background-size: 20px 20px;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 1rem;
    max-width: 64rem;
    margin: 0 auto;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title-bengali {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-golden);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title-english {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: hsla(0, 0%, 100%, 0.9);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hero-description-bengali {
    font-size: 1.125rem;
    color: hsla(0, 0%, 100%, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
}

.next-event {
    padding: 1.5rem;
    background: hsla(0, 0%, 100%, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 0.5rem;
    border: 1px solid hsla(0, 0%, 100%, 0.2);
    max-width: 24rem;
    margin: 0 auto;
}

.next-event-label {
    color: hsla(0, 0%, 100%, 0.9);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.next-event-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.next-event-details {
    color: hsla(0, 0%, 100%, 0.8);
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    backdrop-filter: blur(8px);
    animation: float 6s ease-in-out infinite;
}

.floating-1 {
    bottom: 2.5rem;
    left: 2.5rem;
    width: 5rem;
    height: 5rem;
    background: hsla(45, 85%, 60%, 0.2);
    border: 1px solid hsla(45, 85%, 60%, 0.3);
}

.floating-2 {
    top: 5rem;
    right: 2.5rem;
    width: 4rem;
    height: 4rem;
    background: hsla(15, 65%, 55%, 0.2);
    border: 1px solid hsla(15, 65%, 55%, 0.3);
    animation-delay: 1s;
}

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

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: var(--gradient-cultural);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

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

/* About Section */
.about {
    background-color: var(--card);
}

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.about-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-img {
    width: 100%;
    max-width: 24rem;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-cultural);
}

/* Enhanced Stats Section */
.impact-stats {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.stats-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.5rem;
    background: var(--gradient-cultural);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    text-align: center;
    color: var(--muted-foreground);
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px hsla(0, 0%, 0%, 0.1);
    transition: var(--transition-cultural);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-cultural);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-cultural);
}

.stat-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Music Icon */
.stat-icon-music {
    background: linear-gradient(135deg, var(--primary), hsl(150, 45%, 35%));
    border-radius: 50%;
}

.music-note-1,
.music-note-2 {
    position: absolute;
    background: white;
    border-radius: 50%;
}

.music-note-1 {
    width: 8px;
    height: 8px;
    top: 12px;
    left: 16px;
}

.music-note-1::after {
    content: '';
    position: absolute;
    top: -12px;
    left: 6px;
    width: 2px;
    height: 16px;
    background: white;
}

.music-note-2 {
    width: 6px;
    height: 6px;
    top: 20px;
    right: 18px;
}

.music-note-2::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 4px;
    width: 2px;
    height: 12px;
    background: white;
}

/* Artists Icon */
.stat-icon-artists {
    background: linear-gradient(135deg, var(--secondary), hsl(45, 85%, 50%));
    border-radius: 50%;
}

.artist-figure {
    position: absolute;
}

.artist-figure:first-child {
    left: 8px;
    top: 8px;
}

.artist-figure-2 {
    right: 8px;
    top: 12px;
    transform: scale(0.8);
}

.artist-head {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    margin-bottom: 2px;
}

.artist-body {
    width: 12px;
    height: 16px;
    background: white;
    border-radius: 6px 6px 0 0;
}

/* Heart Icon */
.stat-icon-heart {
    background: linear-gradient(135deg, var(--accent), hsl(15, 65%, 65%));
    border-radius: 50%;
}

.heart-shape {
    width: 20px;
    height: 18px;
    position: relative;
}

.heart-shape::before,
.heart-shape::after {
    content: '';
    width: 10px;
    height: 16px;
    position: absolute;
    left: 5px;
    transform: rotate(-45deg);
    background: white;
    border-radius: 10px 10px 0 0;
    transform-origin: 0 100%;
}

.heart-shape::after {
    left: 0;
    transform: rotate(45deg);
    transform-origin: 100% 100%;
}

.heart-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid white;
    border-radius: 50%;
    opacity: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

/* Award Icon */
.stat-icon-award {
    background: linear-gradient(135deg, hsl(50, 100%, 50%), hsl(45, 100%, 45%));
    border-radius: 50%;
}

.award-ribbon {
    position: relative;
    width: 20px;
    height: 24px;
}

.award-circle {
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 2px;
    border: 2px solid hsl(50, 100%, 40%);
}

.award-circle::after {
    content: '★';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: hsl(50, 100%, 50%);
    font-size: 8px;
}

.ribbon-left,
.ribbon-right {
    position: absolute;
    top: 14px;
    width: 4px;
    height: 10px;
    background: white;
}

.ribbon-left {
    left: 4px;
    transform: skew(-20deg);
}

.ribbon-right {
    right: 4px;
    transform: skew(20deg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-cultural);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.75rem;
}

.stat-label {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.stat-label-bengali {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

/* Enhanced Events Section */

/* Remove/Hide old event cards */
.event-card {
    display: none;
}

/* Event Cards */
.event-card-new {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 25px -8px hsla(0, 0%, 0%, 0.15);
    transition: var(--transition-cultural);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -8px hsla(0, 0%, 0%, 0.25);
}

.event-status-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    backdrop-filter: blur(8px);
}

.event-status-badge.upcoming {
    background: linear-gradient(135deg, var(--secondary), hsl(45, 85%, 50%));
    color: var(--secondary-foreground);
    box-shadow: 0 4px 12px hsla(45, 85%, 60%, 0.4);
}

.event-status-badge.past {
    background: linear-gradient(180deg, 
                rgba(0, 0, 0, 0.3) 0%, 
                rgba(0, 0, 0, 0.1) 100%);
    color: white;
    border: 1px solid hsla(0, 0%, 100%, 0.3);
}

.event-image-container {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

.event-image-new {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-cultural);
}

.event-card-new:hover .event-image-new {
    transform: scale(1.05);
}

.event-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        hsla(0, 0%, 0%, 0) 0%,
        hsla(0, 0%, 0%, 0.1) 50%,
        hsla(0, 0%, 0%, 0.4) 100%
    );
}

.event-content-new {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-title-new {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.event-title-bengali {
    font-size: 1.25rem;
    font-weight: 600;
    background: var(--gradient-cultural);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.event-description-new {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.event-meta {
    margin-bottom: 2rem;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

.event-meta-item:last-child {
    margin-bottom: 0;
}

/* Meta Icons */
.meta-icon {
    width: 1rem;
    height: 1rem;
    position: relative;
    flex-shrink: 0;
}

/* Date Icon */
.date-icon {
    background: var(--primary);
    border-radius: 2px;
}

.date-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 2px;
    right: 2px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

.date-icon::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 3px;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    box-shadow: 4px 0 0 white, 0 3px 0 white, 4px 3px 0 white;
}

/* Location Icon */
.location-icon {
    background: hsl(15, 65%, 55%);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

.location-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

/* Event Button */
.btn-event-highlight {
    background: var(--gradient-cultural);
    color: var(--primary-foreground);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition-cultural);
    margin-top: auto;
}

.btn-event-highlight:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-cultural);
    background: linear-gradient(135deg, hsl(150, 45%, 20%), hsl(15, 65%, 50%));
}

.btn-icon {
    font-size: 1.1rem;
}

/* Events Grid Layout */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Animation for meta items */
.event-card-new:hover .event-meta-item {
    animation: slideInLeft 0.3s ease-out forwards;
}

.event-meta-item:nth-child(1) { animation-delay: 0.1s; }
.event-meta-item:nth-child(2) { animation-delay: 0.2s; }
.event-meta-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideInLeft {
    from {
        opacity: 0.7;
        transform: translateX(-5px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Enhanced Contact Section */

/* Hide old contact elements */
.contact-grid,
.contact-info,
.contact-form {
    display: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-card,
.social-section-card {
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 8px 25px -8px hsla(0, 0%, 0%, 0.1);
    border: 1px solid var(--border);
    height: fit-content;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-cultural);
}

.contact-info-card:hover,
.social-section-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -8px hsla(0, 0%, 0%, 0.15);
}

.contact-card-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.contact-card-subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--muted-foreground);
    margin-bottom: 2.5rem;
}

.contact-items,
.social-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex: 1;
}

/* Link Styles */
.contact-link {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-gentle);
    border-bottom: 1px solid transparent;
}

.contact-link:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.social-link {
    text-decoration: none;
    color: inherit;
}

.contact-item-new,
.social-item-new {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--muted);
    border-radius: 1rem;
    transition: var(--transition-gentle);
    cursor: pointer;
}

.contact-item-new:hover,
.social-item-new:hover {
    background: var(--card);
    transform: translateX(4px);
}

.contact-icon-simple,
.social-icon-simple {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-cultural);
}

/* Email Icon */
.email-icon-simple {
    background: linear-gradient(135deg, var(--primary), hsl(150, 45%, 35%));
    color: white;
}

/* Phone Icon */
.phone-icon-simple {
    background: linear-gradient(135deg, var(--accent), hsl(15, 65%, 65%));
    color: white;
}

/* Facebook Icon */
.facebook-icon-simple {
    background: linear-gradient(135deg, #1877F2, #0d5dbf);
    color: white;
}

.social-item-new:hover .facebook-icon-simple {
    background: linear-gradient(135deg, #0d5dbf, #1877F2);
    transform: scale(1.1);
    box-shadow: 0 8px 20px hsla(24, 119%, 47%, 0.4);
}

/* YouTube Icon */
.youtube-icon-simple {
    background: linear-gradient(135deg, #FF0000, #cc0000);
    color: white;
}

.social-item-new:hover .youtube-icon-simple {
    background: linear-gradient(135deg, #cc0000, #FF0000);
    transform: scale(1.1);
    box-shadow: 0 8px 20px hsla(0, 100%, 50%, 0.4);
}

.contact-details,
.social-details {
    flex: 1;
}

.contact-label,
.social-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 1rem;
    color: var(--muted-foreground);
}

/* Icon hover effects for contact items */
.contact-item-new:hover .contact-icon-simple {
    transform: scale(1.05);
}

.contact-item-new:hover .email-icon-simple {
    box-shadow: 0 8px 20px hsla(150, 45%, 25%, 0.3);
}

.contact-item-new:hover .phone-icon-simple {
    box-shadow: 0 8px 20px hsla(15, 65%, 55%, 0.3);
}

/* Footer */
.footer {
    background: var(--gradient-cultural);
    color: var(--primary-foreground);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-description {
    color: hsla(0, 0%, 100%, 0.8);
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: hsla(0, 0%, 100%, 0.8);
    text-decoration: none;
    transition: var(--transition-gentle);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid hsla(0, 0%, 100%, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-quote {
    font-style: italic;
    margin-bottom: 1rem;
    color: hsla(0, 0%, 100%, 0.9);
}

.footer-copyright {
    color: hsla(0, 0%, 100%, 0.6);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-title-bengali {
        font-size: 5rem;
    }
    
    .hero-title-english {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.5rem;
    }
    
    .hero-description-bengali {
        font-size: 1.25rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .cta-desktop {
        display: block;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .mobile-menu {
        display: none !important;
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 767px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-card,
    .social-section-card {
        padding: 2rem;
        min-height: auto;
    }
    
    .contact-card-title {
        font-size: 1.75rem;
    }
    
    .contact-item-new,
    .social-item-new {
        padding: 1rem;
        gap: 1rem;
    }
    
    .contact-icon-simple,
    .social-icon-simple {
        width: 2.5rem;
        height: 2.5rem;
    }
}

@media (max-width: 1023px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 639px) {
    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .event-content-new {
        padding: 1.5rem;
    }
    
    .event-title-new {
        font-size: 1.25rem;
    }
    
    .event-title-bengali {
        font-size: 1.125rem;
    }
    
    .event-image-container {
        height: 12rem;
    }
}

@media (min-width: 1024px) {
    .hero-title-bengali {
        font-size: 6rem;
    }
    
    .hero-title-english {
        font-size: 4rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .stat-card {
        padding: 2.5rem 1.5rem;
    }
    
    .contact-content {
        gap: 4rem;
    }
    
    .contact-info-card,
    .social-section-card {
        padding: 3.5rem;
    }
}