/* Font Face Declarations */
@font-face {
    font-family: 'MinionPro-Regular';
    src: url('../fonts/MinionPro-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'RuderPlakatLLTT-Regular';
    src: url('../fonts/RuderPlakatLLTT-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SupermaxLLTT-Wide';
    src: url('../fonts/SupermaxLLTT-Wide.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

/* Global font rendering optimization */
*, *:before, *:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'MinionPro-Regular', 'Arial', sans-serif;
    background: #dcdddf;
    background: #000000;
    overflow-x: auto;
    padding-bottom: 80px; /* Space for fixed footer */
    
    /* Font rendering optimizations */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-kerning: auto;
    font-variant-ligatures: common-ligatures;
}

h3 { 
    font-weight: regular!important;
}

.container {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 100vh;
}

.grey-text {
    background: #dcdddf;
    padding: 30px;
    position: relative;
    border-right: 1px solid black;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.top-line { 
    border-top: 1px solid black;    
}

.landscape-section + .landscape-section .grey-text {
    border-top: none;
}

/* Left sidebar */
.sidebar {
    background: #dcdddf;
    border-top: 1px solid black;
    padding: 10px;
    position: fixed;
    top: 0;
    left: 0;
    width: 150px;
    height: 100vh;
    z-index: 100;
}

.logo {
    writing-mode: vertical-lr;
    text-orientation: mixed;
    font-family: 'RuderPlakatLLTT-Regular', sans-serif;
    font-size: 130px;
    font-weight: regular;
    color: black;
    letter-spacing: 2px;
    margin-bottom: 20px;
    margin-top: 40px;
    margin-left: -20px;
}

.logo a {
    text-decoration: none;
    color: black;
}

.sidebar-content {
    margin-top: 40px;
}

.sidebar h3 {
    font-size: 16px;
    font-weight: regular!important;
    color: black;
    margin-bottom: 20px;
    line-height: 1.3;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    padding: 20px 0;
    margin-left: -20px;
    margin-right: -10px;
    padding-left: 25px;
    padding-right: 20px;
}

.menu-list {
    list-style: none;
    font-size: 14px;
    color: #666;
}

.menu-list li {
    margin-bottom: 8px;
}

/* Burger menu */
.burger-menu {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1001;
    display: block;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 1px;
    background: black;
    margin:4px 0;
    transition: 0.3s;
}

/* Mobile burger menu */
.mobile-burger-menu {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1001;
    display: none;
}

.mobile-burger-menu span {
    display: block;
    width: 100%;
    height: 1px;
    background: black;
    margin: 5px 0;
    transition: 0.3s;
}

/* Slide-out menu */
.slide-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: #dcdddf;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    transition: left 0.3s ease;
    z-index: 1000;
    padding: 80px 30px 30px 30px;
}

.slide-menu-header {
    display: none;
}

.slide-menu-content {
    width: 100%;
}

.slide-menu.active {
    left: 0;
}

.slide-menu h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: black;
}

.slide-menu ul {
    list-style: none;
}

ol li a, ul li a { 
    color: #000;
    cursor: pointer; 
    padding-bottom: 10px; 
    font-size: 20px; 
}

ol li, ul li { 
    padding-bottom: 10px; 
}

ol li a:hover, ul li a:hover {
    color: #ff4444;
}

.slide-menu ul li {
    margin-bottom: 20px;
    font-size: 18px;
    color: #000;
    cursor: pointer;
    transition: color 0.3s;
    font-family: 'RuderPlakatLLTT-Regular', sans-serif;
    letter-spacing: 1px; 
    text-transform: uppercase;
}

.slide-menu ul li:hover {
    color: #ff4444;
}

.slide-menu ul li a {
    text-decoration: none;
    color: #000;
    font-family: 'RuderPlakatLLTT-Regular', sans-serif;
}

.slide-menu ul li a:hover {
    text-decoration: none;
    color: #ff4444;
}

/* Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Main content rows */
.main-content {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin-left: 150px;
    border: 1px solid black;
}

/* Content rows */
.content-row {
    display: grid;
    grid-template-columns: 2fr 3fr;
    align-items: stretch;
    box-sizing: border-box;
    max-width: 100%;
    overflow: hidden;
    width: 100%;
}

/* Force square aspect ratio on desktop only */
@media (min-width: 901px) {
    .image-square-wrapper {
        width: 100%;
        height: 0;
        padding-bottom: 100%;
        position: relative;
        overflow: hidden;
        flex-shrink: 0;
    }
    
    .image-square-wrapper img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .artist-video-section {
        flex: 1;
        overflow: hidden;
        display: flex;
        align-items: stretch;
    }
    
    .artist-video-section video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: sepia(20%) saturate(120%) hue-rotate(-10deg);
    }
}

.row-1 {
    border-bottom: 1px solid black;
    min-height: fit-content;
}

.right-section {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-width: 100%;
    min-width: 0;
}

/* Top left section */
.intro-section {
    background: #dcdddf;
    padding: 30px;
    position: relative;
    border-right: 1px solid black;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    width: 30px;
    height: 30px;
    background: black;
    border-radius: 50%;
}

/* About page specific styling */
.quote-container::after {
    content: 'ABOUT';
    position: absolute;
    top: 45px;
    left: 70px;
    font-family: 'RuderPlakatLLTT-Regular', sans-serif;
    font-size: 28px;
    font-weight: normal;
    color: black;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1;
    transform: translateY(-50%);
}

/* Join the Movement page specific styling */
.join-the-movement-page .quote-container::after {
    content: 'JOIN THE MOVEMENT';
}

/* Join the Movement page - keep the black dot */
.join-the-movement-page .film-description-section::before {
    content: '' !important;
    position: absolute;
    top: 30px;
    left: 30px;
    width: 30px !important;
    height: 30px !important;
    background: black !important;
    border-radius: 50% !important;
}

/* Join the Movement page - add SUBSCRIBE text after the dot */
.join-the-movement-page .film-description-section::after {
    content: 'SUBSCRIBE';
    position: absolute;
    top: 45px;
    left: 70px;
    font-family: 'RuderPlakatLLTT-Regular', sans-serif;
    font-size: 28px;
    font-weight: normal;
    color: black;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1;
    transform: translateY(-50%);
}

/* Film & Soundtrack page specific styling - target only the specific structure of film-soundtrack page */
.row-2:first-child .film-description-section:not(.tracklisting)::after {
    content: 'FILM & SOUNDTRACK';
    position: absolute;
    top: 45px;
    left: 70px;
    font-family: 'RuderPlakatLLTT-Regular', sans-serif;
    font-size: 28px;
    font-weight: normal;
    color: black;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1;
    transform: translateY(-50%);
}

/* Tracklist section specific styling */
.film-description-section.tracklisting::after {
    content: 'TRACKLIST';
    position: absolute;
    top: 45px;
    left: 70px;
    font-family: 'RuderPlakatLLTT-Regular', sans-serif;
    font-size: 28px;
    font-weight: normal;
    color: black;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1;
    transform: translateY(-50%);
}

/* Indigenous Voices page specific styling */
.indigenous-voices-page .intro-section::after {
    content: 'INDIGENOUS VOICES';
    position: absolute;
    top: 45px;
    left: 70px;
    font-family: 'RuderPlakatLLTT-Regular', sans-serif;
    font-size: 28px;
    font-weight: normal;
    color: black;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1;
    transform: translateY(-50%);
}

.intro-section.no-bullet::before {
    display: none;
}

.intro-section.no-bullet .showings-table {
    margin-top: 0;
}

.intro-section h1 {
    margin-top: 50px;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: normal;
    color: black;
    line-height: 1.3;
    padding-right: 25px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    flex: 1;
}

/* Quote container for about page */
.quote-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.quote-container h1 {
    margin-top: 50px;
    margin-bottom: 0;
    flex: none;
}

/* Artist page h1 should not flex */
.intro-section.artist-page h1 {
    flex: none;
    margin-top: 15px;
    margin-bottom: 8px;
}

/* Artist social links */
.artist-social {
    margin-top: 30px;
}

.artist-social h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: black;
    font-weight: bold;
}

