/* ==========================================================
   THEE ANCIENT ASSES
   Official Website
   Version 1.0
========================================================== */


/* ========= GOOGLE FONT ========= */

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


/* ========= CSS VARIABLES ========= */

:root {

    --bg: #0a0a0a;
    --bg-alt: #121212;

    --text: #f5f5f5;
    --text-light: #bbbbbb;

    --turquoise: #44d4d2;
    --yellow: #ffd44d;
    --orange: #ff8c32;
    --red: #d94d43;

    --max-width: 1100px;

}


/* ========= RESET ========= */

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

html{

    scroll-behavior:smooth;

}

body{

    background:var(--bg);

    color:var(--text);

    font-family:'Inter',sans-serif;

    line-height:1.6;

}


/* ========= IMAGES ========= */

img{

    max-width:100%;

    display:block;

}


/* ========= LINKS ========= */

a{

    color:inherit;

    text-decoration:none;

}


/* ========= CONTAINER ========= */

.container{

    width:90%;
    max-width:var(--max-width);

    margin:auto;

}


/* ========= SECTIONS ========= */

.section{

    padding:90px 0;

}

.section h2{

    text-align:center;

    font-size:2.4rem;

    margin-bottom:18px;

}

.section-subtitle{

    text-align:center;

    color:var(--text-light);

    margin-bottom:40px;

}


/* ========= BUTTONS ========= */

.btn{

    display:inline-block;

    padding:14px 30px;

    border-radius:4px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

    transition:.25s;

    cursor:pointer;

}

.btn-primary{

    background:var(--turquoise);

    color:black;

}

.btn-primary:hover{

    background:var(--yellow);

}

.btn-secondary{

    border:2px solid var(--yellow);

    color:var(--yellow);

}

.btn-secondary:hover{

    background:var(--yellow);

    color:black;

}

.btn-outline{

    border:2px solid white;

}

.btn-outline:hover{

    background:white;

    color:black;

}

/* ==========================================================
   NAVIGATION
========================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(8px);
    z-index: 1000;
    border-bottom: 1px solid #222;
}

.nav-container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;

    height: 75px;

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

.nav-logo img {
    height: 42px;
    width: auto;
}

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

.nav-links a {
    color: white;
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color .25s;
}

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

.menu-toggle {
    display: none;
}


/* ==========================================================
   HERO
========================================================== */

.hero {

    min-height: auto;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 140px 20px 60px;
}

.hero-content {
    max-width: 700px;
}

.hero-logo {

    width: min(420px, 80vw);

    margin: 0 auto 2rem;
}

.hero h1 {

    font-size: clamp(2.5rem, 6vw, 4.8rem);

    line-height: 1.05;

    margin-bottom: .75rem;

    text-transform: uppercase;

}

.hero-subtitle {

    font-size: 1.4rem;

    color: var(--turquoise);

    margin-bottom: .5rem;

}

.hero-tagline {

    color: var(--text-light);

    text-transform: uppercase;

    letter-spacing: 3px;

    margin-bottom: 2.5rem;

}

.hero-buttons {

    display: flex;

    justify-content: center;

    gap: 1rem;

    flex-wrap: wrap;

}

.scroll-indicator {

    position: absolute;

    bottom: 30px;

    left: 50%;

    transform: translateX(-50%);

    font-size: 2rem;

    color: var(--text-light);

}


/* ==========================================================
   LISTEN SECTION
========================================================== */

.featured-grid {

    display: grid;

    grid-template-columns: 320px 1fr;

    gap: 3rem;

    align-items: center;

    margin-bottom: 4rem;

}

.album-art img {

    border-radius: 10px;

    width: 100%;

}

.featured-info h3 {

    font-size: 2rem;

    margin-bottom: 1rem;

}

.featured-info p {

    color: var(--text-light);

    margin-bottom: 2rem;

}

/* ==========================================================
   VIDEO
========================================================== */

.video-wrapper {

    width: 100%;

    max-width: 960px;

    margin: 2rem auto;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    border-radius: 12px;

}

.video-wrapper iframe {

    width: 100%;

    height: 100%;

    border: none;

}
/* ==========================================================
   MERCH
========================================================== */

.merch-grid {

    display: grid;

    grid-template-columns: 320px 1fr;

    gap: 3rem;

    align-items: center;

}

.merch-image img {

    width: 100%;

    border-radius: 10px;

}

.merch-info h3 {

    font-size: 2rem;

    margin-bottom: 1rem;

}

.merch-info p {

    color: var(--text-light);

    line-height: 1.8;

    margin-bottom: 2rem;

}

.merch-info .btn {

    margin-top: .5rem;

}
/* ==========================================================
   SHOWS
========================================================== */

.no-shows {

    text-align: center;

    color: var(--text-light);

    margin-top: 2rem;

}

/* ==========================================================
   ABOUT
========================================================== */
.about-images {

    display: grid;

    grid-template-columns: repeat(1, 1fr);

    gap: 4rem;

}

.about-images img {

    width: 100%;

    height: 400px;

    object-fit: contain;

    border-radius: 10px;

}

.about-text p {

    color: var(--text-light);

    margin-bottom: 1.5rem;

    line-height: 1.8;

}

/* ==========================================================
   FOOTER
========================================================== */

footer {

    border-top: 1px solid #222;

    text-align: center;

    padding: 60px 20px;

}

.footer-logo img {

    width: 220px;

    margin: 0 auto 2rem;

}

.footer-links {

    display: flex;

    justify-content: center;

    gap: 2rem;

    margin-bottom: 2rem;

}

.footer-links a:hover {

    color: var(--turquoise);

}