@font-face {
    font-family: 'Kinto Sans';
    src: url('assets/Font/KintoSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Kinto Sans';
    src: url('assets/Font/KintoSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* Reset and base styles */
/* Global colour palette */
:root {
    --primary-black: #000000;   /* Pure black that matches the video letterbox */
}
html {
    background-color: #000000!important;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Kinto Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #D9D9D9;
    background-color: var(--primary-black);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Global link colours */
a,
a:visited {
    color: #FFFFFF;      /* white links everywhere */
}

a:hover,
a:focus {
    color: #CCCCCC;      /* subtle grey on hover/focus so users know it’s interactive */
}
/* Header and Navigation */
.header {
    position: absolute;
    z-index: 10;
    width: 100%;
    background: transparent !important;
    border-bottom: none;
    padding-left: 0 !important;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem 1rem 2rem !important;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand img {
    height: 48px;
    width: auto;
    display: block;
    margin-right: 0.5rem;
    background: transparent;
}

.nav-brand a {
    display: flex;
    align-items: center;
    padding: 0;
}

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

.nav-menu a {
    text-decoration: none;
    color: #fff !important;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #666;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #333;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000!important;
    padding: 0;
    margin: 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.hero-subtitle {
    font-size: 1.25rem;   
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.hero-subsubtitle {
    font-family: 'Kinto Sans', Arial, sans-serif;
    font-weight: 400;
    color: #666;
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.6;
}

.hero-subsubtitle img {
    max-width: 66.66%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
    text-shadow: 1px 1px 37px rgba(0,0,0,0.9), 2px 2px 4px rgba(0,0,0,0.8);
}

/* About Section */
.about-content {
    max-width: 1067px;
    margin: 0 auto;
    text-align: left;
}


#about {
    background-image: url('assets/images/AboutImage.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

#about .container {
    position: relative;
    z-index: 2;
}

.about-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: #B5B5B5;
    line-height: 1.8;
    text-shadow: 1px 1px 37px rgba(0,0,0,0.9), 2px 2px 4px rgba(0,0,0,0.8);
}

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

.credits p {
    font-size: 0.86rem;
    margin-bottom: 0.5rem;
    color: #B5B5B5;
    line-height: 1.6;
    text-shadow: 1px 1px 37px rgba(0,0,0,0.9), 2px 2px 4px rgba(0,0,0,0.8);
}

.credits p:first-child {
    font-size: 0.95rem;
    font-weight: 600;
    color: #B5B5B5;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 37px rgba(0,0,0,0.9), 2px 2px 4px rgba(0,0,0,0.8);
}

/* Responsive YouTube iframe inside About section */
.trailer-content .trailer-video {
    display: block;
    width: 100% !important;      /* overrides any leftover inline width  */
    max-width: 100%;
    aspect-ratio: 16 / 9;        /* keeps the video’s shape              */
    height: auto !important;     /* overrides any leftover inline height */
    margin: 2rem auto 0;         /* top space + centred horizontally     */
    border: none;
}
/* Full-width, centred YouTube video inside the About section */
.trailer-content iframe,
.trailer-content .trailer-video {
    display: block;
    width: 100%;
    max-width: 100%;      /* never wider than .about-content itself */
    aspect-ratio: 16 / 9; /* keeps 16×9 shape without a fixed height  */
    margin: 2rem auto 0;  /* space above, centred horizontally        */
    border: none;
}
/* Artists Section */

.artists-content {
    max-width: 1067px;
    margin: 0 auto;
    text-align: left;
}

#artists {
    background-image: url('assets/images/Artists.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

#artists::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

#artists .container {
    position: relative;
    z-index: 2;
}

.artists-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: #B5B5B5;
    line-height: 1.8;
    text-shadow: 1px 1px 37px rgba(0,0,0,0.9), 2px 2px 4px rgba(0,0,0,0.8);
}


.artists-content a:hover {
    color: #B5B5B5;
}

/* tour Section */

.tour-content {
    max-width: 1067px;
    margin: 0 auto;
    text-align: center;
}

#tour {
    background-image: url('assets/images/Music.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

#tour::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

#tour .container {
    position: relative;
    z-index: 2;
}
.tour-content p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #B5B5B5;
    line-height: 1.8;
    text-shadow: 1px 1px 37px rgba(0,0,0,0.9), 2px 2px 4px rgba(0,0,0,0.8);
}


.tour-content a:hover {
    color: #B5B5B5;
}

/* Contact Section */
.contact-content {
    max-width: 1067px;
    margin: 0 auto;
    text-align: left;
}

#contact {
    background-image: url('assets/images/Contact.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

#contact .container {
    position: relative;
    z-index: 2;
}

.contact-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: #B5B5B5;
    line-height: 1.8;
    text-shadow: 1px 1px 37px rgba(0,0,0,0.9), 2px 2px 4px rgba(0,0,0,0.8);
}


.contact-content a:hover {
    color: #B5B5B5;
}
/* Extra breathing-room so the background images show through */
#tour.section,
#contact.section {
    padding: 8rem 0;        /* was 5rem 0 by default */
}

@media (max-width: 768px) {
    #tour.section,
    #contact.section {
        padding: 6rem 0;    /* still more generous than the old 5rem 0 */
    }
}
/* Keep the grids from “compressing” the section height */
#tour .container,
#contact .container {
    min-height: 60vh;       /* 60% of the viewport height */
}

