/* Add at the top of your CSS file */
@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/gilroy/gilroy-light.woff') format('woff'),
         url('/fonts/gilroy/gilroy-light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/gilroy/gilroy-regular.woff') format('woff'),
         url('/fonts/gilroy/gilroy-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/gilroy/gilroy-medium.woff') format('woff'),
         url('/fonts/gilroy/gilroy-medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/gilroy/gilroy-extrabold.woff') format('woff'),
         url('/fonts/gilroy/gilroy-extrabold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Voyage';
    src: url('/fonts/voyage/voyage-light.woff') format('woff'),
         url('/fonts/voyage/voyage-light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Voyage';
    src: url('/fonts/voyage/voyage-regular.woff') format('woff'),
         url('/fonts/voyage/voyage-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Voyage';
    src: url('/fonts/voyage/voyage-medium.woff') format('woff'),
         url('/fonts/voyage/voyage-medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Voyage';
    src: url('/fonts/voyage/voyage-black.woff') format('woff'),
         url('/fonts/voyage/voyage-black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}


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

body {
    display: flex;
    min-height: 100vh;
    background-color: #1a1a1a;
    color: #bda872;
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.5;
}

/* Global link styles */
a {
    color: #bda872;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #F9E5B3;
}

/* Links within paragraph text */
p a {
    color: #F9E5B3;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
    transition: all 0.3s ease;
}

p a:hover {
    color: #ffffff;
    text-decoration-thickness: 2px;
}

/* Sidebar styles */
.sidebar {
    width: 100px;
    border-right: 1px solid #F9E5B3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    position: fixed;
    height: 100vh;
}

.logo-top img {
    width: 100%;
    height: auto;
}

.logo-bottom {
    font-family: 'Gilroy', sans-serif;
    font-weight: 300;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-align: center;
    color: #F9E5B3;
    font-size: 1.5rem;
}

/* Main content area */
.content {
    flex: 1;
    margin-left: 100px;
}

.main-column {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Expandable sections container */
.expandable-sections {
    flex: 1;
}

/* Expandable sections */
.section {
    border-bottom: 1px solid #F9E5B3;
}

.section h2 {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 1.5rem 2rem;
    color: #bda872;
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
    transition: color 0.3s ease;
}

.section h2 span {
    font-size: 1.5rem;
    color: inherit;
    transition: color 0.3s ease;
}

/* Hover state */
.section h2:hover {
    color: #F9E5B3;
    cursor: pointer;
}

/* Active state */
.section.active h2 {
    color: #F9E5B3;
}

/* Base section content */
.section-content {
    display: none;
    margin: 0;
    padding: 0;
}

/* Show content when section is active */
.section.active .section-content {
    display: block;
}

/* Text columns layout */
.text-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 0;
    margin: 0;
    position: relative;
    border-top: 1px solid #F9E5B3;
}

.text-column {
    padding: 2rem;
    position: relative;
}

/* Add vertical lines between columns */
.text-column:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #F9E5B3;
}

.text-column h3 {
    color: #F9E5B3;
    margin-bottom: 1.5rem;
    font-family: 'Gilroy', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
}

.text-column p {
    text-align: left;
    margin-bottom: 1rem;
}

/* If you have text-buttons, they'll now sit nicely at the bottom */
.text-column .text-button {
    margin-top: auto;
}

/* For better browser support of hyphens */
@media (max-width: 767px) {
    .text-column p {
        -webkit-hyphens: none;
        -ms-hyphens: none;
        hyphens: none;
    }
}

/* Grid sections */
.section-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 0;
    margin: 0;
    position: relative;
    border-top: 1px solid #F9E5B3;
}

.section-card {
    padding: 2rem;
    position: relative;
}

/* Add vertical lines between cards */
.section-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #F9E5B3;
}

/* Keep existing card content styling */
.section-card picture {
    width: 100%;
    display: block;
    aspect-ratio: 1/1;
    margin-bottom: 1rem;
    overflow: hidden;
}

.section-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Optional: keep hover effect */
.section-card:hover img {
    transform: scale(1.05);
}

.artist-card img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.section-card h3 {
    font-size: 1.5rem;
    color: #F9E5B3;
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
    margin-bottom: 0.5rem;
}



/* If you need any direct children of section-content to span all columns */
.section-content > p {
    grid-column: 1 / -1; /* Spans all columns */
}

.section.active .section-content {
    display: block;
}

/* Hero section */
.hero {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #F9E5B3;
    display: flex;
    align-items: center;
    padding: 2rem;
    overflow: hidden; /* Prevent internal scrolling */
}

.hero-text {
    font-family: 'Voyage', sans-serif;
    font-weight: 300;
    font-size: 9rem;
    line-height: 1;
    color: #F9E5B3;
    max-width: 1000px;
}

/* Footer */
.footer {
    border-top: 1px solid #F9E5B3;
    padding: 4rem 2rem 2rem;
    background-color: #1a1a1a;
}

.footer-content {
    display: flex;
    justify-content: flex-end;
    gap: 4rem;
    padding: 0 2rem;
}

.footer-section h3 {
    color: #F9E5B3;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-family: 'Gilroy', sans-serif;
    font-weight: 300;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-links a, .footer-section a {
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
}

.social-links a:hover, .footer-section a:hover {
    color: #F9E5B3;
}

.footer-bottom {
    margin-top: 4rem;
    padding: 2rem;
    border-top: 1px solid #333;
    text-align: right;
    color: #666;
}

.about-text {
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #F9E5B3;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.about-text:last-child {
    margin-bottom: 0;
}

/* Mobile navigation - hidden by default */
.mobile-nav {
    display: none; /* Hide by default for desktop */
    width: 100%;
    background: #1a1a1a;
    border-bottom: 1px solid #F9E5B3;
    padding: 1rem;
    position: fixed;
    top: 0;
    z-index: 100;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav .logo {
    color: #F9E5B3;
    font-family: 'Gilroy', sans-serif;
    font-size: 1.5rem;
}

.mobile-nav .logo-image {
    height: 30px;
    width: auto;
}


/* Mobile styles */
@media screen and (max-width: 767px) {
    .mobile-nav {
        display: flex; /* Show only on mobile */
    }

    .sidebar {
        display: none;
    }

    .content {
        margin-left: 0;
        margin-top: 60px;
    }

    /* Adjust hero section */
    .hero {
        min-height: auto; /* Remove fixed height on mobile */
        height: auto; /* Let it adjust to content */
        padding: 2rem 1rem;
        overflow: visible; /* Ensure content flows normally */
    }

    .hero-text {
        font-size: 3.5rem;
        line-height: 1.3;
    }

    /* Adjust sections */

    .section {
        border-bottom: 1px solid #F9E5B3;
        padding: 0.5rem 0; /* Add some vertical breathing room */
    }

    .section-content {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 1rem;
        padding: 0 1rem;
    }

    .section h2 {
        font-size: 1.5rem;
        padding: 1rem;
    }

    /* Make grid single column */
    .section-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        border-top: none;
    }

    /* Adjust card spacing */
    .section-card {
        margin-bottom: 1rem;
    }
}

/* Mobile styles */
@media screen and (max-width: 767px) {
    .footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        padding: 0;
    }

    .footer-section {
        text-align: center;
    }

    .footer-bottom {
        margin-top: 2rem;
        padding: 1rem;
        text-align: center;
    }

    .social-links {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
}


/* Mobile styles */
@media screen and (max-width: 767px) {
    .text-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
        border-top: none;
    }
    
    .text-column::after {
        display: none;
    }
}

.text-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none; /* Removes underline from link */
}

.text-button span {
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
    color: #F9E5B3;
    font-size: 1.2rem;
}

.text-button .arrow {
    transition: transform 0.3s ease;
}

.text-button:hover .arrow {
    transform: translateX(10px);
}

.text-button:hover span {
    color: #F9E5B3;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    transition: opacity 0.3s ease;
}

.social-icons a:hover {
    opacity: 0.7;
}

/* Ensure icons stay gold in all states */
.social-icons svg path {
    fill: #F9E5B3;
}



