/*
Theme Name: Gigaton Artist Theme
Description: Complete artist website solution with streaming integration, lyrics management, tour dates, and fan engagement. Features SongStats analytics, Bandsintown integration, Spotify/Bandcamp players, and comprehensive career management dashboard. Perfect for musicians, bands, and music artists. Setup: Install plugin, configure artist settings, add API credentials, and customize branding.
Version: 1.2.0
Author: Gigaton LLC
Author URI: https://gigaton.ai/collective
*/

/* Gigaton Artist Theme Styles */

:root {
    --primary-color: #bd0303;
    --secondary-color: #1a1a1a;
    --accent-color: #f1f1f1;
    --text-color: #ffffff;
    --bg-color: #000000;
    --card-bg: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.1);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), #8b0000);
}

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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff4444;
}

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

.section {
    padding: 4rem 0;
}

/* Header */
.site-header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.site-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-color);
}

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

.main-nav a {
    color: var(--text-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    background-size: cover;
    background-position: center;
    margin-top: 80px;
}

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

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(189, 3, 3, 0.3);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* About Section */
.about-section {
    background: var(--bg-color);
    padding: 4rem 0;
}

/* Page-based About (RECOMMENDED) */
.about-page-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-page-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-page-content h2,
.about-page-content h3,
.about-page-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Gutenberg block support */
.about-page-content .wp-block-columns {
    margin-bottom: 2rem;
}

.about-page-content .wp-block-image img {
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.about-page-content .wp-block-button__link {
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.about-page-content .wp-block-button__link:hover {
    background: #ff4444;
}

/* Settings-based About (FALLBACK) */
.about-settings-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.about-description p {
    margin-bottom: 1rem;
}

.band-members {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.band-members h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.band-members p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.4;
}

.band-members a {
    color: var(--primary-color);
    text-decoration: underline;
}

.band-members a:hover {
    color: #ff4444;
}

.about-credits {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--primary-color);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.about-credits h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.about-credits p {
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.about-credits a {
    color: var(--primary-color);
}

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

.about-images img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.about-purchase {
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* Responsive */
@media (max-width: 768px) {
    .about-images {
        grid-template-columns: 1fr;
    }
}

/* Music & Merch Section */
.music-section {
    background: var(--section-bg);
    padding: 3rem 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

/* Bandcamp Products Section */
.bandcamp-products-section {
    margin-bottom: 4rem;
}

.bandcamp-products-section h2 {
    margin-bottom: 2rem;
}

.bandcamp-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bandcamp-product {
    display: flex;
    justify-content: center;
}

.bandcamp-product iframe {
    max-width: 350px;
}

/* Streaming Links Section */
.streaming-links-section {
    margin-top: 4rem;
    padding: 2rem;
}

.streaming-links-section h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.streaming-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.streaming-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 240px;
}

.streaming-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.streaming-btn .platform-logo {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    object-fit: contain;
}

.streaming-btn .platform-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
}

/* Apple Music Hover */
.apple-music-btn:hover {
    border-color: #fa2c4f;
    background: rgba(250, 44, 79, 0.1);
    box-shadow: 0 0 20px rgba(250, 44, 79, 0.4);
}

/* Spotify Hover */
.spotify-btn:hover {
    border-color: #1db954;
    background: rgba(29, 185, 84, 0.1);
    box-shadow: 0 0 20px rgba(29, 185, 84, 0.4);
}

/* SoundCloud Hover */
.soundcloud-btn:hover {
    border-color: #ff5500;
    background: rgba(255, 85, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 85, 0, 0.4);
}

/* Sticky Footer Player - Simplified Spotify Only */
.sticky-music-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem;
}

.sticky-music-player .container {
    max-width: 1200px;
}

.sticky-player-spacer {
    height: 110px; /* Reserve space for Spotify player */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .bandcamp-products-grid {
        grid-template-columns: 1fr;
    }
    
    .streaming-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .streaming-btn {
        min-width: 100%;
    }
    
    .sticky-player-spacer {
        height: 100px;
    }
    
    .sticky-music-player {
        padding: 0.5rem;
    }
}

/* Lyrics Section */
.lyrics-section {
    background: var(--bg-color);
}

.lyrics-container {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.lyrics-sidebar {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 1.5rem;
    height: fit-content;
}

.lyrics-tabs {
    display: flex;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.lyrics-tab {
    padding: 0.75rem 1rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: color 0.3s ease;
}

.lyrics-tab.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.song-list {
    max-height: 600px;
    overflow-y: auto;
}

.song-list .songs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.song-item {
    padding: 0.75rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease;
    margin-bottom: 0.5rem;
}

.song-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.song-item.active {
    background: var(--primary-color);
    color: white;
}

.song-item.active .song-title,
.song-item.active .song-artist {
    color: white;
}

.lyrics-display {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 2rem;
    min-height: 500px;
}

.lyrics-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.lyrics-meta {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.lyrics-section-header {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--primary-color);
    margin: 2rem 0 0.5rem 0;
    font-weight: 600;
}

.lyrics-content {
    line-height: 1.8;
    white-space: pre-line;
    margin-bottom: 1.5rem;
}

.song-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.song-thumbnail {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
}

.song-info {
    flex: 1;
    min-width: 0;
}

.song-title {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.song-artist {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.song-detail-art {
    max-width: 300px;
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.song-detail-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.song-detail-artist {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.song-detail-album,
.song-detail-date {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.lyrics-notice {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.lyrics-cta {
    margin-bottom: 1rem;
}

.lyrics-cta h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.lyrics-notice p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.btn-genius {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-genius:hover {
    background: #e55a2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.genius-attribution {
    margin-top: 1rem;
    opacity: 0.6;
}

.loading,
.error,
.no-songs,
.lyrics-placeholder {
    padding: 3rem 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.lyrics-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.lyrics-placeholder p {
    color: rgba(255, 255, 255, 0.5);
}

.error {
    color: #ff6b6b;
}

.lyrics-not-configured {
    text-align: center;
    padding: 3rem;
    color: rgba(255, 255, 255, 0.6);
}

.lyrics-not-configured .button {
    margin-top: 1rem;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

/* Responsive for lyrics section */
@media (max-width: 768px) {
    .lyrics-container {
        grid-template-columns: 1fr;
    }
    
    .song-detail-art {
        max-width: 200px;
    }
    
    .song-detail-title {
        font-size: 1.5rem;
    }
}

/* Tour Dates Section */
.tour-section {
    background: var(--secondary-color);
}

.tour-list {
    margin-top: 2rem;
}

.tour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
}

.tour-date {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.tour-venue {
    font-size: 1.1rem;
    font-weight: 600;
}

.tour-location {
    color: rgba(255, 255, 255, 0.7);
}

/* Bandsintown Smart Link Embed */
.bandsintown-smartlink-container {
    margin: 2rem auto;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    background: #000;
}

.bandsintown-smartlink-iframe {
    display: block;
    width: 100%;
    min-height: 900px;
    border: none;
    border-radius: 12px;
}

/* Responsive adjustments for Smart Link */
@media (max-width: 768px) {
    .bandsintown-smartlink-container {
        margin: 1rem 0;
        border-radius: 8px;
    }
    
    .bandsintown-smartlink-iframe {
        min-height: 700px;
        border-radius: 8px;
    }
}

/* Bandsintown Widget Styling */
#bandsintown-widget {
    margin: 2rem 0;
}

/* Contact Section */
.contact-section {
    background: var(--bg-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-form {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-color);
    font-family: inherit;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav ul {
        gap: 1rem;
    }
    
    .lyrics-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tour-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .music-grid {
        grid-template-columns: 1fr;
    }
}

/* Loading States */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.loading-content {
    text-align: center;
    max-width: 400px;
    padding: 2rem;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
    margin: 0 auto 2rem auto;
}

.loading-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.loading-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin: 0;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden { display: none; }
.visible { display: block; }

/* WordPress Admin Bar Compatibility */
#wpadminbar {
    display: none !important;
}

html {
    margin-top: 0 !important;
}

/* Mobile Menu Styling */
@media (max-width: 768px) {
    .mobile-menu {
        background: var(--card-bg) !important;
        border: 1px solid var(--border-color) !important;
    }
    
    .mobile-menu button {
        background: var(--primary-color) !important;
        color: white !important;
    }
}

/* ========================================
   CONTACT SECTION - TWO CARD LAYOUT (JAZZBONES STYLE)
   ======================================== */

.contact-section {
    padding: 4rem 0;
    background: var(--bg-color);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

/* Contact Cards (like jazzbones) - NO ICONS */
.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Card Header */
.contact-card .card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-card h3 {
    font-size: 1.8rem;
    margin: 0 0 0.75rem 0;
    color: var(--text-color);
}

.contact-card .card-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Card Content */
.card-content {
    padding-top: 1rem;
}

.card-content .contact-item {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.card-content .contact-item:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
}

.card-content .contact-item strong {
    display: block;
    color: var(--primary-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.card-content .contact-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-content .contact-item a:hover {
    color: var(--primary-color);
}

.specs-intro {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.specs-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.specs-list li {
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    line-height: 1.5;
}

.specs-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    padding: 1rem;
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    border: 2px solid var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

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

.contact-info-fallback {
    padding: 1rem 0;
}

.contact-info-fallback p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ========================================
   CONTACT FORM MODAL
   ======================================== */

.contact-modal {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.contact-modal.active {
    display: flex !important;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: rgba(26, 26, 26, 0.98);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease;
    z-index: 10001;
    backdrop-filter: blur(10px);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-color);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h3 {
    font-size: 1.8rem;
    margin: 0 0 0.5rem 0;
    color: var(--text-color);
}

.modal-header p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

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

.contact-modal-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.contact-modal-form input[type="text"],
.contact-modal-form input[type="email"],
.contact-modal-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: inherit;
}

.contact-modal-form input:focus,
.contact-modal-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.2);
}

.contact-modal-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Form Response Messages */
.form-response {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-response.success {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.5);
    color: #22c55e;
    display: block;
}

.form-response.error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #ef4444;
    display: block;
}

/* Responsive - Cards Collapse Like Jazzbones */
@media (max-width: 968px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-card h3 {
        font-size: 1.5rem;
    }
    
    .modal-content {
        padding: 2rem 1.5rem;
        width: 95%;
    }
    
    .modal-header h3 {
        font-size: 1.5rem;
    }
}

/* ========================================
   FOOTER UPDATES
   ======================================== */

.site-footer {
    background: var(--secondary-color);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1.5rem 0;
    text-align: center;
}

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

/* Social Icons - Centered Above Logo */
.footer-social-centered {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1rem;
    margin: 0 auto 2.5rem auto;
    max-width: 600px;
}

.footer-social-centered .social-icon {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-centered .social-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Gigaton Branding */
.footer-bottom {
    text-align: center;
}

.gigaton-branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.gigaton-logo-link {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.gigaton-logo-link:hover {
    transform: scale(1.05);
}

.gigaton-logo {
    height: 40px;
    width: auto;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.gigaton-logo-link:hover .gigaton-logo {
    filter: brightness(1);
}

.gigaton-logo-text {
    fill: var(--text-color);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.gigaton-logo-link:hover .gigaton-logo-text {
    opacity: 1;
}

.gigaton-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* ========================================
   VIDEOS SECTION
   ======================================== */

.videos-section {
    padding: 80px 0;
    background: var(--bg-color);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.video-card {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(189, 3, 3, 0.3);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.6);
}

.video-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.video-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Videos Section - Responsive */
@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .videos-section {
        padding: 60px 0;
    }
}

/* ========================================
   RESPONSIVE - FOOTER
   ======================================== */

@media (max-width: 768px) {
    .footer-social-centered {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .footer-social-centered .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .gigaton-logo {
        height: 32px;
    }
}
