/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Inter:wght@100..900&display=swap');

/* BASIC STYLES & VARIABLES */
:root {
    --bg-color: #111111;
    --text-color: #EAEAEA;
    --accent-color: #EFEFD0;
    --font-serif: "Lora", serif;
    --font-sans: "Inter", sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    margin: 0;
    padding: 0;
}

body.mobile-nav-active {
    overflow: hidden;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

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

.section-subtitle {
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 1rem 0;
    letter-spacing: 1px;
}

.section-main-title {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    color: var(--text-color);
}


/* HEADER STYLES */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    padding: 2.5rem 4rem;
    box-sizing: border-box;
}

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

.logo a {
    display: block;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

.main-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    font-size: 1rem;
    font-weight: 500;
    padding-bottom: 5px;
    position: relative;
}

.main-nav a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.main-nav a:hover:after,
.main-nav a.active:after {
    width: 100%;
}

.main-nav a.active {
    color: var(--accent-color);
}

.header-action .action-button {
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.header-action .action-button:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
}

.mobile-menu-toggle {
    display: none; /* Hidden on desktop */
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--text-color);
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.mobile-menu-toggle span:nth-child(1) { top: 0px; }
.mobile-menu-toggle span:nth-child(2) { top: 10px; }
.mobile-menu-toggle span:nth-child(3) { top: 20px; }

.mobile-menu-toggle.active span:nth-child(1) { top: 10px; transform: rotate(135deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; left: -60px; }
.mobile-menu-toggle.active span:nth-child(3) { top: 10px; transform: rotate(-135deg); }


/* HERO SECTION STYLES */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    box-sizing: border-box;
    padding: 4rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1579783902614-a3fb3927b6a5?q=80&w=2690&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}


.hero-content {
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 9rem;
    line-height: 1;
    margin: 0 0 4rem 0;
    font-weight: 400;
    color: var(--accent-color);
    letter-spacing: -5px;
}

.hero-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.hero-description {
    max-width: 30%;
}

.hero-description h4 {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}

.hero-description p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.hero-socials {
    display: flex;
    gap: 2rem;
}

.hero-socials a {
    font-weight: 500;
}

/* BESPOKE EXPERIENCE SECTION STYLES */
.bespoke-section {
    padding: 8rem 4rem;
    background-color: var(--bg-color);
}

.bespoke-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    align-items: center;
}

.bespoke-text .section-main-title {
    margin-top: 0.5rem;
}

.bespoke-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 2rem 0;
    color: rgba(255, 255, 255, 0.7);
    max-width: 90%;
}

.bespoke-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.bespoke-features li {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.feature-icon {
    color: var(--accent-color);
    margin-right: 0.75rem;
    font-weight: bold;
}

.bespoke-button {
    display: inline-block;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 1.5rem;
}

.bespoke-button:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
}

.bespoke-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* EXHIBITIONS PAGE STYLES */
.exhibitions-section {
    padding: 8rem 4rem;
}

.exhibitions-section .section-title {
    text-align: left;
    margin-bottom: 4rem;
}

.exhibitions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.exhibition-item .exhibition-link {
    display: block;
    text-decoration: none;
}

.exhibition-image {
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.exhibition-image img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.05);
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.exhibition-item:hover .exhibition-image img {
    transform: scale(1);
}

.exhibition-info {
    transition: transform 0.3s ease;
}

.exhibition-item:hover .exhibition-info {
    transform: translateX(10px);
}

.exhibition-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    margin: 0 0 0.5rem 0;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.exhibition-date {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.exhibition-item:hover .exhibition-title {
    color: var(--accent-color);
}

/* PLACEHOLDER PAGE STYLES */
.placeholder-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: calc(100vh - 80px); /* Full height minus header */
    padding: 4rem 0;
}

