@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Inter:wght@300;400;600&display=swap');

:root {
    --primary: #D4AF37;
    /* Antique Gold */
    --primary-bright: #F5D76E;
    --bg-dark: #0A0A0A;
    --bg-light: #1A1A1A;
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    cursor: none;
    /* Hide default for custom cursor */
}

/* Custom Cursor */
#cursor {
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease-out;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.font-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Navigation Styles */
.main-nav {
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo-text {
    font-size: 1.5rem;
}

.logo-suffix {
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-main);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 10px;
    transition: var(--transition);
}

/* Base Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

/* Animated BG */
.fancy-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #0a0a0a 100%);
    z-index: -2;
}

.gold-rays {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%, transparent, var(--primary), transparent);
    opacity: 0.03;
    animation: rotate 20s linear infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Ticker */
.ticker-wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 10;
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(to right, var(--primary), var(--primary-bright), var(--primary));
    padding: 1rem 0;
    white-space: nowrap;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.ticker-content {
    display: inline-block;
    animation: ticker 30s linear infinite;
    font-family: 'Outfit';
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--bg-dark);
    text-transform: uppercase;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Text Outlines */
.outline-text {
    -webkit-text-stroke: 1px var(--primary);
    color: transparent;
    text-transform: uppercase;
    font-weight: 800;
}

a {
    text-decoration: none !important;
    color: inherit;
    transition: var(--transition);
}

/* Glassmorphism */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.6), 0 0 80px rgba(212, 175, 55, 0.3);
    transform: translateY(-10px);
    border-color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    font-family: 'Outfit', sans-serif;
    text-decoration: none !important;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: var(--primary-bright);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

/* Section Specifics */
.gold-text {
    color: var(--primary);
    background: linear-gradient(to right, var(--primary), var(--primary-bright));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.underlined {
    position: relative;
    display: inline-block;
}

.underlined::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: grayscale(100%) contrast(1.2);
    z-index: -1;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30vh;
    background: linear-gradient(to bottom, transparent, var(--bg-dark));
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
}

.hero-text {
    position: relative;
    z-index: 5;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 0.9;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    font-style: italic;
    font-weight: 100;
}

.hero-title-highlight {
    font-style: normal;
    font-size: 6rem;
    font-weight: 800;
}

.hero-description {
    font-size: 1.4rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 3rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 1;
}

.hero-people {
    width: 100%;
    max-width: 1000px;
    margin-right: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    position: relative;
    height: 100%;
    margin-left: -210px;
}

.hero-person {
    filter: drop-shadow(0 0 50px rgba(0, 0, 0, 0.6));
    opacity: 0.6;
    animation: floatOnly 8s ease-in-out infinite;
}

.hero-person-1 {
    z-index: 1;
}

.hero-person-2 {
    z-index: 3;
    margin-left: -60%;
    margin-right: -55%;
}

.hero-person-3 {
    z-index: 2;
}

.hero-person:nth-child(1) {
    width: clamp(250px, 40vw, 532px);
    height: auto;
    animation-delay: 0s;
}

.hero-person:nth-child(2) {
    width: clamp(400px, 60vw, 870px);
    height: auto;
    animation-delay: 1.5s;
}

.hero-person:nth-child(3) {
    width: clamp(220px, 35vw, 456px);
    height: auto;
    animation-delay: 0.5s;
}

.hero-logo-bg {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10rem;
    opacity: 0.03;
    pointer-events: none;
    white-space: nowrap;
    z-index: -1;
}

@keyframes floatOnly {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Slanted Sections */
.slanted-bg {
    position: relative;
    background: var(--bg-dark);
}

.slanted-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    z-index: -1;
}

/* About Section */
.about-container {
    max-width: 900px;
    text-align: center;
}

.about-title {
    font-size: 3rem;
    margin-bottom: 3rem;
}

.about-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.about-paragraph {
    margin-bottom: 2rem;
}

.about-paragraph-last {
    margin-bottom: 3rem;
}

.about-quote-card {
    padding: 3rem;
    border-color: var(--primary);
}

.about-quote-text {
    font-style: italic;
    color: #fff;
    font-size: 1.6rem;
}

/* Proclamation Section (Katha) */
.proclamation-section {
    padding: 10rem 0;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.05));
    overflow: hidden;
}

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

