/* ============================================
   AMP EVENTS - Main Stylesheet
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --accent-gold: #c9a227;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
    --text-dark: #333333;
    --overlay-dark: rgba(0, 0, 0, 0.7);
    --transition-smooth: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

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

a {
    color: inherit;
    text-decoration: none;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, transparent 100%);
    transition: var(--transition-smooth);
}

.nav.scrolled {
    background: var(--primary-dark);
    padding: 15px 50px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    transition: var(--transition-smooth);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition-smooth);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition-smooth);
}

/* ============================================
   HERO SECTION - VIDEO LANDING
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
}

/* Video placeholder - shown until real video is added */
.hero-video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    z-index: -2;
}

.hero-video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(201, 162, 39, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(201, 162, 39, 0.02) 0%, transparent 40%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 20px;
}

.hero-logo {
    width: 400px;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 15px;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
}

.hero-tagline {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 50px;
}

.hero-cta {
    display: inline-block;
    padding: 18px 50px;
    border: 2px solid var(--text-light);
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.hero-cta:hover {
    background: var(--text-light);
    color: var(--primary-dark);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 30px;
    height: 30px;
    stroke: var(--text-light);
    opacity: 0.7;
}

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

/* ============================================
   ABOUT PAGE
   ============================================ */

.page-hero {
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
    position: relative;
}

.page-hero::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 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23333" stroke-width="0.5"/></svg>');
    background-size: 80px 80px;
    opacity: 0.05;
}

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

.page-hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 10px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.page-hero-subtitle {
    font-size: 1rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent-gold);
}

/* About Content */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 50px;
}

.about-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 100px;
}

.about-intro p {
    font-size: 1.4rem;
    line-height: 2;
    color: var(--text-muted);
    font-weight: 300;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.about-section.reverse {
    direction: rtl;
}

.about-section.reverse > * {
    direction: ltr;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--text-light);
}

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

.about-text .highlight {
    color: var(--accent-gold);
    font-weight: 500;
}

.about-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 350px;
    background: linear-gradient(135deg, #2a2a3e 0%, #1a1a2e 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #333;
}

.image-placeholder svg {
    width: 60px;
    height: 60px;
    stroke: #444;
    margin-bottom: 15px;
}

.image-placeholder span {
    color: #555;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Artist Quotes */
.artist-quotes {
    background: var(--secondary-dark);
    padding: 100px 50px;
    margin: 100px 0;
}

.quotes-title {
    text-align: center;
    font-size: 1rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 60px;
}

.quotes-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.quote-card {
    padding: 40px;
    background: var(--primary-dark);
    border-left: 3px solid var(--accent-gold);
}

.quote-card blockquote {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.quote-card cite {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: normal;
    font-weight: 500;
}

/* ============================================
   GALLERY PAGE
   ============================================ */

.gallery-content {
    padding: 100px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: transparent;
    border: 1px solid #444;
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-info h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.gallery-item-info span {
    font-size: 0.85rem;
    color: var(--accent-gold);
}

/* Video items */
.gallery-item.video::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    z-index: 2;
    transition: var(--transition-smooth);
}

.gallery-item.video::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    border-left: 20px solid var(--primary-dark);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    z-index: 3;
}

.gallery-item.video:hover::before {
    background: var(--accent-gold);
}

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

.footer {
    background: var(--secondary-dark);
    padding: 80px 50px 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 20px;
    line-height: 1.8;
    max-width: 400px;
}

.footer-logo {
    height: 60px;
    width: auto;
}

.footer-links h4,
.footer-social h4 {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--text-light);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-dark);
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    background: var(--accent-gold);
}

.social-icons svg {
    width: 20px;
    height: 20px;
    fill: var(--text-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #333;
}

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

.footer-bottom a {
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.footer-bottom a:hover {
    color: var(--accent-gold);
}

/* ============================================
   FORMS (Join The Family, etc.)
   ============================================ */

.form-page {
    min-height: 100vh;
    padding-top: 100px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 40px;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.form-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 30px;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 18px 20px;
    background: var(--secondary-dark);
    border: 1px solid #333;
    color: var(--text-light);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-smooth);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #666;
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.required {
    color: var(--accent-gold);
}

.form-button {
    width: 100%;
    padding: 20px;
    background: var(--accent-gold);
    border: none;
    color: var(--primary-dark);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.form-button:hover {
    background: #d4af37;
    transform: translateY(-2px);
}

.form-button:disabled {
    background: #444;
    cursor: not-allowed;
    transform: none;
}

/* Alert Messages */
.alert {
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid;
}

.alert-success {
    background: rgba(39, 174, 96, 0.1);
    border-color: #27ae60;
    color: #27ae60;
}

.alert-error {
    background: rgba(231, 76, 60, 0.1);
    border-color: #e74c3c;
    color: #e74c3c;
}

/* ============================================
   CONTENT PAGES (Privacy, Unsubscribe)
   ============================================ */

.content-page {
    min-height: 100vh;
    padding-top: 100px;
}

.content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
}

.content-header {
    text-align: center;
    margin-bottom: 50px;
}

.content-header h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.content-body {
    background: var(--secondary-dark);
    padding: 50px;
    border-radius: 2px;
}

.content-body h2 {
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.content-body h2:first-child {
    margin-top: 0;
}

.content-body p {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-body strong {
    color: var(--text-light);
}

.content-body ul {
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.content-body li {
    margin-bottom: 10px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    color: var(--accent-gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.back-link:hover {
    gap: 15px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .about-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-section.reverse {
        direction: ltr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 15px 20px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--primary-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: var(--transition-smooth);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 8px;
    }

    .hero-tagline {
        font-size: 1rem;
        letter-spacing: 3px;
    }

    .page-hero-title {
        font-size: 2.5rem;
        letter-spacing: 5px;
    }

    .about-content {
        padding: 60px 20px;
    }

    .about-intro p {
        font-size: 1.2rem;
    }

    .gallery-content {
        padding: 60px 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 60px 20px 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-container,
    .content-container {
        padding: 40px 20px;
    }

    .content-body {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 5px;
    }

    .hero-cta {
        padding: 15px 30px;
        font-size: 0.8rem;
    }

    .gallery-filter {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.75rem;
    }
}