/* Footer */
.footer {
    background: var(--primary-black);
    color: #D9D9D9;
    padding: 2rem 0;
    margin-top: 4rem;
}

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

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

.footer-links a {
    color: #D9D9D9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .works-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for sections */
.section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
} 

/* Fix nav-menu color for dark background */
.nav-menu a {
    color: #fff;
}

/* Logo alignment */
.nav-brand {
    display: flex;
    align-items: center;
    height: 64px;
    overflow: hidden;
    max-width: 600px;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.nav-brand img {
    height: 64px;
    max-height: 64px;
    width: auto;
    max-width: 600px !important;
    display: block;
    margin: 0 !important;
    background: transparent;
    object-fit: contain;
}

/* Hero video background */
/* Hero video background – stays full-screen on all devices */
.hero-bg-video {
    position: fixed;          /* anchors to the viewport, not the section box   */
    inset: 0;                 /* shorthand for top:0; right:0; bottom:0; left:0 */
    width: 100%;
    height: 100vh;            /* always fills the viewport height               */
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background: var(--primary-black);
}

/* Vimeo iframe – stretches whichever side is too short so it ALWAYS fills */
.hero-bg-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);   /* keep the video centred */

    /* 16 : 9 maths  →  height = 56.25 % of the width                     */
    width: 100vw;
    height: 56.25vw;

    /* …but if that isn’t tall enough, grow it until height = 100 vh      */
    min-height: 100vh;                  /* guarantees top-to-bottom cover */
    min-width: 177.78vh;                /* 100 vh × (16 / 9)               */

    border: none;
    pointer-events: none;
    background: var(--primary-black);
}

/* --- 2025/26 Tour button --------------------------------------------------- */
.hero-tour-button {
    position: absolute;
    left: 50%;
    bottom: 12vh;            /* raises it ~12 % of the viewport from bottom */
    transform: translateX(-50%);
    z-index: 5;              /* sits above the video (video is z-index:0)   */
    pointer-events: auto;
    transition: transform 0.3s ease;
}

.hero-tour-button img {
    width: 220px;            /* desktop size */
    height: auto;
    display: block;
}

.hero-tour-button:hover,
.hero-tour-button:focus-visible {
    transform: translateX(-50%) scale(1.05);
}

@media (max-width: 768px) {
    .hero-tour-button img {
        width: 160px;
    }
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: 100vh;
    padding-bottom: 10vh;
}

.hero-subsubtitle {
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
}

.hero-subsubtitle img {
    max-width: 66.66%;
    height: auto;
    display: block;
    margin: 0 auto;
}

