/*
Theme Name: His Alone
Theme URI: https://hisalonemusic.com
Author: His Alone
Author URI: https://hisalonemusic.com
Description: A bold, edgy hip-hop theme for His Alone Music. Features dark aesthetic with red accents, glitch effects, and smooth animations.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hisalone
Tags: dark, music, hip-hop, one-column, custom-menu, featured-images, theme-options
*/

:root {
    --black: #0a0a0a;
    --deep-black: #050505;
    --gold: #dc2626;
    --gold-bright: #ef4444;
    --gold-dark: #991b1b;
    --white: #f5f5f5;
    --gray: #888;
    --red: #7f1d1d;
    --smoke: rgba(255,255,255,0.03);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow Condensed', sans-serif;
    background: var(--deep-black);
    color: var(--white);
    overflow-x: hidden;
    cursor: default;
}

/* WordPress Core Styles */
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    background: var(--black);
    border: 1px solid rgba(255,255,255,0.1);
    max-width: 96%;
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
    color: var(--gray);
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--black);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Grain Overlay */
.grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    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.9) 0%, transparent 100%);
    transition: all 0.4s ease;
}

.site-header.scrolled {
    background: rgba(5,5,5,0.98);
    padding: 15px 50px;
    box-shadow: 0 2px 30px rgba(220,38,38,0.1);
}

.site-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 8px;
    color: var(--white);
    text-decoration: none;
    position: relative;
}

.site-logo span {
    color: var(--gold);
}

.site-logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

/* Main Navigation */
.main-navigation ul {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation ul li {
    margin: 0;
}

.main-navigation a {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
}

.main-navigation a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.main-navigation a:hover {
    color: var(--gold);
}

.main-navigation a:hover::before {
    width: 100%;
}

.main-navigation .current-menu-item a,
.main-navigation .current_page_item a {
    color: var(--gold);
}

.main-navigation .current-menu-item a::before,
.main-navigation .current_page_item a::before {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 10px;
}

.menu-toggle span {
    width: 30px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s;
    display: block;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--deep-black);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(220,38,38,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(127,29,29,0.08) 0%, transparent 40%),
        linear-gradient(180deg, var(--deep-black) 0%, var(--black) 100%);
}

.hero-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.1;
}

.hero-lines::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    animation: lineMove 8s ease-in-out infinite;
}

.hero-lines::after {
    content: '';
    position: absolute;
    top: 0;
    right: 15%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    animation: lineMove 8s ease-in-out infinite 2s;
}

@keyframes lineMove {
    0%, 100% { transform: translateY(-20%); }
    50% { transform: translateY(20%); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    letter-spacing: 15px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.5s;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 15vw, 12rem);
    line-height: 0.9;
    letter-spacing: 10px;
    margin-bottom: 30px;
    position: relative;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.7s;
}

.hero-title .glitch {
    position: relative;
    display: inline-block;
}

.hero-title .glitch::before,
.hero-title .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.hero-title .glitch::before {
    color: var(--gold);
    animation: glitch1 3s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.hero-title .glitch::after {
    color: var(--red);
    animation: glitch2 3s infinite;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitch1 {
    0%, 90%, 100% { transform: translate(0); }
    92% { transform: translate(-3px, 1px); }
    94% { transform: translate(3px, -1px); }
    96% { transform: translate(-2px, 2px); }
    98% { transform: translate(2px, -2px); }
}

@keyframes glitch2 {
    0%, 90%, 100% { transform: translate(0); }
    91% { transform: translate(2px, -1px); }
    93% { transform: translate(-2px, 1px); }
    95% { transform: translate(3px, 2px); }
    97% { transform: translate(-3px, -2px); }
}

.hero-tagline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--gray);
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeUp 1s ease forwards 0.9s;
}

.hero-tagline em {
    color: var(--gold);
    font-style: normal;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-cta {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s ease forwards 1.1s;
}

.btn {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 18px 45px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--gold-bright);
    box-shadow: 0 0 30px rgba(220,38,38,0.5);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
    box-shadow: 0 0 30px rgba(255,255,255,0.2);
}

.hero-image {
    position: absolute;
    bottom: 0;
    right: 5%;
    height: 85%;
    z-index: 5;
    opacity: 0;
    animation: fadeIn 1.5s ease forwards 0.3s;
    filter: drop-shadow(0 0 50px rgba(0,0,0,0.8));
}

.hero-image img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeUp 1s ease forwards 1.5s;
}

.scroll-indicator span {
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
}

.scroll-indicator .mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator .mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* Sections */
.section {
    padding: 150px 50px;
    position: relative;
}

.section-dark {
    background: var(--black);
}

.section-darker {
    background: var(--deep-black);
}

.section-gradient {
    background: linear-gradient(180deg, var(--black) 0%, var(--deep-black) 100%);
}

/* About Section */
.about-section {
    overflow: hidden;
}

.about-section::before {
    content: 'HIS ALONE';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20vw;
    color: rgba(255,255,255,0.02);
    white-space: nowrap;
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: 5px;
    line-height: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    filter: grayscale(30%) contrast(1.1);
    position: relative;
    z-index: 2;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    z-index: 1;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    background: var(--gold);
    opacity: 0.1;
    z-index: 0;
}

