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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: -5px;
}

.nav-logo span {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 400;
}

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

.nav-link {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #6366f1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #6366f1;
    transition: width 0.3s ease;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #6366f1;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: #6366f1;
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-secondary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-secondary:disabled:hover {
    transform: none;
}

/* Featured Event */
.featured-event {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.featured-badge {
    background: #6366f1;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.featured-text h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.event-date {
    font-size: 1.2rem;
    color: #6366f1;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.event-description {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.event-artists h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.artist-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: nowrap;
    margin-bottom: 2rem;
    overflow-x: auto;
}

.artist-tags span {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.event-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    transform: rotate(5deg);
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: rotate(2deg) scale(1.05);
}

.card-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    pointer-events: none;
}

.event-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.event-card p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.event-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    position: relative;
    z-index: 2;
}

/* Event Poster - Full Display */
.event-poster {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid rgba(255,255,255,0.9);
    background: rgba(0,0,0,0.02);
}

.event-poster:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 20px 45px rgba(0,0,0,0.35);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: white;
}

.about-content h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-content > p {
    font-size: 1.2rem;
    color: #64748b;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

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

.feature {
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.feature h4 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.feature p {
    color: #64748b;
    line-height: 1.7;
}

/* Events Section */
.events {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.events h2 {
    font-size: 2.5rem;
    color: #1e293b;
    text-align: center;
    margin-bottom: 4rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    transform: none;
}

.events .event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.event-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.event-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.event-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.event-gradient.secondary {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.event-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.9);
    color: #1e293b;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 2;
}

.event-details {
    padding: 2rem;
}

.event-details h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.event-details .event-date {
    color: #6366f1;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.event-venue {
    color: #64748b;
    margin-bottom: 1rem;
}

.event-desc {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.event-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.event-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

.event-price .capacity {
    color: #64748b;
    font-size: 0.9rem;
}

/* Artists Section */
.artists {
    padding: 5rem 0;
    background: white;
}

/* Artist Photo Classes - Ready for Licensed Images */
.artist-emma .artist-image {
    background-image: linear-gradient(135deg, rgba(99,102,241,0.8), rgba(139,92,246,0.8)), url('images/emma.jpg');
}

.artist-kelnier .artist-image {
    background-image: linear-gradient(135deg, rgba(255,236,210,0.8), rgba(252,182,159,0.8)), url('images/kelnier.jpg');
}

.artist-asaf .artist-image {
    background-image: linear-gradient(135deg, rgba(168,237,234,0.8), rgba(254,214,227,0.8)), url('images/asaf.jpg');
}

.artist-matias .artist-image {
    background-image: linear-gradient(135deg, rgba(210,153,194,0.8), rgba(254,249,215,0.8)), url('images/matias.jpg');
}

.artists h2 {
    font-size: 2.5rem;
    color: #1e293b;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* All artists in single row */
.artist-kelnier, .artist-lyan, .artist-asaf, 
.artist-emma, .artist-matias, .artist-chinogz {
    grid-area: auto;
}

.artist-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.artist-image {
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.artist-image::before {
    content: '🎤';
    font-size: 4rem;
    color: rgba(255,255,255,0.9);
    position: absolute;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Artist-specific icons */
.artist-emma .artist-image::before { content: '🎤'; }
.artist-kelnier .artist-image::before { content: '🎧'; }
.artist-asaf .artist-image::before { content: '🎸'; }
.artist-matias .artist-image::before { content: '🥁'; }

.artist-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.artist-gradient.secondary {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.artist-gradient.tertiary {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.artist-gradient.quaternary {
    background: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%);
}

/* Kelnier specific image */
.artist-kelnier .artist-image {
    background-image: linear-gradient(135deg, rgba(255,236,210,0.3) 0%, rgba(252,182,159,0.3) 100%), url('images/kelnier.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.artist-kelnier .artist-image::before {
    display: none; /* Hide clip art icon */
}

.artist-kelnier .artist-gradient {
    background: rgba(255,236,210,0.2);
}

/* Asaf specific image */
.artist-asaf .artist-image {
    background-image: linear-gradient(135deg, rgba(168,237,234,0.3) 0%, rgba(254,214,227,0.3) 100%), url('images/asaf.jpg');
    background-size: cover;
    background-position: center 10%;
    background-repeat: no-repeat;
}

.artist-asaf .artist-image::before {
    display: none; /* Hide clip art icon */
}

.artist-asaf .artist-gradient {
    background: rgba(168,237,234,0.2);
}

/* Matias specific image */
.artist-matias .artist-image {
    background-image: linear-gradient(135deg, rgba(210,153,194,0.3) 0%, rgba(254,249,215,0.3) 100%), url('images/matias.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.artist-matias .artist-image::before {
    display: none; /* Hide clip art icon */
}

.artist-matias .artist-gradient {
    background: rgba(210,153,194,0.2);
}

/* Lyan specific image */
.artist-lyan .artist-image {
    background-image: linear-gradient(135deg, rgba(102,126,234,0.3) 0%, rgba(118,75,162,0.3) 100%), url('images/lyan.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.artist-lyan .artist-image::before {
    display: none; /* Hide clip art icon */
}

.artist-lyan .artist-gradient {
    background: rgba(102,126,234,0.2);
}

/* Emma specific image */
.artist-emma .artist-image {
    background-image: linear-gradient(135deg, rgba(102,126,234,0.3) 0%, rgba(118,75,162,0.3) 100%), url('images/emma.jpg');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
}

.artist-emma .artist-image::before {
    display: none; /* Hide clip art icon */
}

.artist-emma .artist-gradient {
    background: rgba(102,126,234,0.2);
}

/* DJ CHINOGZ specific image */
.artist-chinogz .artist-image {
    background-image: linear-gradient(135deg, rgba(255,236,210,0.3) 0%, rgba(252,182,159,0.3) 100%), url('images/djchinogz.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.artist-chinogz .artist-image::before {
    display: none; /* Hide clip art icon */
}

.artist-chinogz .artist-gradient {
    background: rgba(255,236,210,0.2);
}

.social-handle {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.9);
    color: #1e293b;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.social-handle:hover {
    background: rgba(255,255,255,1);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    color: #1e293b;
    text-decoration: none;
}

.artist-info {
    padding: 2rem;
}

.artist-info h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.artist-info > p {
    color: #6366f1;
    font-weight: 600;
    margin-bottom: 1rem;
}

.artist-bio {
    color: #64748b !important;
    line-height: 1.6;
    font-weight: 400 !important;
}

.promo-info {
    text-align: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.promo-info h3 {
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

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

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-info > p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.contact-item h4 {
    color: #6366f1;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    opacity: 0.9;
    line-height: 1.6;
}

.contact-form {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255,255,255,0.2);
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #6366f1;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

/* Membership Section */
.membership {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.membership h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
}

.membership .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.membership-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.membership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.membership-card.featured {
    border: 2px solid #6366f1;
    transform: scale(1.05);
}

.membership-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #6366f1;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.tier-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.tier-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tier-header h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
}

.tier-price {
    font-size: 2.5rem;
    color: #6366f1;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.tier-price span {
    font-size: 1rem;
    color: #64748b;
    font-weight: 400;
}

.tier-subtitle {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.4;
}

.tier-benefits ul {
    list-style: none;
    margin-bottom: 2rem;
}

.tier-benefits ul li {
    padding: 0.5rem 0;
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.5;
    border-bottom: 1px solid #f1f5f9;
}

.tier-benefits ul li:last-child {
    border-bottom: none;
}

.btn-membership {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #6366f1;
    color: white;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-sizing: border-box;
}

.btn-membership:hover {
    background: #5856eb;
    transform: translateY(-2px);
}

.btn-membership.featured {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    box-shadow: 0 4px 15px rgba(99,102,241,0.4);
}

.btn-membership.featured:hover {
    box-shadow: 0 6px 20px rgba(99,102,241,0.5);
}

/* Membership Benefits Overview */
.membership-benefits-overview {
    margin-bottom: 4rem;
    text-align: center;
}

.membership-benefits-overview h3 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-item p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Annual Goals */
.annual-goals {
    margin-bottom: 4rem;
    text-align: center;
}

.annual-goals h3 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 700;
}

.goals-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.goal-stat {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #6366f1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Membership CTA */
.membership-cta {
    text-align: center;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    color: white;
}

.membership-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.membership-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.membership-cta .btn-primary {
    background: white;
    color: #6366f1;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.membership-cta .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

/* Tablet responsive */
@media (max-width: 1024px) {
    .artists-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
}

/* Responsive Design for Membership */
@media (max-width: 768px) {
    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .membership-tiers {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .artists-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .membership-card.featured {
        transform: none;
    }
    
    .membership-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .goals-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #6366f1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #6366f1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .featured-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-text {
        text-align: center;
    }
    
    .event-poster {
        max-width: 340px;
        height: auto;
        margin: 0 auto;
        display: block;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        text-align: center;
        flex-direction: column;
    }
    
    .artist-tags {
        justify-content: center;
    }
    
    .event-price {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .featured-text h2 {
        font-size: 2rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #6366f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4f46e5;
}