.social-links {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-block;
    color: black;
    text-decoration: underline;
    font-size: 20px;
    line-height: 1.4;
    padding: 0;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff4444;
}

.intro-section .meta {
    margin-top: 20px;
    margin-left: 10px;
    font-size: 16px;
    color: #666;
}

.intro-section .quote-attribution {
    margin-top: 20px;
    font-size: 24px;
    color: black;
    font-style: normal;
    font-weight: normal;
    line-height: 1.3;
    padding-right: 25px;
}

/* Showings table styles */
.showings-table {
    margin-top: 50px;
    width: 100%;
}

.showings-table table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'MinionPro-Regular', Arial, sans-serif;
}

.showings-table th {
    background: black;
    color: white;
    padding: 15px 10px;
    text-align: left;
    font-weight: normal;
    font-size: 20px;
    border: 1px solid black;
}

.showings-table td {
    padding: 20px 10px;
    border: 1px solid black;
    font-size: 20px;
    vertical-align: middle;
    background: #dcdddf;
}


.showings-table td:first-child {
    white-space: nowrap;
}

.showings-table td:last-child {
    text-align: left;
}

/* Ticket button styles - matching JOIN THE MOVEMENT button */
.ticket-btn {
    display: block;
    padding: 15px 20px;
    color: #ff4444;
    background: black;
    text-decoration: none;
    font-family: 'RuderPlakatLLTT-Regular', sans-serif;
    font-size: 50px;
    letter-spacing: 4px;
    border: 1px solid black;
    transition: all 0.3s ease;
    text-align: center;
    margin: 20px auto;
    width: fit-content;
}