.proclamation-pretitle {
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.proclamation-main-text {
    font-family: 'Outfit';
    font-size: 2.5rem;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
    font-weight: 300;
}

.proclamation-sub-text {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: var(--text-muted);
    font-style: italic;
}

/* About Details Section */
.details-title-wrapper {
    text-align: center;
    margin-bottom: 6rem;
}

.details-title {
    font-size: 3rem;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: start;
}

/* Bio Cards */
.bio-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bio-image {
    position: relative;
    z-index: 1;
    /* Behind the card */
    margin-bottom: -80px;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
    transition: var(--transition);
    transform: scale(1.15);
    /* Slightly larger */
    transform-origin: bottom center;
}

.bio-image-ilker {
    width: 213px;
    height: 264px;
}

.bio-image-tristan {
    width: 348px;
    height: 205px;
}

.bio-image-katha {
    width: 182px;
    height: 243px;
    margin-top: 30px;
    margin-bottom: -120px;
}

.bio-container:hover .bio-image {
    transform: scale(1.1);
}

.bio-card {
    padding: 2.5rem;
    text-align: center;
    padding-top: 4rem;
    position: relative;
    z-index: 5;
    /* In front of the image */
}

.bio-container:hover .bio-card {
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.6), 0 0 80px rgba(212, 175, 55, 0.3);
}

