/* ---------------- FONTS ---------------- */
@font-face {
    font-family: 'MyFont';
    src: url('../fonts/neuehaasgrotdisp-75bold-trial.otf') format('opentype'),
         url('../fonts/neuehaasgrotdisp-16xxthinitalic-trial.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* ---------------- GLOBAL ---------------- */
html, body {
    margin: 0;
    padding: 0;
    background: #020323;
    overflow-x: hidden;
    font-family: sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    text-align: center;
    color: white;
}

/* ---------------- HERO ---------------- */
.hero {
    position: relative;
    width: 100%;
    aspect-ratio: 8 / 3; /* desktop hero */
    overflow: hidden;
}

.hero-image {
    position: absolute; /* removed from flow */
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
}

.transparent-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to bottom, rgba(2,3,35,0), rgba(2,3,35,1));
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 3%;
    left: 50%;
    transform: translateX(-50%);
    width: 25%;
}

/* ---------------- CONTENT ---------------- */
.content {
    font-family: 'Playfair Display', serif;
    background: #020323;
    padding: 4rem;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* ---------------- VIDEO EMBED ---------------- */
.video-wrapper {
    width: 100%;
    max-width: 960px;
    margin: 4rem auto;
    aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.album-cover {
    width: 25%;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}

/* ---------------- BUTTONS ---------------- */
.btn {
    font-family: sans-serif;
    position: relative;
    padding: 1rem 2rem;
    font-size: clamp(0.3rem, 2vw, 1rem);
    font-weight: 400;
    color: white;
    background: none;
    border: 2px solid #F2F2F7;
    cursor: pointer;
    transition: all 0.3s ease;
}

.liquid {
    background: linear-gradient(#F2F2F7 0 0) no-repeat calc(200% - var(--p, 0%)) 100% / 200% var(--p, 0.2em);
    transition: 0.3s var(--t, 0s), background-position 0.3s calc(0.3s - var(--t, 0s));
}

.liquid:hover {
    --p: 100%;
    --t: 0.3s;
    color: black;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem; /* Adjusted margin for better spacing */
    font: sans-serif;
}

/* ---------------- FULLSCREEN INTRO ---------------- */
#logo-intro {
    position: fixed;
    inset: 0;
    background: #020323;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: intro-fade-out 0.6s ease forwards;
    animation-delay: 1.6s;
}

#logo-intro img {
    width: 25%;
    height: auto;
    animation: logo-pop 0.8s ease-out forwards;
}

/* ---------------- TOUR CARDS ---------------- */
.tour-title {
    text-align: center;
    color: white;
    font-weight: bold;
    margin-bottom: 40px;
}

.tour-list {
    max-width: 800px;
    margin: 0 auto;
}

.tour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px; /* Added horizontal padding for space on the sides */
    border-bottom: 1px solid #ccc;
}

.tour-date {
    font-weight: bold;
    flex: 1;
    color: white;
}

.tour-location {
    flex: 2;
    padding-left: 20px;
    color: white;
}

.tour-button {
    flex: 1;
    text-align: right;
    color: white;
}

.tour-btn {
    border: 1px solid white;
    padding: 8px 16px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.2s;
}

a.tour-btn {
    font: sans-serif;
    color: white;
    background-color: transparent;
}

.tour-btn:hover {
    background-color: white;
    color: #020323;
}

.footer-note {
    font-family: sans-serif;
    text-align: center;
    color: white;

    margin-top: 40px;
    font-weight: 300;
    font-size: 0.6rem;
    font-style: italic;
}

/* ---------------- ANIMATIONS ---------------- */
@keyframes logo-pop {
    0% { transform: scale(0.6); opacity: 0; }
    70% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); }
}

@keyframes intro-fade-out {
    to { opacity: 0; visibility: hidden; }
}

/* ---------------- MOBILE ---------------- */
@media (max-width: 768px) {
    .hero { aspect-ratio: 4 / 2; }
    .hero-image { object-position: center; }
    .hero-overlay { width: 15%; top: 3%; }
    .transparent-gradient { height: 140px; }
    btn{
        padding: 0.75rem 1.5rem;
    }
}