.ticket-btn:hover {
    color: black;
    background: #ff4444;
}

/* Specific styling for table ticket button only */
.showings-table .ticket-btn {
    font-size: 25px;
    padding: 8px 10px;
    letter-spacing: 2px;
}

/* Tracklisting styles */
.tracklisting {
    padding: 30px 30px 30px 30px;
}

.track {
    margin-bottom: 15px;
}

.track:first-child {
    margin-top: 20px;
}

.track:last-child {
    margin-bottom: 0;
}

.track-header {
    display: flex;
    align-items: baseline;
    margin-bottom: 0px;
    gap: 10px;
}

.track-number {
    font-weight: regular;
    font-size: 20px;
    color: black;
    min-width: 30px;
}

.not-bold {
    font-weight: normal;
    display: inline-block;
}

.track-title {
    font-weight: bold;
    font-size: 20px;
    color: black;
    flex: 1;
}

.track-description {
    font-size: 20px;
    line-height: 1.2;
    color: black;
    margin-left: 40px;
    padding-right: 10px;
}

.intro-section .meta div {
    margin-bottom: 5px;
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid black;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    min-width: 0;
}

/* Artists Grid */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid black;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

.partner-logo, .artist-logo {
    background: #dcdddf;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    box-sizing: border-box;
    min-width: 0;
    width: 100%;
}

.artist-logo {
    padding: 0;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
    overflow: hidden;
    position: relative;
}

.artist-logo:nth-child(even) {
    border-right: none;
}

.partner-logo:nth-child(even) {
    border-right: none;
}

.partner-logo a, .artist-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    max-width: 500px;
    max-height: 500px;
    object-fit: contain;
    object-position: center;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.artist-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.partner-logo:hover img, .artist-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Artist name overlay */
.artist-logo .artist-name {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'RuderPlakatLLTT-Regular', sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    text-align: center;
    padding: 20px;
    line-height: 1.2;
}

.artist-logo:hover .artist-name {
    opacity: 1;
}

/* Artist role overlay */
.artist-logo .artist-role {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-family: 'MinionPro-Regular', sans-serif;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    text-align: center;
    padding: 20px;
    line-height: 1.3;
}

.artist-logo:hover .artist-role {
    opacity: 1;
}

.partner-logo.placeholder {
    background: #f0f0f0;
}

.placeholder-text {
    font-family: 'RuderPlakatLLTT-Regular', sans-serif;
    font-size: 24px;
    color: #666;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
}

.partner-logo.placeholder a:hover .placeholder-text, .artist-logo a:hover .placeholder-text {
    color: #333;
}

.partner-logo.video-slot, .artist-logo.video-slot {
    padding: 0;
    overflow: hidden;
}

.partner-logo.video-slot video, .artist-logo.video-slot video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(15%) saturate(110%) contrast(110%);
}

/* Artist Page Styles */
.back-link {
    display: inline-block;
    color: black;
    text-decoration: none;
    font-size: 18px;
    margin-bottom: 20px;
    margin-left: 45px;
    margin-top: 5px;
    transition: opacity 0.3s ease;
}

.back-link:hover {
    opacity: 0.7;
}

.artist-image {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    border: 2px dashed #999;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    min-height: 400px;
}

