/*
Theme Name: DJ Ahmet Polat News
Theme URI: https://djahmetpolat.com
Author: Antigravity
Description: A clean, AdSense-optimized theme for DJ Ahmet Polat - Premium Dark Edition
Version: 3.0
License: GNU General Public License v2 or later
Text Domain: djahmetpolat
*/

/* 
==========================================================================
   1. DESIGN SYSTEM & VARIABLES
========================================================================== 
*/
:root {
    /* Colors - Muse Dark Official Palette */
    --color-bg-dark: #072560;
    /* Official Muse Navy Blue */
    --color-bg-panel: #051b47;
    --color-bg-overlay: rgba(7, 37, 96, 0.85);

    --color-text-main: #ffffff;
    --color-text-muted: #a0a0a0;

    --color-accent-blue: #00d4ff;
    /* Neon Cyan */
    --color-accent-purple: #b026ff;
    /* Neon Purple */

    --gradient-primary: linear-gradient(135deg, var(--color-accent-blue) 0%, var(--color-accent-purple) 100%);
    --gradient-overlay: linear-gradient(to bottom, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 1) 100%);

    /* Neon Glow Effects */
    --glow-blue: 0 0 10px rgba(0, 212, 255, 0.5);
    --glow-purple: 0 0 10px rgba(176, 38, 255, 0.5);
    --glow-text: 0 0 20px rgba(255, 255, 255, 0.1);

    /* Typography - Prioritizing Helvetica Neue as requested */
    --font-heading: "Helvetica Neue", Helvetica, Arial, sans-serif;
    --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 
==========================================================================
   2. RESET & BASE STYLES
========================================================================== 
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: #072560 !important;
}

body {
    background-color: #072560;
    color: var(--color-text-main);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* OFFSET REMOVED - FULL WIDTH */
#content,
.site-content {
    width: 100%;
    background-color: #072560;
    min-height: 100vh;
}

#page {
    width: 100%;
    padding: 0;
}

a {
    color: var(--color-text-main);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--color-accent-blue);
    text-shadow: var(--glow-blue);
}

/* 
   ELEMENTOR COMPATIBILITY:
   Muse CSS is removed, so no special resets are needed here.
   Kept empty for future use if needed.
*/

/* 
==========================================================================
   HEADING STYLES
========================================================================== 
*/
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.vc_custom_heading {
    font-family: var(--font-heading) !important;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 4rem;
    text-transform: uppercase;
}

h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
}

h3 {
    font-size: 1.75rem;
}

/* Utility Classes */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    /* Standard property */
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.neon-button {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--color-accent-blue);
    color: var(--color-accent-blue);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-fast);
    z-index: 1;
    cursor: pointer;
}

.neon-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--color-accent-blue);
    z-index: -1;
    transition: var(--transition-fast);
}

.neon-button:hover {
    color: #000;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

.neon-button:hover::before {
    width: 100%;
}

/* 
==========================================================================
   3. HEADER & NAVIGATION
========================================================================== 
*/
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
    /* Starts transparent */
    padding: 20px 0;
}

.site-header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.site-branding a {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
}

.main-navigation ul {
    display: flex;
    gap: 40px;
    list-style: none;
}

.main-navigation a {
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    opacity: 0.8;
}

.main-navigation a:hover {
    opacity: 1;
    color: var(--color-accent-blue);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
}

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

/* 
==========================================================================
   4. HERO SECTION
========================================================================== 
*/
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-tagline {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    margin-bottom: 40px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* 
==========================================================================
   5. COMPONENT & UTILITY ADDITIONS
========================================================================== 
*/

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* Sticky Player Minimized State */
.sticky-player.minimized {
    transform: translateY(100%);
}

.sticky-player.minimized #close-player {
    transform: translateY(-100%);
    background: var(--color-bg-dark);
    padding: 10px;
    border-radius: 5px 5px 0 0;
    position: absolute;
    top: 0;
    right: 20px;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block !important;
        background: none;
        border: none;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
    }

    .main-navigation ul {
        display: none;
        /* Hidden by default on mobile */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.95);
        padding: 20px;
        text-align: center;
        gap: 20px;
        backdrop-filter: blur(10px);
    }

    .header-cta.desktop-only {
        display: none;
    }

    /* Hero Adjustments */
    h1 {
        font-size: 2.5rem;
    }

    /* Player Adjustments */
    .player-container {
        flex-direction: column;
        gap: 15px;
    }

    .player-volume {
        display: none;
    }

    /* Hide volume on mobile to save space */
}

@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
}

/* 
==========================================================================
   6. TOUR EVENTS STYLING (PREMIUM GLASSMORPHISM)
========================================================================== 
*/

.tour-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.tour-item {
    display: flex;
    align-items: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    /* Slightly rounded corners */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.tour-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: 0.3s;
}

.tour-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(10px) translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

/* Date Block */
.tour-date {
    min-width: 100px;
    text-align: center;
    padding-right: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    margin-right: 30px;
}

.tour-date .day {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.tour-date .month {
    display: block;
    font-size: 0.9rem;
    color: var(--color-accent-blue);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: 5px;
}

/* Info Block */
.tour-info {
    flex: 1;
}

.tour-title {
    margin: 0 0 5px 0;
    font-size: 1.5rem;
    color: #fff;
    font-weight: 600;
}

.tour-venue {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.venue-name {
    color: #ccc;
}

.venue-loc {
    color: #888;
    font-size: 0.9em;
}

/* Action Block & Badges */
.tour-action {
    min-width: 150px;
    text-align: right;
}

.status-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.status-badge.sold-out {
    color: #ff4444;
    border: 1px solid rgba(255, 68, 68, 0.3);
    background: rgba(255, 68, 68, 0.05);
}

.status-badge.private {
    color: #888;
    background: rgba(255, 255, 255, 0.05);
}

.status-badge.cancelled {
    color: #888;
    text-decoration: line-through;
}

.neon-button.small-btn {
    padding: 10px 25px;
    font-size: 0.85rem;
    border-width: 1px;
}

/* Mobile Responsive For Tour List */
@media (max-width: 768px) {
    .tour-item {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
    }

    .tour-date {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
        margin-right: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .tour-date .day {
        font-size: 2rem;
    }

    .tour-date .month {
        font-size: 1rem;
        margin-top: 0;
    }

    .tour-info {
        padding: 0;
    }

    .tour-venue {
        justify-content: center;
        flex-direction: column;
        gap: 5px;
    }

    .tour-action {
        width: 100%;
        text-align: center;
    }

    .neon-button.small-btn {
        width: 100%;
        display: block;
    }
}