/* Import Glacial Indifference font - Local */
@font-face {
    font-family: 'Glacial Indifference';
    src: url('/assets/fonts/GlacialIndifference-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Glacial Indifference';
    src: url('/assets/fonts/GlacialIndifference-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Horizon Booking - New Brand Design */
/* CSS Variables */
:root {
    --space-w: 1.5rem;
    --space-h: var(--space-w);
    --black: #000;
    --white: #ffffff;
    --blue: #002fa7;
    --blue-dark: #001d6b;
    --text-blue: #002fa7;
    --bg-white: #ffffff;
    --c: var(--text-blue);
    --bg: var(--bg-white);
    --header: 6.875rem;
    font-size: calc(1rem + 0.25vw);
}

@media only screen and (min-width: 1024px) {
    :root {
        --space-w: 2rem;
        --header: 7.75rem;
    }
}

/* Reset and base styles */
*,
*:before,
*:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    min-height: 100%;
}

body {
    font-family: 'Glacial Indifference', 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-blue);
    background-color: var(--white);
    font-size: 1rem;
    letter-spacing: 0.025em;
    text-align: left;
    overflow-x: clip;
}

@media only screen and (min-width: 1024px) {
    body {
        text-rendering: geometricPrecision;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header styles - New Brand Design */
.main-header {
    background-color: var(--white);
    color: var(--text-blue);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(0, 47, 167, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.header-logo a {
    display: block;
}

.header-logo-image {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.header-nav {
    flex: 1;
    text-align: center;
}

.nav-back {
    color: var(--text-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: opacity 0.3s ease;
}

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

.header-decoration {
    position: relative; /* Required for dropdown positioning */
    width: 80px;
    display: flex;
    justify-content: flex-end;
}

.header-decoration-image {
    width: 80px;
    height: auto;
    cursor: pointer;
}

/* Dropdown Menu Styles */
.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: var(--white);
    min-width: 160px;
    z-index: 100;
    border: 3px solid var(--blue);
}

.dropdown-content a {
    color: var(--blue);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.show {
    display: block;
}


.mobile-menu-btn {
    display: none;
    background: none;
    border: 1px solid #000000;
    border-radius: 0;
    color: #000000;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 0;
    border-top: 1px solid #e5e5e5;
    margin-top: 2rem;
}

.mobile-menu.show {
    display: flex;
}

.mobile-menu a {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.75rem 1.5rem;
    border: 1px solid #000000;
    border-radius: 0;
    text-align: center;
    transition: all 0.3s;
}

.mobile-menu a:hover {
    background-color: #000000;
    color: #ffffff;
}

/* Hero section - New Brand Design */
.hero {
    padding: calc(var(--space-h) * 2) 0;
    background-color: var(--white);
    color: var(--text-blue);
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 80vh;
    gap: 4rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex: 1;
}

.hero-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.hero-text {
    flex: 1;
}

.hero-decoration {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.decoration-image {
    width: 100px;
    height: auto;
    opacity: 0.3;
}

@media (min-width: 1024px) {
    .hero {
        padding: calc(var(--space-h) * 0.75) 0 calc(var(--space-h) * 0.25);
    }
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
    line-height: 1.3;
    color: var(--text-blue);
    font-style: italic;
    text-align: center;
}


/* Manifesto section - New Brand Design */
.manifesto {
    margin: 2rem 0;
    text-align: justify;
}

.manifesto p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-blue);
    letter-spacing: 0.025em;
}

/* CTA Section */
.cta-section {
    margin: 3rem 0 2rem 0;
    text-align: center;
}

.discover-btn {
    display: inline-block;
    background-color: var(--blue);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0;
    transition: all 0.3s ease;
}

.discover-btn:hover {
    background-color: var(--blue-dark);
    transform: translateY(-2px);
}

/* Social Links on Homepage */
.social-links-home {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-blue);
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

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

.social-link img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Card styles */
.card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 0;
    margin-bottom: 2rem;
}

/* Button styles - Alice's Design */
.discover-artists-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--purple-gradient-start), var(--purple-gradient-end));
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.discover-artists-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.style-button {
    align-items: center;
    background-color: var(--text-blue);
    border-radius: 0;
    display: inline-flex;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    transition-duration: 0.15s;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    width: fit-content;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    line-height: 125%;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

@media (min-width: 1024px) {
    .style-button:hover {
        background-color: var(--black);
        color: var(--white);
        gap: 0.75rem;
    }
}

.style-button svg {
    height: 1em;
    width: auto;
}

.style-button-lg {
    font-size: 18px;
    letter-spacing: 0.025em;
    line-height: 80%;
    text-transform: uppercase;
}

.style-button-md {
    font-size: 1rem;
    line-height: 125%;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.style-button-sm {
    font-size: 0.75rem;
    line-height: 100%;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

@media (min-width: 1024px) {
    .style-button-sm {
        font-size: 0.875rem;
        line-height: 100%;
    }
}

/* Legacy button support */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--yellow);
    color: var(--black);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 0;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--yellow);
}

.btn:hover {
    background-color: var(--black);
    color: var(--white);
    border-color: var(--black);
    gap: 1rem;
}

.btn-black {
    background-color: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.btn-black:hover {
    background-color: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
}

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

.btn-blue:hover {
    background-color: var(--text-blue);
    color: var(--white);
    border: 2px solid var(--text-blue);
}

/* Roster Section - New Brand Design */
.roster-section {
    background-color: var(--blue);
    color: var(--white);
    padding: 4rem 0;
    margin-top: 4rem;
}

.roster-header {
    text-align: center;
    margin-bottom: 3rem;
}

.roster-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

.roster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (min-width: 768px) {
    .roster-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .roster-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Ensure roster fits above the fold on desktop */
@media (min-width: 1024px) and (max-height: 900px) {
    .roster-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.5rem;
    }
    
    .roster-image-container {
        height: 140px;
    }
    
    .roster-info {
        padding: 0.5rem;
    }
    
    .roster-name {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
}

.roster-item {
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    position: relative;
}

@media (min-width: 1024px) {
    .roster-item:hover {
        transform: scale(1.02);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        border-color: var(--white);
    }
    
    .roster-item:hover .roster-image {
        transform: scale(1.05);
    }
    
    .roster-item:hover .roster-name {
        color: var(--yellow);
    }
}

.roster-image-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

@media (min-width: 1024px) {
    .roster-image-container {
        height: 280px;
    }
}

.roster-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.roster-info {
    background-color: var(--blue);
    padding: 1rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .roster-info {
        padding: 1.25rem;
    }
}

.roster-name {
    display: block;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--white);
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

.roster-country {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 400;
    line-height: 100%;
}

/* Roster Page Styles */
.roster-page {
    background-color: var(--white); /* Changed background to white */
    min-height: 100vh;
    padding: 0; /* Removed padding */
}

.roster-page-header {
    background-color: var(--blue); /* Kept blue background for header */
    text-align: center;
    padding: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px; /* Set fixed height for desktop */
}

.roster-page-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

.roster-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

@media (min-width: 1024px) {
    .roster-page-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.roster-page-item {
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    position: relative;
}

.roster-page-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.roster-page-image-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.roster-page-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.roster-page-item:hover .roster-page-image {
    transform: scale(1.05);
}

.roster-page-info {
    background-color: var(--blue); /* Blue background for artist name */
    padding: 1rem;
    text-align: center;
    width: 100%;
}

.roster-page-name {
    display: block;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--white); /* White text for artist name */
    letter-spacing: 0.025em;
    text-transform: uppercase;
    margin: 0;
}

.roster-page-country {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

.roster-page-territories {
    margin-top: 0.5rem;
}

.horizon-territories {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Artist page styles - New Brand Design */
.artist-header {
    background-color: var(--blue);
    color: var(--white);
    padding: 4rem 0 2rem 0;
    position: relative;
    text-align: left;
}

.artist-header h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--white);
}

/* Artist Page Layout */
.artist-page {
    background-color: var(--white);
    padding: 2rem 0;
}

.artist-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.artist-image-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.artist-main-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.artist-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.artist-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.artist-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 0;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.artist-social-btn:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 47, 167, 0.3);
}

.book-artist-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 0;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    align-self: flex-start;
    border: 3px solid var(--primary-color);
}

.book-artist-btn:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 47, 167, 0.4);
}