.about-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 3px;
    margin-bottom: 30px;
    color: var(--gold);
}

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

.about-text p strong {
    color: var(--white);
}

.stats {
    display: flex;
    gap: 50px;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 10px;
}

/* Featured Release */
.featured-release {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 80px;
    align-items: start;
}

.featured-release-cover {
    position: relative;
    aspect-ratio: 1;
    background: var(--black);
    border: 2px solid rgba(255,255,255,0.1);
    overflow: hidden;
}

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

.featured-release-cover:hover img {
    transform: scale(1.05);
}

.featured-release-cover .no-cover {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--black) 0%, var(--deep-black) 100%);
    color: var(--gold-dark);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--black);
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 8px 15px;
    z-index: 2;
}

.featured-release-info {
    padding: 20px 0;
}

.featured-release-info .release-type {
    display: block;
    margin-bottom: 10px;
}

.featured-release-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    letter-spacing: 5px;
    line-height: 1;
    margin-bottom: 30px;
    color: var(--white);
}

.spotify-embed {
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
}

.spotify-embed iframe {
    display: block;
}

.release-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.release-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.release-buttons .btn svg {
    flex-shrink: 0;
}

/* Music Grid */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.release-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.release-card:hover {
    background: rgba(220,38,38,0.05);
    border-color: var(--gold-dark);
    transform: translateY(-5px);
}

.release-cover {
    position: relative;
    aspect-ratio: 1;
    background: var(--black);
    overflow: hidden;
}

.release-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.release-card:hover .release-cover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.release-cover .no-cover {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(220,38,38,0.1) 0%, var(--black) 100%);
    color: var(--gold-dark);
}

.release-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.release-card:hover .release-overlay {
    opacity: 1;
}

.play-btn {
    width: 70px;
    height: 70px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    text-decoration: none;
    transition: all 0.3s ease;
    padding-left: 5px;
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--gold-bright);
    box-shadow: 0 0 30px rgba(220,38,38,0.5);
}

.release-info {
    padding: 25px;
}

.release-type {
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
}

.release-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
    color: var(--white);
}

.release-feature {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

.release-feature span {
    color: var(--gold);
}

/* Responsive Featured Release */
@media (max-width: 900px) {
    .featured-release {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .featured-release-cover {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .featured-release-title {
        font-size: 3rem;
        text-align: center;
    }
    
    .featured-release-info {
        text-align: center;
    }
    
    .release-buttons {
        justify-content: center;
    }
}

/* Collabs Section */
.collabs-section {
    text-align: center;
}

.collabs-title {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 50px;
}

.collab-names {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.collab-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    letter-spacing: 3px;
    color: rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    cursor: default;
}

.collab-name:hover {
    color: var(--gold);
    text-shadow: 0 0 30px rgba(220,38,38,0.5);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: grayscale(100%);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(220,38,38,0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

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

/* Social Section */
.social-section {
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.social-link {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
    z-index: -1;
}

.social-link:hover {
    color: var(--black);
    border-color: var(--gold);
}

.social-link:hover::before {
    transform: scaleY(1);
}

/* Newsletter */
.newsletter-section {
    text-align: center;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220,38,38,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 50px auto 0;
    gap: 0;
    position: relative;
    z-index: 1;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 20px 30px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-right: none;
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
    color: var(--gray);
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--gold);
    background: rgba(220,38,38,0.05);
}

.newsletter-form button,
.newsletter-form input[type="submit"] {
    padding: 20px 40px;
    background: var(--gold);
    border: 1px solid var(--gold);
    color: var(--black);
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover,
.newsletter-form input[type="submit"]:hover {
    background: var(--gold-bright);
    box-shadow: 0 0 30px rgba(220,38,38,0.5);
}

/* Footer */
.site-footer {
    padding: 50px;
    background: var(--deep-black);
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 8px;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--gold);
}

.footer-text {
    font-size: 0.9rem;
    color: var(--gray);
    letter-spacing: 2px;
}

.footer-verse {
    margin-top: 30px;
    font-style: italic;
    color: var(--gold);
    opacity: 0.7;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--deep-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 15px;
    color: var(--gold);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Page Content */
.page-content,
.entry-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 150px 50px;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 20px;
}

.entry-content p {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--gray);
    margin-bottom: 20px;
}

.entry-content a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
}

.entry-content a:hover {
    color: var(--gold-bright);
}

/* Mobile Styles */
@media (max-width: 1024px) {
    .hero-image {
        opacity: 0.3;
        right: -10%;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 15px 20px;
    }
    
    .main-navigation ul {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--deep-black);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transform: translateX(-100%);
        transition: transform 0.4s ease;
    }
    
    .main-navigation.toggled ul {
        transform: translateX(0);
    }
    
    .main-navigation a {
        font-size: 1.5rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-section {
        padding: 0 20px;
    }
    
    .hero-subtitle {
        letter-spacing: 8px;
        font-size: 0.8rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .section {
        padding: 80px 20px;
    }
    
    .stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .collab-names {
        gap: 15px 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input[type="email"] {
        border-right: 1px solid rgba(255,255,255,0.1);
        border-bottom: none;
    }
    
    .page-content,
    .entry-content {
        padding: 100px 20px;
    }
}
