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

body, table, td, p, a, li, blockquote {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

table, td {
    mso-table-lspace: 0pt;
    mso-table-rspace: 0pt;
}

img {
    -ms-interpolation-mode: bicubic;
    border: 0;
    height: auto;
    line-height: 100%;
    outline: none;
    text-decoration: none;
}

/* Main Website Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background-color: #f3f4f6;
    color: #1f2937;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #c084fc 0%, #60a5fa 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-logo {
    max-width: 200px;
    height: auto;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.nav-links a:hover {
    opacity: 0.8;
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #ffffff;
    min-height: calc(100vh - 80px);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    margin-bottom: 4rem;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #c084fc 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #4f46e5;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Section Styles */
.newsletters-section,
.about-section {
    margin-bottom: 4rem;
}

.newsletters-section h2,
.about-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 1rem;
}

.section-description {
    text-align: center;
    color: #6b7280;
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.about-stats {
    display: grid;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #ede9fe 0%, #f3e8ff 100%);
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4f46e5;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #6b7280;
    font-weight: 500;
}

/* Mobile Menu Button */
.mobile-menu-button {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.mobile-menu-button span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-button.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Newsletter Grid */
.newsletter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.newsletter-card {
    background: linear-gradient(135deg, #ede9fe 0%, #f3e8ff 100%);
    border-radius: 12px;
    padding: 2rem;
    text-decoration: none;
    color: #1f2937;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #e5e7eb;
}

.newsletter-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    color: #1f2937;
}

.newsletter-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #4f46e5;
}

.newsletter-card p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.newsletter-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Newsletter Specific Styles */
.newsletter-container {
    max-width: 640px;
    margin: 0 auto;
    background-color: #ffffff;
}

.newsletter-header {
    background: linear-gradient(135deg, #c084fc 0%, #60a5fa 100%);
    color: #ffffff;
    padding: 32px 24px;
    text-align: center;
}

.newsletter-header h1 {
    margin: 0 0 16px 0;
    font-size: 36px;
    font-weight: bold;
}

.newsletter-header .logo {
    max-width: 300px;
    height: auto;
    margin: 0 0 16px 0;
}

.newsletter-header p {
    margin: 0 0 16px 0;
    font-size: 20px;
    opacity: 0.9;
}

.newsletter-header .date {
    font-size: 14px;
    opacity: 0.8;
}

.newsletter-content {
    padding: 32px 24px;
}

.newsletter-section {
    margin-bottom: 48px;
}

.newsletter-section h2 {
    color: #1f2937;
    font-size: 28px;
    font-weight: bold;
    margin: 0 0 24px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
}

.purple-icon { background-color: #9333ea; }
.blue-icon { background-color: #2563eb; }
.green-icon { background-color: #16a34a; }

.welcome {
    text-align: center;
    margin-bottom: 48px;
}

.welcome h2 {
    color: #1f2937;
    font-size: 24px;
    margin-bottom: 16px;
}

.welcome p {
    color: #6b7280;
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
}

.card {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
}

.card img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.artist-image-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f3f4f6;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.artist-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 24px;
}

.card h3 {
    color: #1f2937;
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 8px 0;
}

.card p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.badge {
    display: inline-block;
    background-color: #f3f4f6;
    color: #374151;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    margin: 2px 4px 2px 0;
}

.badge-primary {
    background-color: #9333ea;
    color: #ffffff;
}

.badge-blue {
    background-color: #2563eb;
    color: #ffffff;
}

.badge-green {
    background-color: #16a34a;
    color: #ffffff;
}

.prompt-section {
    padding: 24px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 48px;
    border-left: 4px solid;
}

.prompt-purple {
    background: linear-gradient(135deg, #ede9fe 0%, #f3e8ff 100%);
    border-left-color: #9333ea;
}

.prompt-green {
    background: linear-gradient(135deg, #ecfdf5 0%, #dbeafe 100%);
    border-left-color: #16a34a;
}

.prompt-yellow {
    background: linear-gradient(135deg, #fefce8 0%, #fed7aa 100%);
    border-left-color: #eab308;
}

.prompt-section h3 {
    color: #1f2937;
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 12px 0;
}

.prompt-section p {
    color: #6b7280;
    margin: 0 0 16px 0;
}

.button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    margin: 4px;
    border: none;
    transition: opacity 0.2s ease;
}

.button:hover {
    opacity: 0.9;
}

.button-purple {
    background-color: #9333ea;
    color: #ffffff;
}

.button-green {
    background-color: #16a34a;
    color: #ffffff;
}

.button-yellow {
    background-color: #eab308;
    color: #ffffff;
}

.button-outline {
    background-color: transparent;
    color: #16a34a;
    border: 1px solid #16a34a;
}

.stats-grid {
    display: table;
    width: 100%;
    margin-bottom: 24px;
}

.stats-row {
    display: table-row;
}

.stats-cell {
    display: table-cell;
    padding: 8px;
    font-size: 14px;
}

.artists-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.venues-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.venue-logo-card {
    text-align: center;
    padding: 0;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background-color: #ffffff;
    transition: transform 0.2s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.venue-logo-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.venue-logo {
    width: 100%;
    height: 120px;
    max-width: 100%;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    display: block;
    margin: 0;
    background: #f3f4f6;
}

.venue-name {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    margin: 12px 16px 4px 16px;
    font-family: inherit;
    word-break: break-word;
}

.venue-location {
    font-size: 13px;
    color: #6b7280;
    margin: 0 16px 16px 16px;
    font-family: inherit;
    word-break: break-word;
}

.newsletter-signup {
    background-color: #ecfdf5;
    padding: 24px;
    border-radius: 8px;
    margin-top: 32px;
}

.newsletter-signup h3 {
    color: #16a34a;
    margin: 0 0 12px 0;
}

.newsletter-signup p {
    color: #16a34a;
    font-size: 14px;
    margin: 0 0 12px 0;
}

.newsletter-signup .newsletter-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
    align-items: center;
}

.newsletter-signup input[type="email"] {
    width: 100%;
    max-width: 400px;
    padding: 12px 16px;
    border: 1px solid #bbf7d0;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
    background-color: #ffffff;
}

.newsletter-signup .button.button-green {
    width: auto;
    min-width: 120px;
    padding: 12px 24px;
    display: inline-block;
}

.captcha-container {
    margin: 16px 0;
    display: flex;
    justify-content: center;
}

.g-recaptcha {
    transform: scale(0.9);
    transform-origin: 0 0;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: #ffffff;
    padding: 32px 24px;
    text-align: center;
    margin-top: 4rem;
}

.footer p {
    color: #9ca3af;
    font-size: 14px;
    margin: 0 0 16px 0;
}

.footer a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    margin: 0 12px;
}

.footer a:hover {
    color: #ffffff;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .mobile-menu-button {
        display: flex;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .container {
        padding: 1rem;
    }
    
    .hero {
        padding: 2rem 0;
        margin-bottom: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .newsletters-section h2,
    .about-section h2 {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .newsletter-container {
        width: 100% !important;
    }
    
    .newsletter-header, .newsletter-content, .footer {
        padding: 24px 16px !important;
    }
    
    .newsletter-header h1 {
        font-size: 28px !important;
    }
    
    .newsletter-section h2 {
        font-size: 24px !important;
    }
    
    .artists-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .venues-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .newsletter-signup {
        padding: 16px !important;
    }
    
    .newsletter-signup .newsletter-form {
        flex-direction: column;
        gap: 8px;
    }
    
    .newsletter-signup input[type="email"] {
        max-width: 100%;
    }
    
    .newsletter-signup .button.button-green {
        width: 100%;
        max-width: 100%;
        min-width: unset;
    }
    
    .captcha-container {
        margin: 12px 0;
    }
    
    .g-recaptcha {
        transform: scale(0.8);
    }
}

@media screen and (max-width: 640px) {
    .newsletter-container {
        width: 100% !important;
    }
    
    .newsletter-header, .newsletter-content, .footer {
        padding: 24px 16px !important;
    }
    
    .newsletter-header h1 {
        font-size: 28px !important;
    }
    
    .newsletter-section h2 {
        font-size: 24px !important;
    }
    
    .artists-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .venues-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}