.artist-territory-section {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 0;
    border-left: 4px solid var(--primary-color);
}

.artist-territory-section h3 {
    color: var(--primary-color);
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
    font-weight: bold;
}

.artist-territory-section p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.artist-description-section {
    line-height: 1.8;
    color: #444;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .artist-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
    }
    
    .artist-header h1 {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .artist-main-image {
        max-width: 100%;
    }
    
    .artist-social-links {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .artist-social-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .book-artist-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        align-self: center;
        text-align: center;
    }
    
    .artist-territory-section {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .artist-description-section {
        font-size: 1rem;
        text-align: left;
        padding: 0 1rem;
    }
}

.artist-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin: 3rem 0;
    background: #ffffff;
    padding: 3rem;
    border-radius: 0;
}

/* Si il y a une sidebar, utiliser le layout à deux colonnes */
.artist-content.has-sidebar {
    grid-template-columns: 3fr 1fr;
}

.artist-description {
    font-size: 1.25rem;
    line-height: 1.6;
    letter-spacing: 0.025em;
}

.artist-sidebar h3 {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    margin-right: 0.75rem;
    margin-bottom: 0.75rem;
}

.booking-btn {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #000000;
    color: #ffffff;
    padding: 1.25rem;
    text-decoration: none;
    border-radius: 0;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    border: 2px solid #000000;
}

