/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --charcoal: #111111;
    --gold: #d1a95a;
    --white: #ffffff;
    --gray: #888888;
    --dark-gray: #222222;
    --cyber-blue: #1E90FF;
    --neon-blue: #00BFFF;
    --electric-blue: #007BFF;
    --success: #00C851;
    --danger: #ff4444;
    --warning: #ffbb33;
    --info: #33b5e5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Urbanist', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

/* Logo com apóstrofo */
.logo-apostrophe {
    font-family: 'Orbitron', monospace;
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-blue) 0%, var(--cyber-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(30, 144, 255, 0.4);
    letter-spacing: -3px;
    position: relative;
    margin-bottom: 30px;
}

.logo-apostrophe::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--neon-blue) 0%, var(--cyber-blue) 100%);
    z-index: -1;
    filter: blur(20px);
    opacity: 0.3;
    border-radius: 10px;
}

.logo-apostrophe-small {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--neon-blue) 0%, var(--cyber-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(30, 144, 255, 0.4);
    letter-spacing: -1px;
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.navbar {
    padding: 15px 0;
    transition: padding 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo-tagline {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-item {
    margin: 0;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: 0.3s;
}

/* Header on Scroll */
.header-scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    padding: 5px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--gold);
}

.hero-tagline {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 400;
}

.highlight {
    color: var(--gold);
    font-weight: 700;
}

.release-date {
    color: var(--neon-blue);
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--gold);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(209, 169, 90, 0.2), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--black);
    box-shadow: 0 0 15px rgba(209, 169, 90, 0.5);
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--gold);
    box-shadow: 0 0 20px rgba(209, 169, 90, 0.8);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid var(--white);
    border-right: 2px solid var(--white);
    transform: rotate(45deg);
    animation: scroll 2s infinite;
}

.scroll-indicator span:nth-child(2) {
    animation-delay: -0.2s;
}

.scroll-indicator span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes scroll {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-10px, -10px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(10px, 10px);
    }
}

/* About Section */
.about {
    background-color: var(--charcoal);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about-image-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.about-image-caption p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 600;
}

.storytelling {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.story-intro {
    font-size: 1.2rem;
    line-height: 1.8;
}

.story-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
}

.story-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border-left: 3px solid var(--gold);
}

.story-item i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-top: 5px;
}

.story-item h3 {
    margin-bottom: 5px;
    color: var(--gold);
}

.story-item p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.artist-quote {
    background: rgba(209, 169, 90, 0.1);
    border-left: 4px solid var(--gold);
    padding: 20px;
    margin: 20px 0;
    font-style: italic;
    position: relative;
}

.artist-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: 10px;
}

.story-outro {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Music Section */
.music {
    background-color: var(--black);
}

.music-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.album-cover {
    position: relative;
}

.album-cover img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.album-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--success);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.album-info h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.release-date {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.song-stats {
    display: flex;
    gap: 30px;
    margin: 25px 0;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.album-description {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.audio-preview {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
}

.audio-wave {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 40px;
    margin-bottom: 15px;
}

.wave-bar {
    width: 6px;
    background: var(--gold);
    border-radius: 3px;
    animation: wave 1.5s ease-in-out infinite;
}

.wave-bar:nth-child(1) { height: 10px; animation-delay: 0s; }
.wave-bar:nth-child(2) { height: 20px; animation-delay: 0.1s; }
.wave-bar:nth-child(3) { height: 30px; animation-delay: 0.2s; }
.wave-bar:nth-child(4) { height: 25px; animation-delay: 0.3s; }
.wave-bar:nth-child(5) { height: 35px; animation-delay: 0.4s; }
.wave-bar:nth-child(6) { height: 20px; animation-delay: 0.5s; }
.wave-bar:nth-child(7) { height: 15px; animation-delay: 0.6s; }
.wave-bar:nth-child(8) { height: 10px; animation-delay: 0.7s; }

@keyframes wave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.5); }
}

.audio-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.play-btn {
    background: var(--gold);
    color: var(--black);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(209, 169, 90, 0.5);
}

.audio-time {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Pre-Save Section */
.presave {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}

.presave::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23d1a95a" fill-opacity="0.03" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.presave-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.presave-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.presave-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.presave-benefits {
    list-style: none;
    margin: 30px 0;
}

.presave-benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.presave-benefits i {
    color: var(--success);
    font-size: 1.2rem;
}

.presave-form-container {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 1rem;
    font-family: 'Urbanist', sans-serif;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(209, 169, 90, 0.2);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--gray);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:valid + label,
.form-group textarea:valid + label {
    top: -20px;
    font-size: 0.8rem;
    color: var(--gold);
}

