/*
Theme Name: Dasebot
Theme URI: https://dasebot.com
Author: Dasebot
Description: Our super cool website
Version: 2.0.0
Text Domain: dasebot
*/

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

:root {
    --bg-black: #000000;
    --text-white: #FFFFFF;
    --accent-primary: #10001A;
    --accent-secondary: #A84EFE;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 6rem);
}

h2 {
    font-size: clamp(1.75rem, 5vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 2rem);
}

p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2rem 0;
    background: transparent;
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.site-logo:hover {
    color: var(--accent-secondary);
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.main-navigation a {
    color: var(--text-white);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    transition: var(--transition-smooth);
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    transition: var(--transition-smooth);
}

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

/* Custom hover colors for each navigation item */
.nav-home:hover {
    color: var(--text-white);
}

.nav-home:hover::after,
.nav-home.active::after {
    background: var(--text-white);
}

.nav-team:hover {
    color: var(--accent-secondary);
}

.nav-team:hover::after,
.nav-team.active::after {
    background: var(--accent-secondary);
}

.nav-socials:hover {
    color: rgba(14, 45, 141, 1);
}

.nav-socials:hover::after,
.nav-socials.active::after {
    background: rgba(14, 45, 141, 1);
}

.nav-about:hover {
    color: rgba(255, 145, 235, 1);
}

.nav-about:hover::after,
.nav-about.active::after {
    background: rgba(255, 145, 235, 1);
}

.nav-contact:hover {
    color: rgba(149, 7, 255, 1);
}

.nav-contact:hover::after,
.nav-contact.active::after {
    background: rgba(149, 7, 255, 1);
}

.language-toggle {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.language-toggle button {
    background: transparent;
    border: 1px solid var(--text-white);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.language-toggle button:hover,
.language-toggle button.active {
    background: var(--accent-secondary);
    border-color: var(--accent-secondary);
}

/* Home Page */
.home-page {
    height: 100vh;
    width: 100vw;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.home-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.home-headline {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(168, 78, 254, 0.3);
}

.home-subheadline {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.9;
}

/* Team Page */
.team-page {
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4rem;
}

.team-page .page-title,
.about-page .page-title,
.contact-page-vevo .page-title,
.socials-page .page-title {
    text-align: left;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.team-member {
    background: transparent;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.team-member:hover {
    border-color: var(--accent-secondary);
}

.member-name {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.member-role {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-secondary);
    margin-bottom: 0.75rem;
}

.member-description {
    font-size: 0.75rem;
    line-height: 1.5;
    opacity: 0.7;
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.member-riot-id {
    font-size: 0.75rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.riot-label {
    display: none;
}

.riot-value {
    color: var(--text-white);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.member-socials {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.member-socials a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.7rem;
    transition: var(--transition-smooth);
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.member-social-link:hover {
    opacity: 1;
    color: var(--social-hover-color, var(--accent-secondary));
}

.member-music {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.member-music iframe {
    width: 100%;
    border: none;
    border-radius: 4px;
    height: 152px;
}

/* Socials Page - About/Contact Page Style */
.socials-page {
    height: 100vh;
    padding: 8rem 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.socials-mission {
    margin-bottom: 4rem;
    max-width: 800px;
}

.socials-mission p {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.socials-bands {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    overflow: hidden;
}

.social-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 3rem;
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-white);
    flex: 1;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.social-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    transition: var(--transition-smooth);
}

.social-band-1 {
    background: rgba(23, 75, 235, 1);
    position: relative;
}

.social-band-1::before {
    background: rgba(23, 75, 235, 1);
}

.social-band-2 {
    background: rgba(18, 60, 188, 1);
}

.social-band-2::before {
    background: rgba(18, 60, 188, 1);
}

.social-band-3 {
    background: rgba(14, 45, 141, 1);
}

.social-band-3::before {
    background: rgba(14, 45, 141, 1);
}

.social-band-4 {
    background: rgba(9, 30, 94, 1);
}

.social-band-4::before {
    background: rgba(9, 30, 94, 1);
}

.social-band-5 {
    background: rgba(5, 15, 47, 1);
}

.social-band-5::before {
    background: rgba(5, 15, 47, 1);
}

.social-platform {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    font-weight: 700;
}

/* About Page - VEVO Our Values Style (Contact Page Layout) */
.about-page {
    height: 100vh;
    padding: 8rem 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.about-mission {
    margin-bottom: 4rem;
    max-width: 800px;
}

.about-mission p {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    overflow: hidden;
}

.value-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 3rem;
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bg-black);
    flex: 1;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.value-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    transition: var(--transition-smooth);
}

.value-band-1 {
    background: #FFFFFF;
}

.value-band-1::before {
    background: #FFFFFF;
}

.value-band-2 {
    background: rgba(255, 227, 250, 1);
}

.value-band-2::before {
    background: rgba(255, 227, 250, 1);
}

.value-band-3 {
    background: rgba(255, 200, 245, 1);
}

.value-band-3::before {
    background: rgba(255, 200, 245, 1);
}

.value-band-4 {
    background: rgba(255, 172, 240, 1);
}

.value-band-4::before {
    background: rgba(255, 172, 240, 1);
}

.value-band-5 {
    background: rgba(255, 145, 235, 1);
}

.value-band-5::before {
    background: rgba(255, 145, 235, 1);
}

/* Contact Page - Same as About Page Style */
.contact-page-vevo {
    height: 100vh;
    padding: 8rem 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.contact-mission {
    margin-bottom: 4rem;
    max-width: 800px;
}

.contact-mission p {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.contact-bands {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    overflow: hidden;
}

.contact-band {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 3rem;
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bg-black);
    flex: 1;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.contact-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    transition: var(--transition-smooth);
}

.contact-band-1 {
    background: #FFFFFF;
}

.contact-band-1::before {
    background: #FFFFFF;
}

.contact-band-2 {
    background: rgba(234, 205, 255, 1);
}

.contact-band-2::before {
    background: rgba(234, 205, 255, 1);
}

.contact-band-3 {
    background: rgba(213, 156, 255, 1);
}

.contact-band-3::before {
    background: rgba(213, 156, 255, 1);
}

.contact-band-4 {
    background: rgba(191, 106, 255, 1);
}

.contact-band-4::before {
    background: rgba(191, 106, 255, 1);
}

.contact-band-5 {
    background: rgba(149, 7, 255, 1);
}

.contact-band-5::before {
    background: rgba(149, 7, 255, 1);
}

.contact-label {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    font-weight: 700;
}

.contact-email {
    color: var(--bg-black);
    text-decoration: none;
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    font-weight: 700;
    transition: var(--transition-smooth);
}

.contact-email:hover {
    opacity: 0.7;
}

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

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

/* Responsive Design */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem;
    }

    .main-navigation ul {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .value-band {
        padding: 2rem 1rem;
        font-size: 1.25rem;
    }
    
    .contact-page-vevo,
    .about-page,
    .socials-page {
        height: auto;
        min-height: 100vh;
        overflow: visible;
    }

    .home-content {
        padding: 0 1rem;
    }

    .contact-band {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 2rem 1.5rem;
    }

    .contact-email {
        font-size: 0.875rem;
        word-break: break-all;
    }
}

/* Default Page Styles */
.default-page {
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.default-page .page-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Utility Classes */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

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

/* Loading States */
.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Focus States for Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--accent-secondary);
    outline-offset: 2px;
}