.booking-btn:hover {
    background-color: #facc15;
    color: #000000;
    border-color: #facc15;
}

/* Contact section */
.contact-section {
    background: #ffffff;
    padding: 4rem;
    border-radius: 0;
    text-align: center;
    margin: 4rem 0;
}

.contact-section h2 {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.contact-section p {
    font-size: 1.125rem;
    color: #666666;
    margin-bottom: 2rem;
    letter-spacing: 0.025em;
}

/* Footer styles */
footer {
    background-color: var(--black);
    color: var(--white);
    padding: calc(var(--space-h) * 2) 0 var(--space-h);
    margin-top: calc(var(--space-h) * 3);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: calc(var(--space-w) * 2);
    margin-bottom: calc(var(--space-h) * 1.5);
    align-items: start;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-h);
        text-align: center;
    }
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
}

.footer-brand p {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.025em;
}

.footer-section h4 {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
}

.footer-section p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    letter-spacing: 0.025em;
    line-height: 1.4;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-section a:hover {
    color: var(--yellow);
}

.social-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    padding: 0;
    margin-right: 0.75rem;
    background-color: #ffffff;
    color: var(--text-blue);
    border: none;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--text-blue);
}

.social-icon-btn:hover {
    background-color: var(--text-blue);
    color: #ffffff;
}

.social-icon-btn:hover svg {
    fill: #ffffff;
}

.social-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background-color: #ffffff !important;
    color: #000000 !important;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-button svg {
    fill: #000000 !important;
}

.social-button:visited {
    color: #000000 !important;
}

@media (min-width: 1024px) {
    .social-button:hover {
        background-color: var(--yellow);
        color: var(--black);
        transform: translateY(-2px);
        gap: 0.75rem;
    }
}

.footer-bottom {
    padding-top: var(--space-h);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* New Artist Page Styles - Following Mockup Design */
.new-artist-page {
    min-height: 100vh;
    background: #ffffff;
    padding: 0;
}

/* Artist Title Bar - Blue background with white text */
.artist-title-bar {
    background: #002fa7;
    padding: 30px 0;
    margin: 0;
}

.artist-title-bar h1 {
    font-family: 'Glacial Indifference', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
    margin: 0;
    padding: 0 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Main Content Wrapper */
.artist-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Column - Main Content */
.artist-main-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Back to Roster Link */
.back-link {
    margin: 30px 0;
}

.back-link a {
    color: #002fa7;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-link a:hover {
    color: #001a5c;
}

/* Artist Main Image */
.artist-main-image-container {
    width: 100%;
    margin-bottom: 0;
}

.artist-main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    object-fit: cover;
}

/* Artist Description */
.artist-description {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #002fa7;
    margin-top: 0;
    width: 100%;
}

.artist-placeholder {
    background: linear-gradient(135deg, #002fa7, #0066ff);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: bold;
    color: white;
    border-radius: 0;
}

/* Artist Description */
.artist-description {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #002fa7;
    margin-top: 20px;
}

/* Right Column - Sidebar */
.artist-sidebar {
    display: flex;
    flex-direction: column;
}

/* Combined Social and Booking Container */
.social-booking-container {
    display: flex;
    gap: 20px;
    border-left: 3px solid #002fa7;
    border-right: 3px solid #002fa7;
    border-bottom: 3px solid #002fa7;
    padding: 20px;
}

/* Social Links Section */
.social-links-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #002fa7;
    text-decoration: none;
    border: 1px solid #002fa7;
    border-radius: 4px;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--text-blue);
}