.placeholder-page h1 {
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.placeholder-page p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

/* CLIENT LOGOS SECTION */
.client-logos-section {
    padding: 6rem 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.client-logos-section .section-subtitle {
    text-align: center;
}

.logos-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.logos-grid img {
    max-height: 40px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.logos-grid img:hover {
    opacity: 1;
}

/* SHOP PAGE STYLES */
.shop-section {
    padding: 8rem 4rem;
}

.shop-section .section-title {
    text-align: left;
    margin-bottom: 4rem;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 4rem 2rem;
}

.shop-item-link {
    display: block;
    text-decoration: none;
}

.shop-item-image {
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.shop-item-image img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1);
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.shop-item:hover .shop-item-image img {
    transform: scale(1.05);
}

.shop-item-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0 0 0.5rem 0;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.shop-item:hover .shop-item-title {
    color: var(--accent-color);
}

.shop-item-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin: 0;
}

/* ARTISTS SECTION */
.artists-section {
    padding: 8rem 4rem;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.artist-image {
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.artist-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.artist-item:hover .artist-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.artist-name {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 500;
    margin: 0 0 0.25rem 0;
    color: var(--text-color);
}

.artist-specialty {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* CONTACT & UPLOAD FORM STYLES */
.contact-section, .upload-section {
    padding: 8rem 4rem;
    position: relative; /* Needed for the background */
}

/* ADDED: Background image for Upload section */
.upload-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/background.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0.15; /* Adjust opacity to make it subtle */
}


.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    margin-top: 4rem;
    align-items: flex-start;
}

.upload-form-container {
    max-width: 800px;
    margin: 4rem auto 0;
    background-color: rgba(26, 26, 26, 0.8); /* Slightly transparent background */
    backdrop-filter: blur(10px); /* Frosted glass effect */
    padding: 3em;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative; /* To stay on top of the background */
    z-index: 1;
}

.form-group {
    margin-bottom: 2em;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.75em;
}

.form-control {
    width: 100%;
    padding: 1em 0;
    font-size: 1.1rem;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background-color: transparent;
    color: var(--text-color);
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
}

textarea.form-control {
    resize: vertical;
    font-family: inherit;
}

.submit-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-color);
    padding: 1em 2.5em;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.submit-button:hover {
    background-color: #f5f5e0; /* Slightly lighter accent */
    transform: translateY(-3px);
}

.contact-info-container {
    padding-top: 1rem;
}

.contact-info-item {
    margin-bottom: 2.5rem;
}

.contact-info-item h4 {
    margin: 0 0 0.5rem 0;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.contact-info-item p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info-item a {
    color: rgba(255, 255, 255, 0.7);
}

.contact-info-item a:hover {
    color: var(--accent-color);
}

/* File Upload Area */
.file-upload-label {
    cursor: pointer;
    display: block;
}

.file-upload-design {
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 3em;
    text-align: center;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.file-upload-design:hover {
    border-color: var(--accent-color);
    background-color: #222;
}

.file-upload-design svg {
    fill: #444;
    transition: fill 0.3s ease;
    margin-bottom: 1em;
}

.file-upload-design:hover svg {
    fill: var(--accent-color);
}

.file-upload-design p {
    margin: 0;
    font-size: 1.1rem;
    color: #888;
}

.file-upload-design p span {
    font-style: italic;
    padding: 0 0.5em;
}

.browse-button {
    display: inline-block;
    margin-top: 1em;
    padding: 0.6em 1.5em;
    background-color: var(--text-color);
    color: var(--bg-color);
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.file-upload-label:hover .browse-button {
    background-color: var(--accent-color);
}

#file-upload {
    display: none;
}

select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23EAEAEA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1em center;
    background-size: 1.2em;
    padding-right: 3em;
}

select.form-control option {
    background: #333; /* Darker background for options */
    color: var(--text-color);
}


/* FOOTER STYLES */
.site-footer {
    padding: 6rem 4rem;
    background-color: #0A0A0A;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 500;
    margin: 0 0 1rem 0;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    max-width: 80%;
}

.footer-column h4 {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 1.5rem 0;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column a, .footer-column p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-column a:hover {
    color: var(--accent-color);
}

.footer-socials {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.footer-bottom {
    margin-top: 6rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* --- RESPONSIVE MEDIA QUERIES --- */

/* Tablet and smaller desktops */
@media (max-width: 1024px) {
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-color);
        display: flex;
        justify-content: center;
        align-items: center;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
        z-index: 1000;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .main-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .main-nav a {
        font-size: 2rem;
    }

    .header-action {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 5rem;
    }

    .hero-description {
        max-width: 60%;
    }

    .bespoke-content, .contact-content {
        grid-template-columns: 1fr;
    }

    .exhibitions-grid, .artists-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Devices */
@media (max-width: 767px) {
    .site-header {
        padding: 1.5rem;
    }

    .container, .hero-section, .bespoke-section, .exhibitions-section, .shop-section, .artists-section, .contact-section, .upload-section, .client-logos-section, .placeholder-page {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: -2px;
    }

    .hero-bottom-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .hero-description {
        max-width: 100%;
    }

    .section-main-title {
        font-size: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-about p {
        max-width: 100%;
    }
    .footer-socials {
        align-items: center;
    }
}