.form-note {
    font-size: 0.9rem;
    text-align: center;
    margin-top: 20px;
    opacity: 0.7;
}

/* Gallery Section - Mosaic Layout */
.gallery {
    background-color: var(--charcoal);
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 15px;
}

.mosaic-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mosaic-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mosaic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mosaic-content h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.mosaic-content p {
    font-size: 0.9rem;
    color: var(--gold);
}

.mosaic-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.mosaic-item:hover img {
    transform: scale(1.1);
}

.mosaic-item:hover .mosaic-overlay {
    opacity: 1;
}

/* Agenda Section */
.agenda {
    background-color: var(--black);
}

.agenda-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.agenda-highlights {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.highlight-card {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--gold);
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.highlight-icon i {
    color: var(--black);
    font-size: 1.5rem;
}

.highlight-card h3 {
    margin-bottom: 10px;
    color: var(--gold);
}

.highlight-card p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.highlight-date {
    color: var(--neon-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

.upcoming-events h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--gold);
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.event-item:hover {
    transform: translateX(5px);
}

.event-date {
    text-align: center;
    background: var(--gold);
    color: var(--black);
    padding: 15px;
    border-radius: 8px;
    min-width: 70px;
}

.event-date .day {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
}

.event-info {
    flex: 1;
}

.event-info h4 {
    margin-bottom: 5px;
    color: var(--gold);
}

.event-info p {
    margin-bottom: 8px;
    opacity: 0.9;
}

.event-location {
    font-size: 0.9rem;
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-cta {
    background: var(--neon-blue);
    color: var(--black);
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.event-cta:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

/* Video Section */
.video {
    background-color: var(--charcoal);
}

.video-content {
    max-width: 900px;
    margin: 0 auto;
}

.video-header {
    text-align: center;
    margin-bottom: 40px;
}

.video-header h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--gold);
}

.video-header p {
    font-size: 1.1rem;
    opacity: 0.8;
}

.video-player {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
}

.video-thumbnail {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(209, 169, 90, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-play-button:hover {
    background: var(--gold);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-button i {
    color: var(--black);
    font-size: 2rem;
    margin-left: 5px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.video-info {
    width: 100%;
}

.video-badge {
    background: var(--gold);
    color: var(--black);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.video-info h4 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.video-info p {
    opacity: 0.9;
}

.video-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
}

/* Social Section */
.social {
    background-color: var(--black);
}

.social-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.social-intro {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--white);
    text-decoration: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--neon-blue) 0%, var(--cyber-blue) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-link:hover::before {
    opacity: 0.1;
}

.social-link:hover {
    transform: translateY(-5px);
    border-color: var(--neon-blue);
}

.social-link.tiktok:hover {
    border-color: #ff0050;
}

.social-link.instagram:hover {
    border-color: #e4405f;
}

.social-link.youtube:hover {
    border-color: #ff0000;
}

.social-link.spotify:hover {
    border-color: #1db954;
}

.social-link i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.social-link span {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.social-link small {
    font-size: 0.9rem;
    opacity: 0.7;
}

.social-highlight {
    margin-top: 40px;
}

.social-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.social-stat {
    text-align: center;
}

/* Contact Section */
.contact {
    background-color: var(--charcoal);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.contact-info > p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border-left: 3px solid var(--gold);
}

.contact-item i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-top: 5px;
}

.contact-item h4 {
    margin-bottom: 5px;
    color: var(--gold);
}

.contact-item p {
    margin-bottom: 8px;
    opacity: 0.9;
}

.contact-item a {
    color: var(--neon-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-form {
    background: rgba(0, 0, 0, 0.3);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
    background-color: var(--black);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-brand p {
    opacity: 0.8;
    font-size: 1.1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.footer-column a:hover {
    color: var(--gold);
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: var(--white);
    font-size: 1.2rem;
    transition: color 0.3s ease;
    opacity: 0.7;
}

.footer-social a:hover {
    color: var(--gold);
    opacity: 1;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--gold);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.lightbox-nav:hover {
    background: var(--gold);
    color: var(--black);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .about-content,
    .music-content,
    .presave-content,
    .agenda-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gallery-mosaic {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lightbox-prev {
        left: 20px;
    }
    
    .lightbox-next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--charcoal);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 30px;
    }
    
    .nav-item {
        margin: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .song-stats,
    .social-stats,
    .video-stats {
        gap: 30px;
    }
    
    .gallery-mosaic {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .logo-apostrophe {
        font-size: 3.5rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-form,
    .presave-form-container {
        padding: 30px 20px;
    }
    
    .gallery-mosaic {
        grid-template-columns: 1fr;
    }
    
    .logo-apostrophe {
        font-size: 2.5rem;
    }
    
    .event-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .song-stats,
    .social-stats,
    .video-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}