/* 
   Theme: Spiritual Premium (Deva Premal style)
   Colors: Dark background (Charcoal/Dark Blue), Gold/Sand accents, White text
*/

:root {
    --bg-color: #1a1a1a;
    --bg-alt: #222222;
    --text-color: #f0f0f0;
    --text-muted: #aaaaaa;
    --accent-color: #d4af37;
    /* Metallic Gold */
    --accent-hover: #f3cf55;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --spacing-section: 100px;
    --container-width: 1200px;
}

/* Reset & Basics */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 400;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: 2px;
}

h2.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--accent-color);
    position: relative;
    padding-bottom: 1rem;
}

h2.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--accent-color);
}

h2.section-title.text-left {
    text-align: left;
}

h2.section-title.text-left::after {
    left: 0;
    transform: none;
}

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

.mb-2 {
    margin-bottom: 2rem;
}

/* Buttons */
.btn-book,
.btn-submit,
.btn-ticket {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--accent-color);
    color: var(--bg-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-book:hover,
.btn-submit:hover,
.btn-ticket:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid var(--text-muted);
    color: var(--text-color);
    margin-right: 10px;
    margin-top: 10px;
    font-size: 0.9rem;
}

.btn-outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

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

.max-w-600 {
    max-width: 600px;
}

.section {
    padding: var(--spacing-section) 0;
}

.alt-bg {
    background-color: rgba(34, 34, 34, 0.85);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}



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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a:not(.btn-book) {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-color);
}

.nav-links a:not(.btn-book):hover {
    color: var(--accent-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
#hero {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    /* Placeholder Gradient - Replace with Image/Video later */
    background: linear-gradient(135deg, #111 0%, #333 100%);
    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: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%);
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/forrestbg.jpg') center/cover no-repeat;
    opacity: 0.4;
    z-index: -1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeIn 1.5s ease-out;
}

.hero-logo {
    width: 90%;
    max-width: 600px;
    height: auto;
    margin: 0 auto 10px auto;
    display: block;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 10px;
    color: var(--text-muted);
}

.social-hero {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-hero a {
    font-size: 1.5rem;
    color: var(--text-color);
    opacity: 0.8;
}

.social-hero a:hover {
    opacity: 1;
    color: var(--accent-color);
    transform: translateY(-3px);
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

/* Tour Section */
.tour-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tour-item {
    display: flex;
    align-items: center;
    padding: 25px;
    background-color: #2a2a2a;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.tour-item:hover {
    border-left-color: var(--accent-color);
    background-color: #303030;
    transform: translateX(5px);
}

.tour-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding-right: 20px;
    border-right: 1px solid #444;
    margin-right: 25px;
}

.tour-date .day {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.tour-date .month {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 300;
}

.tour-details {
    flex: 1;
}

.tour-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.tour-details p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Media Section */
.media-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.video-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.streaming-links {
    margin-top: 20px;
    text-align: center;
}

.spotify-embed {
    width: 100%;
    height: 450px;
    max-width: 800px;
    margin: 0 auto;
    display: block;
    border-radius: 12px;
}

.placeholder-reel {
    background-color: #000;
    height: 500px;
    width: 100%;
    /* Max width controlled by parent */
    max-width: 350px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid #333;
    opacity: 0.6;
    /* While waiting for embed */
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.img-placeholder {
    width: 100%;
    height: 400px;
    background-color: #333;
    display: block;
    position: relative;
}

.img-placeholder::after {
    content: 'Artist Image Placeholder';
    color: #555;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lead {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

#about p {
    margin-bottom: 15px;
    color: var(--text-muted);
}

.about-content-box {
    background-color: #2a2a2a;
    opacity: 0.8;
    padding: 30px;
    border-radius: 15px;
    margin-top: 20px;
}

/* Contact Section */
.contact-form {
    background-color: #2a2a2a;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: #1a1a1a;
    border: 1px solid #444;
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border 0.3s;
}

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

.btn-submit {
    width: 100%;
}

/* Inline form status (success/error) */
.form-status {
    margin-top: 12px;
    font-size: 0.95rem;
    min-height: 1.2em;
}

/* Footer */
footer {
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.social-footer {
    margin-bottom: 20px;
}

.social-footer a {
    font-size: 1.2rem;
    margin: 0 15px;
    color: var(--text-muted);
}

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

footer p {
    font-size: 0.8rem;
    color: #666;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

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

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

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


/* Responsive */
@media (max-width: 900px) {
    h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .media-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .img-placeholder {
        height: 300px;
    }

    .tour-item {
        flex-direction: column;
        text-align: center;
    }

    .tour-date {
        border-right: none;
        border-bottom: 1px solid #333;
        padding-right: 0;
        margin-right: 0;
        margin-bottom: 15px;
        padding-bottom: 10px;
        width: 100%;
    }

    .tour-details {
        margin-bottom: 15px;
    }

    .btn-ticket {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background-color: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
        display: flex;
        /* Override display:none if set */
    }

    .nav-links a {
        font-size: 1.2rem !important;
    }

    .mobile-menu-btn {
        display: block;
        color: var(--text-color);
        z-index: 1001;
        /* Above mobile menu */
    }

    .container {
        padding: 0 20px;
    }

    h1 {
        font-size: 2rem;
    }

    .hero-content {
        width: 100%;
        padding: 0 15px;
    }

    .hero-logo {
        max-width: 80%;
    }
}