* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-yellow: #ffd600;
    --secondary-yellow: #ffed4e;
    --dark-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --card-bg-hover: #222;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --accent-gradient: linear-gradient(135deg, #ffd600, #ffed4e);
    --shadow-glow: 0 0 30px rgba(255, 214, 0, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark-bg);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    overflow-x:     .footer-logo img {
        width: 44px;
        max-height: 44px;
    }
}

/* Background responsive adjustments */
@media (max-width: 1200px) {
    .hero {
        background-size: cover;
        background-position: center top;
    }
}

@media (max-width: 768px) {
    .hero {
        background-size: cover;
        background-position: center center;
        min-height: 60vh;
        padding: 1rem 0 4rem;
    }
    
    .hero::before {
        background: rgba(0, 0, 0, 0.75);
    }
}

@media (max-width: 480px) {
    .hero {
        background-size: cover;
        background-position: center 30%;
        min-height: 50vh;
    }
    
    .hero::before {
        background: rgba(0, 0, 0, 0.8);
    }
}n;
}

.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 214, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 214, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 214, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0;
    font-weight: 600;
    font-size: 1.1rem;
}

.nav-logo img {
    width: 200px;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

.nav-logo span {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-yellow);
}

.nav-instagram {
    background: var(--accent-gradient);
    padding: 0.5rem;
    border-radius: 8px;
    color: black !important;
    transition: transform 0.3s ease;
    height: 36px;
}

.nav-instagram:hover {
    transform: translateY(-2px);
    color: black !important;
}

/* Container */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    margin-top: 80px;
    overflow-x: visible;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 2rem 0 6rem;
    position: relative;
    background-image: url('../images/DNU09809_wide.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    min-height: 80vh;
    display: flex;
    align-items: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

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

.logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    width: 100%;
    max-width: none;
    text-align: center;
    overflow: visible;
    padding: 0 1rem;
}

.logo {
    width: 720px !important;
    height: auto !important;
    max-height: 720px !important;
    min-width: 720px !important;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 214, 0, 0.5));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    margin: 0 auto;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 214, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.3; }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.5rem;
    color: var(--primary-yellow);
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-gradient);
    color: black;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 214, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-yellow);
}

.btn-secondary:hover {
    background: var(--primary-yellow);
    color: black;
    transform: translateY(-3px);
}

/* Sections */
.section {
    padding: 4rem 0;
    margin-bottom: 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-line {
    width: 80px;
    height: 4px;
    background: var(--accent-gradient);
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-card {
    background: var(--card-bg);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 214, 0, 0.1);
}

.about-card:hover {
    transform: translateY(-10px);
    background: var(--card-bg-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 214, 0, 0.3);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-yellow);
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Schedule Section */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.schedule-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 214, 0, 0.1);
}

.schedule-card:hover {
    transform: translateY(-5px);
    background: var(--card-bg-hover);
    border-color: rgba(255, 214, 0, 0.3);
}

.schedule-day {
    background: var(--accent-gradient);
    color: black;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    min-width: 120px;
    font-weight: 600;
}

.day-name {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.day-time {
    display: block;
    font-size: 0.9rem;
}

.schedule-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-yellow);
}

.schedule-content p {
    color: var(--text-secondary);
}

.location-info {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid rgba(255, 214, 0, 0.1);
}

.location-icon {
    font-size: 2rem;
}

.location-info h4 {
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.location-info p {
    color: var(--text-secondary);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16/10;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--card-bg);
    margin-top: 2rem;
    padding: 1.5rem 0 0.5rem;
    border-top: 1px solid rgba(255, 214, 0, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0;
    font-weight: 600;
    font-size: 1.2rem;
}

.footer-logo img {
    width: 100px;
    height: auto;
    max-height: 56px;
    object-fit: contain;
}

.footer-logo span {
    display: none;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--secondary-yellow);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 214, 0, 0.1);
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a:not(.nav-instagram) {
        display: none;
    }
    
    .hero {
        padding: 2rem 0 4rem;
    }
    
    .logo {
        width: 500px;
        max-height: 500px;
    }
    
    .logo-glow {
        width: 560px;
        height: 200px;
    }
    
    .nav-logo img {
        width: 100px;
        max-height: 40px;
    }
    
    .footer-logo img {
        width: 100px;
        max-height: 48px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .schedule-card {
        flex-direction: column;
        text-align: center;
    }
    
    .location-info {
        flex-direction: column;
        text-align: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .about-card {
        padding: 2rem 1rem;
    }
    
    .schedule-card {
        padding: 1.5rem;
    }
    
    .location-info {
        padding: 1.5rem;
    }
    
    .logo {
        width: 280px !important;
        max-height: 280px !important;
        min-width: 280px !important;
    }
    
    .logo-glow {
        width: 320px;
        height: 320px;
    }
    
    .nav-logo img {
        width: 100px;
        max-height: 36px;
    }
    
    .footer-logo img {
        width: 44px;
        max-height: 44px;
    }
    
    .hero {
        background-size: cover;
        background-position: center 30%;
        min-height: 50vh;
    }
    
    .hero::before {
        background: rgba(0, 0, 0, 0.8);
    }
}

/* Extra small mobile devices */
@media (max-width: 360px) {
    .logo {
        width: 250px !important;
        max-height: 250px !important;
        min-width: 250px !important;
    }
    
    .logo-glow {
        width: 280px;
        height: 280px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 0 0.5rem;
    }
}

/* Background responsive adjustments */
@media (max-width: 1200px) {
    .hero {
        background-size: cover;
        background-position: center top;
    }
}

@media (max-width: 768px) {
    .hero {
        background-size: cover;
        background-position: center center;
        min-height: 60vh;
        padding: 1rem 0 4rem;
    }
    
    .hero::before {
        background: rgba(0, 0, 0, 0.75);
    }
}