.artist-bio {
    margin-top: 7px;
}

.artist-bio p {
    font-size: 20px;
    line-height: 1.4;
    color: black;
    margin: 0;
}

.film-description-section p a { 
    color: #ff4444;
 }

 .film-description-section p a:hover {
    color: black;
    background: #ff4444;
 }
 
/* Top right section */
.visual-section {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    display: flex;
    align-items: stretch;
}

.visual-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(20%) saturate(120%) hue-rotate(-10deg);
}

/* Film description section */
.film-description-section {
    background: #dcdddf;
    padding: 80px 30px 40px 30px;
    position: relative;
}

.film-description-section::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    width: 30px;
    height: 30px;
    background: black;
    border-radius: 50%;
}

.film-description-section p, .grey-text p {
    font-size: 20px;
    line-height: 1.3;
    color: black;
    padding-right: 10px;
}

.grey-text p {
    position: relative;
    top: 0px; 
    margin-left: 0px;
    margin-right: 10px;
}

/* Film left section */
.film-left {
    position: relative;
    overflow: hidden;
    border-right: 1px solid black;
    box-sizing: border-box;
}

.film-left video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(15%) saturate(110%) contrast(110%);
}

/* Bottom right section */
.landscape-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0;
    border-top: 1px solid black;
}

.landscape-section + .landscape-section {
    margin-top: 0;
}

.landscape-left {
    position: relative;
    overflow: hidden;
    border-right: 1px solid black;
    aspect-ratio: 1 / 1;
}

.landscape-section + .landscape-section .landscape-left {
    border-top: none;
}

.landscape-left video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(25%) saturate(90%) brightness(95%);
}

.landscape-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.landscape-right {
    position: relative;
    overflow: hidden;
}

.landscape-right video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(20%) saturate(100%) hue-rotate(5deg);
}

/* Footer section */
.footer-section {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 40% 60%;
    min-height: auto;
    margin-left: 150px;
    border: 1px solid black;
    border-top: 40px solid black;
}

.footer-section.no-border {
    border-top: 0px;
}

.footer-date {
    background: #dcdddf;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'RuderPlakatLLTT-Regular', sans-serif;
    font-size: 100px;
    width: 100%;
    letter-spacing: 5px; 
    font-weight: regular;
    color: black;
    border-right: 1px solid black;
}

.footer-description, .footer-description-grey {
    background: #ff4444;
    padding: 20px;
    padding-left: 0px; 
    position: relative;
    display: flex;
    align-items: center;
}

.footer-description-grey { 
    background: #dcdddf;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 0px; 
}

.footer-description-grey a {
    display: inline-block;
    padding: 15px 30px;
    color: #ff4444;
    background: black;
    text-decoration: none;
    font-family: 'RuderPlakatLLTT-Regular', sans-serif;
    font-size: 30px;
    letter-spacing: 4px; 
    border: 1px solid black;
    transition: all 0.3s ease;
}

.join-movement {
    display: inline-block;
    text-align: center;
    padding: 15px 30px;
    color: #ff4444;
    background: black;
    text-decoration: none;
    font-family: 'RuderPlakatLLTT-Regular', sans-serif;
    font-size: 30px;
    letter-spacing: 4px; 
    border: 1px solid black;
    transition: all 0.3s ease;
}

.press-list {
    padding-left: 12px!important;
    margin-top: 40px;
    font-size: 20px; 
}

.press-list li {
    font-size: 20px; 
}

.footer-description-grey a:hover, .join-movement:hover {
    color: black;
    background: #ff4444;
}

.footer-description::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    width: 30px;
    height: 30px;
    background: black;
    border-radius: 50%;
}

.footer-description p, .footer-description-grey p {
    position: relative;
    margin-top: 60px;
    margin-left: 30px;
    font-size: 20px;
    line-height: 1.3;
    color: black;
    padding-right: 30px;
}

.footer-brand {
    position: fixed;
    bottom: 0;
    left: 150px;
    right: 0;
    background: #17219a;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
    border-top: 1px solid black;
}

.footer-brand .brand-left {
    color: white;
    font-family: 'SupermaxLLTT-Wide', sans-serif;
    font-size: 18px;
    font-weight: bold;
}

.footer-brand .brand-right {
    display: flex;
    gap: 20px;
}