.bio-name {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.bio-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.bio-name-katha {
    line-height: 0.9;
}

.bio-subtitle {
    font-size: 0.5em;
    color: #fff;
    font-weight: 300;
}

/* Unity Bond Section */
.unity-section {
    padding: 10rem 0;
    background: rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.unity-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}

.unity-container {
    text-align: center;
    position: relative;
    z-index: 1;
}

.unity-text {
    font-family: 'Outfit';
    font-size: 2.2rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    color: #fff;
    font-weight: 300;
    font-style: italic;
}

.unity-highlight {
    font-weight: 700;
    font-style: normal;
}

.unity-ref {
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* Release Section */
.release-section {
    background: rgba(212, 175, 55, 0.03);
}

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

.release-heading {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.release-card {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    text-align: left;
    padding: 4rem;
    align-items: center;
}

.release-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.release-title {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.release-artist {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.release-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Streaming Icons Styling */
.streaming-links {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.streaming-icon {
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    height: 3rem;
    padding: 0 0.5rem;
    filter: brightness(0) invert(1);
}

.streaming-icon img {
    height: 1.6rem;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.streaming-icon.spotify img {
    height: 2.4rem;
}

.streaming-icon.apple-music img {
    height: 1.8rem;
}

.streaming-icon.tidal img {
    height: 1.3rem;
}

.streaming-icon:hover {
    transform: translateY(-5px);
    opacity: 1;
    filter: none;
}

/* Vision Section */
.vision-header {
    text-align: center;
    margin-bottom: 6rem;
}

.vision-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.vision-desc {
    font-size: 1.4rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.vision-card {
    border-top: 4px solid var(--primary);
}

.vision-card-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Community Section */
.community-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-bright) 50%, var(--primary) 100%);
    padding: 10rem 0;
    color: var(--bg-dark);
}

.community-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.community-title {
    font-size: 4rem;
    line-height: 1.4;
    margin-bottom: 2rem;
    color: var(--bg-dark);
    font-weight: 800;
}

.community-desc {
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 3rem;
    max-width: 500px;
    font-weight: 500;
}

.community-socials {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    align-items: center;
}

.instagram-link {
    opacity: 1;
    transition: transform 0.3s ease;
    display: block;
}

.instagram-logo {
    height: 4rem;
    filter: none;
}

.mail-card {
    padding: 4rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: rgba(10, 10, 10, 0.9);
    border-color: rgba(0, 0, 0, 0.1);
}

.mail-card:hover {
    background: rgba(15, 15, 15, 0.95);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    /* Strong dark shadow for depth on gold bg */
    border-color: var(--primary-bright) !important;
    /* Brighter gold border */
    transform: translateY(-8px) scale(1.02);
    /* More obvious movement */
}

.mail-icon {
    font-size: 3rem;
    color: var(--primary);
}

.mail-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.mail-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.btn-mail {
    width: 100%;
    font-size: 1.2rem;
    padding: 1.2rem;
    background: var(--primary);
    color: var(--bg-dark);
    font-weight: 700;
}

.mail-address {
    margin-top: 1rem;
    color: var(--primary);
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Footer */
.main-footer {
    padding: 6rem 0;
    text-align: center;
    background: #000;
}

.footer-logo {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.footer-copy {
    color: var(--text-muted);
}

/* MEDIA QUERIES */

@media (max-width: 1210px) {
    .container {
        padding: 0 5%;
    }

    /* Stack Hero Section for Tablet and Mobile */
    .hero-container {
        grid-template-columns: 1fr;
        flex-direction: column;
        display: flex;
        text-align: center;
        padding-top: 6rem;
        overflow: visible;
        height: auto;
    }

    .hero-text {
        margin-bottom: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        order: 2;
        position: relative;
        z-index: 20;
        margin-top: -8rem;
        /* Pulled closer to collage */
        /* Overlap with images above */
    }

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4.5rem) !important;
        line-height: 1.1;
    }

    .hero-title-highlight {
        font-size: clamp(3.5rem, 12vw, 5.5rem) !important;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-image {
        justify-content: center;
        width: 100%;
        overflow: visible;
        order: 1;
        margin-top: 0;
        z-index: 10;
        display: flex;
        min-height: 300px;
    }

    .hero-people {
        margin-left: 0;
        transform: scale(1.0);
        /* Base scale for tablet */
        transform-origin: center center;
        justify-content: center;
        width: 100%;
        display: flex;
        height: auto;
        flex-wrap: nowrap;
        padding: 2rem 0;
        position: relative;
    }

    /* Explicit Desktop-consistent order for all mobile/tablet */
    .hero-person-1 {
        order: 1;
        position: relative;
        z-index: 10;
        width: 35% !important;
    }

    .hero-person-2 {
        order: 2;
        position: relative;
        z-index: 30;
        width: 65% !important;
        margin-left: -30% !important;
        /* Reduced overlap to increase spacing */
        margin-right: -25% !important;
        /* Reduced overlap to increase spacing */
    }

    .hero-person-3 {
        order: 3;
        position: relative;
        z-index: 20;
        width: 32% !important;
    }

    .hero-person {
        max-width: none !important;
        height: auto;
    }
}

@media (max-width: 1024px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3rem;
        transition: var(--transition);
        z-index: 1000;
    }

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

    .nav-links a {
        font-size: 2rem;
        font-family: 'Outfit', sans-serif;
        font-weight: 800;
        text-transform: uppercase;
    }

    /* Hamburger Animation */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    section,
    .hero-section,
    .community-section,
    .proclamation-section,
    .unity-section {
        padding: 6rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .details-grid,
    .vision-grid {
        gap: 3rem !important;
    }
}

@media (max-width: 768px) {

    /* Typography scale */
    h1,
    h2,
    .about-title,
    .details-title,
    .release-heading,
    .vision-title,
    .community-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem) !important;
    }

    /* Refine stacking for smaller mobile screens */
    .hero-container {
        padding-top: 4rem;
    }

    .hero-people {
        transform: scale(1.45);
        /* Maximum impact scale for mobile */
    }

    .hero-text {
        margin-top: -10rem;
        /* Increased overlap to match larger images */
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

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

    /* Grids to Single Column */
    .details-grid,
    .vision-grid,
    .community-grid,
    .release-card {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        /* Reduced from 4rem for tighter stacking */
    }

    .community-grid {
        gap: 6rem !important;
    }

    /* About Section */
    .about-container {
        text-align: center;
    }

    .underlined::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Bio Cards spacing */
    .bio-container {
        margin-bottom: 2rem;
        /* Reduced from 3rem */
    }

    /* Release Section */
    .release-card {
        padding: 2rem;
        text-align: center;
    }

    .release-img {
        max-width: 300px;
        margin: 0 auto;
    }

    .streaming-links {
        justify-content: center;
    }

    /* Community Section */
    .community-section {
        text-align: center;
    }

    .community-grid {
        justify-items: center;
    }

    .community-socials {
        justify-content: center;
    }

    .mail-card {
        padding: 3rem;
        width: 100%;
    }

    /* Proclamation & Unity Text size */
    .proclamation-main-text,
    .unity-text {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .btn {
        width: 100%;
        text-align: center;
    }

    .hero-people {
        transform: scale(1.2);
        /* Slightly smaller on very small screens to fit */
        margin-top: -2rem;
    }

    .glass-card,
    .mail-card {
        padding: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
}