.social-icon-btn:hover {
    background-color: var(--text-blue);
    color: #ffffff;
}

.social-icon-btn:hover svg {
    fill: #ffffff;
}


.social-link-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
}

.social-link-with-name {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #002fa7;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    width: 100%;
}

.social-link-with-name:hover {
    color: #001a5c;
}

.social-icon {
    color: #002fa7;
    display: flex;
    align-items: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.social-name {
    flex: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .social-booking-container {
        flex-direction: column;
        gap: 15px;
    }
}

/* Spotify Player Section */
.spotify-section {
    margin-top: 30px;
    margin-bottom: 30px;
}

.spotify-embed {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.spotify-embed iframe {
    width: 100%;
    border-radius: 8px;
}

/* Book Artist Button */
.book-button-section {
    flex: 1;
}

.book-artist-button {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: #002fa7;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 0;
    transition: background-color 0.3s ease;
}

.book-artist-button:hover {
    background: #001a5c;
}

/* Territories Section */
.territories-section {
    background: #ffffff;
    border: 3px solid #002fa7;
    border-radius: 0;
    overflow: hidden;
    margin-top: 30px;
}

.territories-header {
    background: #002fa7;
    padding: 16px 20px;
    border-radius: 0;
}

.territories-header h3 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.territories-content {
    padding: 20px;
    background: #ffffff;
}

.territory-item {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #002fa7;
}

.territory-item.horizon-booking {
    font-weight: bold;
}

.territory-item strong {
    color: #002fa7;
    font-weight: normal;
}

.territory-item.horizon-booking strong {
    font-weight: bold;
}


.territory-item:last-child {
    margin-bottom: 0;
}

/* YouTube Section */
.youtube-section {
    margin-top: 30px;
}

.youtube-embed {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 0;
}

.youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .artist-title-bar h1 {
        font-size: 2rem;
        padding: 0 20px;
    }
    
    .artist-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 20px;
    }
    
    .artist-sidebar {
        order: -1; /* Move sidebar above main content on mobile */
    }
    
    .youtube-section {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .artist-title-bar {
        padding: 20px 0;
    }
    
    .artist-title-bar h1 {
        font-size: 1.75rem;
    }
    
    .artist-content-wrapper {
        padding-bottom: 15px;
        gap: 30px;
    }
}

/* Desktop and Mobile Layout Controls */
.desktop-layout {
    display: block;
}

.mobile-layout {
    display: none;
}

/* Mobile layout styles for proper ordering */
.mobile-layout {
    padding: 0 20px;
}

.mobile-layout .artist-main-image-container {
    margin-bottom: 20px;
}

.mobile-layout .social-booking-container {
    margin-bottom: 30px;
}

.mobile-layout .territories-section {
    margin-bottom: 30px;
}

.mobile-layout .artist-description {
    margin-bottom: 30px;
    padding: 0;
}

.mobile-layout .back-link {
    margin-bottom: 30px;
    text-align: left;
}

.mobile-layout .youtube-section,
.mobile-layout .spotify-section {
    margin-bottom: 30px;
}

/* Switch to mobile layout on smaller screens */
@media (max-width: 768px) {
    .desktop-layout {
        display: none;
    }
    
    .mobile-layout {
        display: block;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .manifesto p {
        font-size: clamp(1.25rem, 4vw, 1.75rem);
    }
    
    .roster-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        margin: 3rem 0;
    }
    
    .artist-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .contact-section {
        padding: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
}