.footer-brand .brand-right .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #17219a;
    font-weight: bold;
}

.footer-brand .brand-right .icon:first-child {
    width: 70px;
}

.icon img { 
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Large screen optimizations */
@media (min-width: 1400px) {
    .intro-section h1 {
        font-size: 26px;
        line-height: 1.25;
    }
}

/* Medium screen adjustments */
@media (max-width: 1200px) {
    .intro-section h1 {
        font-size: 22px;
        line-height: 1.35;
        padding-right: 20px;
    }
    
    .intro-section .quote-attribution {
        font-size: 20px;
    }
}

/* Small screen adjustments */
@media (max-width: 768px) {
    .intro-section h1 {
        font-size: 20px;
        line-height: 1.4;
        padding-right: 15px;
    }
    
    .intro-section .quote-attribution {
        font-size: 18px;
    }
    
    /* Resources page mobile specific styling */
    .resources-page .intro-section ol,
    .resources-page .intro-section ul {
        margin-top: 45px;
        margin-left: 30px; /* Increased left margin for better indentation on mobile */
        padding-left: 0;
    }
    
    .resources-page .film-description-section ol,
    .resources-page .film-description-section ul {
        margin-left: 30px; /* Increased left margin for better indentation on mobile */
        padding-left: 20px;
        margin-top: 40px; /* Added more space between title and list on mobile */
    }
    
    .resources-page .intro-section li,
    .resources-page .film-description-section li {
        padding-left: 0;
        font-size: 20px;
        font-family: 'MinionPro-Regular', Arial, sans-serif;
    }
}

/* Mobile responsiveness */
@media (max-width: 900px) {
    .container {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        display: none;
    }

    .burger-menu {
        display: none;
    }

    .mobile-burger-menu {
        display: block;
    }
    
    .main-content {
        margin-left: 0;
        border: none;
    }
    
    .content-row {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .right-section {
        grid-template-rows: auto auto;
    }
    
    .landscape-section {
        grid-template-columns: 1fr;
    }
    
    .footer-section {
        grid-template-columns: 1fr;
        margin-left: 0;
        border: none;
        padding-bottom:40px;
    }
    
    .footer-brand {
        left: 0;
        flex-direction: row; /* Keep on one line instead of stacking */
        gap: 10px; /* Reduce gap for more compact layout */
        padding: 15px 20px; /* Reduce padding to make it smaller */
    }
    
    .footer-brand .brand-left {
        font-size: 14px; /* Make text 1/4 smaller (from 18px to 14px) */
    }
    
    /* Make footer date text 1/4 smaller on mobile */
    .footer-date {
        font-size: 75px; /* 1/4 smaller than desktop 100px */
        letter-spacing: 3px;
    }
    
    /* Justify all body text and headings on mobile */
    .film-description-section p,
    .footer-description p,
    .artist-bio p,
    .grey-text p,
    .intro-section p,
    .intro-section h1,
    .quote-container h1 {
        text-align: justify;
    }
    
    /* Mobile slide-out menu full screen */
    .slide-menu {
        left: -100vw;
        width: 100vw;
        padding: 0;
    }
    
    .slide-menu.active {
        left: 0;
    }
    
    .slide-menu-header {
        display: flex;
        align-items: center;
        padding: 20px;
        border-bottom: 1px solid black;
    }
    
    .slide-menu-logo {
        font-family: 'RuderPlakatLLTT-Regular', sans-serif;
        font-size: 65px;
        font-weight: bold;
        color: black;
        letter-spacing: 2px;
    }
    
    .slide-menu-logo a {
        text-decoration: none;
        color: black;
    }
    
    .slide-menu-content {
        padding: 30px;
    }
    
    /* Mobile text adjustments */
    .intro-section {
        padding: 60px 30px 20px 30px;
    }
    
    /* Reduce top padding for intro sections with tables */
    .intro-section.no-bullet {
        padding: 20px 30px 20px 30px;
    }
    
    .intro-section h1 {
        margin-top: 20px;
        font-size: 20px;
        line-height: 1.4;
        padding-right: 0;
    }
    
    .intro-section .quote-attribution {
        font-size: 16px;
    }
    
    .film-description-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 60px 30px 20px 30px;
    }
    
    .film-description-section2 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 20px 30px 20px 30px;
    }


    .film-description-section p {
        position: static;
        margin-top: 20px;
        max-width: 100%;
    }
    
    .footer-description {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 60px 0px 20px 0px;
    }
    
    .footer-description p {
        position: static;
        margin-top: 20px;
        max-width: 100%;
    }
    
    /* Remove only problematic borders on mobile, keep section dividers */
    .main-content {
        border: none;
    }
    
    /* Remove general content-row borders (using specific borders instead) */
    .content-row {
        border: none;
    }
    
    /* Keep border for resources page third row */
    .resources-page .content-row.row-3 {
        border-top: 1px solid black !important;
    }
    
    /* Mobile styling for press section */
    .press-section::after {
        top: 20px;
        left: 20px;
        font-size: 24px;
    }
    

    

    
    /* film-description-section borders handled specifically per page */
    
    /* Landscape section borders removed */
    
    /* Only keep border above 03.07.25 date section */
    .footer-section {
        border-top: 1px solid black;
    }
    
    .footer-description-grey a {
        padding: 8px 15px;
        font-size: 30px;
        letter-spacing: 2px; 
    }
    
    .footer-description-grey {
        padding-bottom:20px;
    }
    
    /* Mobile table adjustments */
    .showings-table {
        margin-top: 10px;
        overflow-x: auto;
    }
    
    .showings-table th,
    .showings-table td {
        padding: 6px 8px;
        font-size: 20px;
    }
    
    .ticket-btn {
        padding: 12px 15px;
        font-size: 30px;
        letter-spacing: 2px;
        margin: 15px auto;
    }
    
    /* Specific styling for table ticket button on mobile */
    .showings-table .ticket-btn {
        font-size: 15px;
        padding: 6px 8px;
        letter-spacing: 1px;
        margin: 8px auto;
    }
    
    /* Mobile tracklisting adjustments */
    .tracklisting {
        padding: 60px 20px 20px 20px;
    }
    
    .film-description-section.tracklisting::before {
        top: 20px;
        left: 20px;
    }

    
    .track {
        margin-bottom: 15px; /* Reduced from 25px for tighter mobile spacing */
    }
    
    .track:first-child {
        margin-top: 30px; /* Extra space from mobile title */
    }
    
    .track-header {
        flex-wrap: wrap;
        align-items: baseline;
        gap: 5px;
        margin-bottom: 8px;
    }
    
    .track-number,
    .track-title {
        font-size: 20px; /* Match H1 text size on mobile */
    }
    
    .track-description {
        font-size: 14px;
        margin-left: 0;
        padding-right: 0;
    }
    
    /* Mobile partners and artists grid adjustments */
    .partners-grid, .artists-grid {
        grid-template-columns: 1fr;
        min-width: 0;
        overflow-x: hidden;
    }
    
    .partner-logo {
        border-right: none;
        padding: 30px 10px; /* Further reduce horizontal padding for Safari mobile */
        min-width: 0;
        width: 100%;
    }
    
    .artist-logo {
        border-right: none;
        padding: 0;
    }
    
    .artist-logo .artist-name {
        font-size: 18px;
        letter-spacing: 1px;
        padding: 15px;
        opacity: 1 !important; /* Force always visible on mobile for both artists and indigenous voices pages */
        align-items: flex-start;
        padding-top: 15px;
        padding-bottom: 5px;
        color: white; /* Ensure consistent white color on mobile */
        background: rgba(0, 0, 0, 0.8); /* More opaque background for better text visibility on mobile */
    }
    
    .artist-logo .artist-role {
        font-size: 14px;
        opacity: 1;
        padding: 5px 15px 15px 15px;
        line-height: 1.2;
        align-items: flex-end;
    }
    
    .partner-logo:nth-child(even) {
        border-right: none;
    }
    
    /* Mobile artist page adjustments */
    .back-link {
        margin-left: 55px;
        margin-top: -25px;
    }
    
    .artist-image {
        padding: 0;
    }
    
    /* Hide artist video section on mobile to save space */
    .artist-video-section {
        display: none;
    }
    
    .placeholder-image {
        min-height: 300px;
    }
    
    .artist-bio {
        margin-top: 5px;
    }
    
    .artist-bio p {
        font-size: 18px;
    }
    
    .artist-image img {
        /* Removed min-height to maintain square aspect ratio */
    }
    
    /* Mobile artist social adjustments */
    .artist-social {
        margin-top: 20px;
    }
    
    .artist-social h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .social-links a {
        font-size: 18px;
        line-height: 1.4;
        padding: 0;
    }
    
    /* Hide consecutive videos in mobile to prevent stacking */
    .row-2 .film-left {
        display: none;
    }
    
    /* Hide landscape videos on homepage only (to prevent video stacking) */
    .homepage .landscape-section .landscape-left {
        display: none;
    }
    
    /* Keep images visible on about page */
    .about-page .landscape-section .landscape-left img {
        display: block;
    }
    
    .artist-logo.video-slot:nth-child(even) {
        display: none;
    }
    
    .partner-logo.video-slot:nth-child(even) {
        display: none;
    }
    
    /* Hide video after intro text on indigenous voices page */
    .indigenous-voices-page .visual-section {
        display: none;
    }
    
    /* Homepage mobile title - ALIGN WITH BULLET */
    .content-row.homepage.row-1 .intro-section h1::before {
        content: 'TAKKUUK' !important;
        position: absolute !important;
        top: -35px !important;
        left: 40px !important;
        font-family: 'RuderPlakatLLTT-Regular', sans-serif !important;
        font-size: 28px !important;
        font-weight: normal !important;
        color: black !important;
        letter-spacing: 1px !important;
        text-transform: uppercase !important;
        line-height: 1 !important;
        transform: translateY(-50%) !important;
        z-index: 999 !important;
        display: block !important;
    }
    
    /* Tracklist mobile title positioning adjustment */
    .film-description-section.tracklisting::after {
        top: 20px;
        left: 60px;
        transform: translateY(0);
    }
    
    /* Competition mobile title positioning adjustment */
    .homepage .film-description-section:nth-child(2)::after {
        top: 35px;
        left: 60px;
        transform: translateY(-50%);
    }
    
    /* Indigenous Voices mobile title positioning adjustment */
    .indigenous-voices-page .intro-section::after {
        top: 45px;
        left: 70px;
        transform: translateY(-50%);
    }
    
    /* Join the Movement mobile positioning adjustments */
    .join-the-movement-page .film-description-section::before {
        top: 20px;
        left: 20px;
    }
    
    .join-the-movement-page .film-description-section::after {
        top: 20px;
        left: 60px;
        transform: translateY(0);
    }
    
    /* Join the Movement form mobile adjustments */
    .join-the-movement-page #mc_embed_signup {
        margin-top: 20px;
    }
    
    .join-the-movement-page #mc_embed_signup .indicates-required {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .join-the-movement-page #mc_embed_signup label {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .join-the-movement-page #mc_embed_signup input[type="email"],
    .join-the-movement-page #mc_embed_signup input[type="text"] {
        padding: 10px 12px;
        font-size: 16px;
        border-width: 1px;
    }
    
    .join-the-movement-page #mc_embed_signup input[type="submit"] {
        font-size: 20px;
        padding: 12px 25px;
        letter-spacing: 1px;
    }
    
    .join-the-movement-page #mc_embed_signup .mc-field-group {
        margin-bottom: 15px;
    }
    
    .join-the-movement-page #mc_embed_signup input[type="email"],
    .join-the-movement-page #mc_embed_signup input[type="text"] {
        border-width: 1px;
    }
}

