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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    overflow-x: hidden;
}

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

/* Color Variables */
:root {
    --primary-green: #4ade80;
    --secondary-green: #22c55e;
    --dark-green: #16a34a;
    --light-green: #86efac;
    --accent-green: #dcfce7;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: #111111;
    --text-light: #e5e5e5;
    --text-muted: #a3a3a3;
}

/* Parallax Sections */
.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 120%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    will-change: transform;
    z-index: 1;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.75);
    z-index: 2;
}

.parallax-section .container {
    position: relative;
    z-index: 3;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-popup.show {
    display: flex;
    opacity: 1;
}

.cookie-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.cookie-popup-content {
    position: relative;
    margin: auto;
    background: linear-gradient(135deg, #111111, #1a1a1a);
    border: 2px solid var(--primary-green);
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.cookie-popup.show .cookie-popup-content {
    transform: scale(1);
}

.cookie-popup-header h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.cookie-popup-body p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
}

.cookie-popup-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-popup-actions .btn {
    padding: 12px 25px;
    font-size: 1rem;
    min-width: 140px;
    white-space: nowrap;
}

.cookie-popup-actions .cookie-link {
    color: var(--primary-green);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 10px 20px;
    border: 1px solid var(--primary-green);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.cookie-popup-actions .cookie-link:hover {
    background: var(--primary-green);
    color: var(--dark-bg);
}

/* Responsive Cookie Popup */
@media (max-width: 768px) {
    .cookie-popup-content {
        padding: 25px 20px;
        margin: 20px;
    }
    
    .cookie-popup-header h3 {
        font-size: 1.3rem;
    }
    
    .cookie-popup-body p {
        font-size: 0.9rem;
    }
    
    .cookie-popup-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .cookie-popup-actions .btn,
    .cookie-popup-actions .cookie-link {
        width: 100%;
        text-align: center;
        min-width: auto;
    }
    
    .cookie-popup-actions .btn {
        font-size: 0.95rem;
        padding: 12px 20px;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

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

.logo-circle {
    position: relative;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-container {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.logo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

.sound-waves {
    position: absolute;
    display: flex;
    gap: 2px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.wave {
    width: 2px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1px;
    animation: wave-animation 1.5s infinite ease-in-out;
}

.wave:nth-child(2) { animation-delay: 0.1s; }
.wave:nth-child(3) { animation-delay: 0.2s; }

@keyframes wave-animation {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.5); }
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(74, 222, 128, 0.1) 0%, transparent 50%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-leaves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.leaf {
    position: absolute;
    width: 20px;
    height: 30px;
    background: linear-gradient(45deg, var(--primary-green), var(--dark-green));
    border-radius: 0 100% 0 100%;
    animation: float 15s infinite ease-in-out;
    opacity: 0.3;
}

.leaf:nth-child(1) { left: 10%; animation-delay: 0s; }
.leaf:nth-child(2) { left: 20%; animation-delay: 3s; }
.leaf:nth-child(3) { left: 70%; animation-delay: 6s; }
.leaf:nth-child(4) { left: 80%; animation-delay: 9s; }
.leaf:nth-child(5) { left: 50%; animation-delay: 12s; }

@keyframes float {
    0% { transform: translateY(-100vh) rotate(0deg); }
    100% { transform: translateY(100vh) rotate(360deg); }
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero-logo {
    margin-bottom: 2rem;
}

.logo-circle-large {
    position: relative;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 0 30px rgba(74, 222, 128, 0.5);
}

.logo-container-large {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 0 30px rgba(74, 222, 128, 0.5);
    border: 3px solid rgba(74, 222, 128, 0.3);
    transition: all 0.3s ease;
}

.logo-container-hero {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.logo-image-large {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

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

.logo-overlay-large {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

.sound-waves-large {
    position: absolute;
    display: flex;
    gap: 3px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.wave-large {
    width: 3px;
    height: 12px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: wave-animation 1.5s infinite ease-in-out;
}

.wave-large:nth-child(1) { animation-delay: 0s; }
.wave-large:nth-child(2) { animation-delay: 0.1s; }
.wave-large:nth-child(3) { animation-delay: 0.2s; }
.wave-large:nth-child(4) { animation-delay: 0.3s; }
.wave-large:nth-child(5) { animation-delay: 0.4s; }

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

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--dark-bg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 222, 128, 0.4);
}

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

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-arrow {
    color: var(--primary-green);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Section Styles */
section {
    padding: 100px 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.section-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    margin: 0 auto;
    border-radius: 2px;
}

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

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight {
    text-align: center;
    padding: 1.5rem;
    background: rgba(74, 222, 128, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(74, 222, 128, 0.1);
}

.highlight i {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.highlight h4 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.highlight p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.1), rgba(34, 197, 94, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(74, 222, 128, 0.2);
    overflow: hidden;
    position: relative;
    padding: 0;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 18px;
    transition: transform 0.3s ease;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

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

/* Hide icon and text when image is present */
.image-placeholder:has(img) i,
.image-placeholder:has(img) p {
    display: none;
}

.image-placeholder i {
    font-size: 4rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.image-placeholder p {
    color: var(--text-muted);
    font-weight: 500;
}

/* Music Section */
.music-content {
    max-width: 1000px;
    margin: 0 auto;
}

.music-description {
    text-align: center;
    margin-bottom: 4rem;
}

.music-description h3 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.music-description p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.music-styles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.style-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(74, 222, 128, 0.1);
    transition: transform 0.3s ease;
}

.style-card:hover {
    transform: translateY(-5px);
    border-color: rgba(74, 222, 128, 0.3);
}

.style-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.style-icon i {
    font-size: 2rem;
    color: var(--dark-bg);
}

.style-card h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

.soundcloud-section {
    text-align: center;
    padding: 3rem;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid rgba(74, 222, 128, 0.1);
}

.soundcloud-section h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.mixcloud-player {
    background: rgba(74, 222, 128, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 2rem;
    border: 1px solid rgba(74, 222, 128, 0.2);
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.1);
}

.mixcloud-player iframe {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.mixcloud-player:hover iframe {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.2);
}

.mixcloud-profile-link {
    margin-top: 2rem;
    text-align: center;
}

.mixcloud-profile-link .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mixcloud-profile-link .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.3);
}

.mixcloud-profile-link .fab {
    font-size: 1.2rem;
}

.audio-placeholder {
    background: rgba(74, 222, 128, 0.05);
    padding: 3rem;
    border-radius: 15px;
    margin-top: 2rem;
    border: 2px dashed rgba(74, 222, 128, 0.3);
}

.audio-placeholder i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.audio-placeholder p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.audio-placeholder small {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Events Section */
.events {
    background: var(--card-bg);
}

.events-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.events-info h3 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
}

.event-types {
    display: grid;
    gap: 1.5rem;
}

.event-type {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(74, 222, 128, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(74, 222, 128, 0.1);
}

.event-type i {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-top: 0.5rem;
}

.event-type h4 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.event-type p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.booking-card {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.1), rgba(34, 197, 94, 0.05));
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(74, 222, 128, 0.2);
    text-align: center;
}

.booking-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.booking-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.booking-details {
    margin-bottom: 2rem;
}

.detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.detail i {
    color: var(--primary-green);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid rgba(74, 222, 128, 0.1);
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--primary-green);
    width: 30px;
}

.contact-method h4 {
    color: var(--text-light);
    margin-bottom: 0.2rem;
}

.contact-method a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: var(--primary-green);
}

.contact-form {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(74, 222, 128, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(74, 222, 128, 0.05);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 10px;
    color: var(--text-light);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* Captcha Styling */
.captcha-group {
    background: rgba(74, 222, 128, 0.08);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.captcha-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
}

#captcha-question {
    color: var(--primary-green);
    font-weight: 600;
}

.captcha-group input {
    max-width: 120px;
    text-align: center;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 3rem 0 1rem;
}

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

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

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(74, 222, 128, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-green);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(74, 222, 128, 0.1);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .logo-container-hero {
        width: 200px;
        height: 200px;
    }
    
    .about-content,
    .events-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .music-styles {
        grid-template-columns: 1fr;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        order: 2;
    }
    
    .footer-social {
        order: 3;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav {
        padding: 1rem 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .logo-container-hero {
        width: 160px;
        height: 160px;
    }
    
    .logo-container-large {
        width: 80px;
        height: 80px;
    }
    
    .logo-s-large {
        font-size: 2rem;
    }
    
    /* Disable parallax on mobile for better performance */
    .parallax-bg {
        background-attachment: scroll !important;
        transform: none !important;
    }
}