/* Join the Movement Subscribe Form Styling */
.join-the-movement-page #mc_embed_signup {
    margin-top: 30px;
}

.join-the-movement-page #mc_embed_signup .indicates-required {
    font-family: 'MinionPro-Regular', Arial, sans-serif;
    font-size: 16px;
    color: black;
    margin-bottom: 25px;
    text-align: left;
}

.join-the-movement-page #mc_embed_signup .asterisk {
    color: #ff4444;
    font-weight: bold;
}

.join-the-movement-page #mc_embed_signup .mc-field-group {
    margin-bottom: 20px;
}

.join-the-movement-page #mc_embed_signup label {
    display: block;
    font-family: 'RuderPlakatLLTT-Regular', sans-serif;
    font-size: 18px;
    color: black;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.join-the-movement-page #mc_embed_signup input[type="email"],
.join-the-movement-page #mc_embed_signup input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid black;
    background: white;
    font-family: 'MinionPro-Regular', Arial, sans-serif;
    font-size: 18px;
    color: black;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.join-the-movement-page #mc_embed_signup input[type="email"]:focus,
.join-the-movement-page #mc_embed_signup input[type="text"]:focus {
    outline: none;
    border-color: #ff4444;
    background: #f9f9f9;
}

.join-the-movement-page #mc_embed_signup .clear {
    margin-top: 30px;
}

.join-the-movement-page #mc_embed_signup input[type="submit"] {
    display: block;
    padding: 15px 30px;
    color: #ff4444;
    background: black;
    text-decoration: none;
    font-family: 'RuderPlakatLLTT-Regular', sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
    border: 1px solid black;
    transition: all 0.3s ease;
    text-align: center;
    margin: 0 auto;
    width: fit-content;
    cursor: pointer;
    text-transform: uppercase;
}

.join-the-movement-page #mc_embed_signup input[type="submit"]:hover {
    color: black;
    background: #ff4444;
}

.join-the-movement-page #mc_embed_signup .response {
    font-family: 'MinionPro-Regular', Arial, sans-serif;
    font-size: 16px;
    margin-top: 15px;
    padding: 10px;
    text-align: center;
}

.join-the-movement-page #mc_embed_signup #mce-success-response {
    color: #28a745;
    background: #d4edda;
    border: 1px solid #c3e6cb;
}

.join-the-movement-page #mc_embed_signup #mce-error-response {
    color: #dc3545;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
}

/* High DPI/Retina Display Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), 
       (min-resolution: 192dpi),
       (min-resolution: 2dppx) {
    body {
        font-weight: 300;
        letter-spacing: 0.01em;
    }
    
    h1, h2, h3, h4, h5, h6 {
        font-weight: 400;
        letter-spacing: -0.01em;
        text-rendering: geometricPrecision;
    }
    
    .logo {
        font-weight: 400;
        letter-spacing: 1px;
        text-rendering: geometricPrecision;
    }
    
    /* Enhanced sharpness for custom fonts on retina */
    .intro-section h1,
    .film-description-section p,
    .footer-description p,
    .footer-date,
    .footer-description-grey a {
        transform: translateZ(0);
        backface-visibility: hidden;
        perspective: 1000;
    }
}/* Partner logo size constraints applied */
/* Indigenous voices roles added */

/* Homepage specific styling - add border between content blocks */
.homepage .film-description-section:nth-child(2) {
    border-top: 1px solid black;
    padding-top: 80px;
}

/* Competition section specific styling */
.homepage .film-description-section:nth-child(2)::after {
    content: 'COMPETITION';
    position: absolute;
    top: 45px;
    left: 70px;
    font-family: 'RuderPlakatLLTT-Regular', sans-serif;
    font-size: 28px;
    font-weight: normal;
    color: black;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1;
    transform: translateY(-50%);
}

/* Resources page specific styling */
.resources-page .intro-section::after {
    content: 'RESOURCES';
    position: absolute;
    top: 45px;
    left: 70px;
    font-family: 'RuderPlakatLLTT-Regular', sans-serif;
    font-size: 28px;
    font-weight: normal;
    color: black;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1;
    transform: translateY(-50%);
}

/* Press section styling */
.press-section::after {
    content: 'PRESS'!important;
    position: absolute;
    top: 45px;
    left: 70px;
    font-family: 'RuderPlakatLLTT-Regular', sans-serif;
    font-size: 28px;
    font-weight: normal;
    color: black;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1;
    transform: translateY(-50%);
}



.resources-page .film-description-section::after {
    content: 'VIDEOS';
    position: absolute;
    top: 45px;
    left: 70px;
    font-family: 'RuderPlakatLLTT-Regular', sans-serif;
    font-size: 28px;
    font-weight: normal;
    color: black;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1;
    transform: translateY(-50%);
}

.resources-page .intro-section ol,
.resources-page .intro-section ul {
    margin-top: 40px;
    margin-left: 17px;
    padding-left: 0;
}

.resources-page .film-description-section ol,
.resources-page .film-description-section ul {
    margin-left: 17px;
    padding-left: 0;
}

.resources-page .intro-section li,
.resources-page .film-description-section li {
    padding-left: 0;
    font-size: 20px;
    font-family: 'MinionPro-Regular', Arial, sans-serif;
}

/* Add border at top of third row */
.resources-page .content-row.row-3 {
    border-top: 1px solid black !important;
    padding-top: 80px;
}

.slide-menu-content ul li a { font-size: 18px;}