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

/* body {
    font-family: Arial, sans-serif;
    background-color: #faf9f7;
    color: var(--dark-mid);
    line-height: 1.4; 
    overflow-x: hidden;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.7' numOctaves='10' seed='1'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.2'/%3E%3C/svg%3E");
} */
:root {
    --bg: #0B0B10;
    --surface: #13131A;
    --surface-alt: #171721;
    --panel: #1f1f2b;
    --panel-alt: #3a3a4a;
    --panel-alt-2: #5a5a6e;
    --border: #252633;
    --border-light: #dcdce6;
    --light-bg: #f8f8f8;
    --light-surface: #f0f0f0;
    --light-surface-alt: #e0e0e0;
    --text: #F5F5F7;
    --text-muted: #A4A7B9;
    --text-muted-strong: #666666;
    --text-muted-darker: #4a4a4a;
    --text-muted-light: #ccc;
    --dark-mid: #333333;
    --accent-link: #005fbd;
    --accent: #5094d8;
    --accent-alt: #FFB347;
    --accent-bright: #3fb5ff;
    --gradient-start: #05050A;
    --gradient-end: #1C1C2A;
    --gradient-dark: #000000;
    --availability-green: #62d062;
    --overlay-light: #d4d4d4;
    --nav-bg: rgba(10, 10, 15, 0.92);
    --nav-border: rgba(255, 255, 255, 0.05);
    --nav-mobile-bg: rgba(10, 10, 15, 0.97);
    --nav-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
    --hero-gradient: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
}

html {
    background-color: var(--bg);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif, 'Sans Serif', Icons;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}

h1, h2, h3, h4, h5, h6,
p, li, span, label, input, textarea, select, small {
    color: var(--text);
}

:root.light-theme,
body.light-theme {
    --bg: var(--light-bg);
    --surface: var(--light-surface);
    --surface-alt: var(--light-surface-alt);
    --panel: var(--light-surface);
    --panel-alt: var(--light-surface-alt);
    --panel-alt-2: var(--light-surface-alt);
    --text: var(--dark-mid);
    --text-muted: var(--text-muted-darker);
    --text-muted-light: var(--text-muted-strong);
    --border: var(--border-light);
    --nav-bg: rgba(255, 255, 255, 0.95);
    --nav-border: rgba(33, 33, 33, 0.08);
    --nav-mobile-bg: rgba(255, 255, 255, 0.9);
    --nav-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    --hero-gradient: linear-gradient(135deg, var(--light-surface-alt) 0%, var(--light-bg) 100%);
}

a {
    /* color: var(--accent-alt); */
    color: var(--accent-link);
    transition: color 0.2s ease;
}

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

/* Navigation Styles */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--nav-bg);
    background-color: var(--nav-bg);
    box-shadow: var(--nav-shadow);
    backdrop-filter: blur(14px);
    z-index: 1000;
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--nav-border);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.logo a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.logo-icon {
    height: 36px;
    width: auto;
    object-fit: contain;
    display: inline-block;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}

.nav-links {
    display: flex;
    gap: 1.25rem;
    list-style: none;
    position: relative;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
}

.nav-links li {
    display: inline-block;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.theme-toggle-wrapper {
    margin: 0;
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 25px;
    border-radius: 50%;
    border: 1px solid var(--text);
    background: transparent;
    color: var(--text);
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
    background: rgba(255, 255, 255, 0.1);
}

.nav-links a,
.nav-links .dropdown-toggle {
    text-decoration: none;
    color: var(--text);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-links .dropdown-toggle {
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    cursor: pointer;
}

.theme-toggle {
    border: 1px solid var(--text);
    background: transparent;
    color: var(--text);
    border-radius: 999px;
    padding: 0.35rem 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    /* letter-spacing: 0.2em; */
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
    background: rgba(255, 255, 255, 0.1);
}

.theme-toggle[aria-pressed="true"] {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg);
}

.nav-links a:hover,
.nav-links a.active,
.nav-links .dropdown-toggle:hover,
.nav-links .dropdown-toggle.active,
.nav-links .dropdown-toggle:focus-visible {
    color: var(--accent);
}

.nav-links .has-dropdown > a::after,
.nav-links .has-dropdown > .dropdown-toggle::after {
    content: '▾';
    margin-left: 0.35rem;
    font-size: 0.7em;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    min-width: 180px;
    padding: 0.5rem 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    z-index: 20;
}

.dropdown-menu a {
    padding: 0.5rem 1rem;
    color: var(--text);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    display: block;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background: rgba(0, 41, 81, 0.2);
    color: var(--accent);
}

.nav-links .has-dropdown:hover > .dropdown-menu,
.nav-links .has-dropdown:focus-within > .dropdown-menu {
    display: flex;
}

.nav-links .has-dropdown.open > .dropdown-menu {
    display: flex;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: var(--dark-mid);
    margin: 3px 0;
    transition: 0.3s;
}


/* Main Container */
.main-container {
    padding-top: 80px;
    padding-bottom: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    background-color: var(--bg);
}

/* Carousel section used on the home page */
.home-carousel-section {
    padding: 4rem 0 3rem;
}

.carousel-header {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-eyebrow {
    letter-spacing: 0.6em;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--subtext);
    margin-bottom: 0.5rem;
}

.about-page p {
    font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: none;
}

.about-page .about-text p {
    margin-bottom: 1.5rem;
}

.carousel-header h1 {
    font-size: clamp(2rem, 2.5vw, 3rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.carousel-description,
.portfolio-description {
    color: var(--text-muted-darker);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 auto;
}

.carousel-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.carousel-track-wrapper {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
    padding-top: 0.5rem;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-track {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-card {
    flex: 0 0 calc((100% - 3rem) / 3);
    border-radius: 12px;
    overflow: hidden;
    scroll-snap-align: start;
    position: relative;
    min-height: 360px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.carousel-card:hover {
    cursor: url('images/about/cursor_small.png') 6 6, pointer;
    transform: translateY(-4px);
    transition: transform 0.25s ease;
}

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

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: none;
    background: rgba(19, 19, 26, 0.9);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
    z-index: 2;
}

.carousel-control:hover {
    background: var(--accent);
    transform: translateY(-50%) scale(1.05);
}

.carousel-control:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-control.prev {
    left: -10px;
}

.carousel-control.next {
    right: -10px;
}

.carousel-actions {
    text-align: center;
    margin-top: 1.5rem;
}

.carousel-actions .more-link {
    letter-spacing: 0.3em;
    padding: 1rem 2.5rem;
}

@media (max-width: 1100px) {
    .carousel-card {
        flex: 0 0 calc((100% - 2rem) / 2);
    }
}

@media (max-width: 720px) {
    .carousel-card {
        flex: 0 0 calc(100% - 1rem);
    }

    .carousel-header h1 {
        letter-spacing: 0.1em;
    }

    .carousel-control {
        display: none;
    }
}

/* Artwork Grid */
.artwork-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

/* Removed scroll optimizations that were causing conflicts */

/* Responsive optimizations */
@media (max-width: 768px) {
    .artwork-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
        padding: 1rem 0;
    }

    .artwork-link img {
        height: 250px;
    }
}

/* Loading state */
.loading-grid {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 500;
}

.artwork-link {
    position: relative;
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
    overflow: hidden;
    border-radius: 4px;
}

.artwork-link:hover {
    transform: translateY(-5px);
    cursor: url('images/about/cursor_small.png') 6 6, pointer;
}

.artwork-link img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: top center;
    display: block;
}


.artwork-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(0);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.artwork-link:hover .artwork-overlay {
    opacity: 0.3;
}

.artwork-overlay small {
    color: var(--text-muted);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
}

/* Individual Artwork Page Styles */
.artwork-detail-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.artwork-detail-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 3rem 1rem;
}

.artwork-detail-overlay.is-visible {
    display: flex;
}

.artwork-detail-overlay .artwork-viewer {
    padding: 0;
    width: 100%;
}

.overlay-close {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--accent);
    border: none;
    border-radius: 999px;
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    z-index: 2100;
}

.overlay-close:hover {
    transform: scale(1.05);
    background: var(--accent-alt);
}

.nav-arrow:disabled {
    opacity: 0.35;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
    cursor: not-allowed;
    border-color: transparent;
}

.overlay-status {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    background: rgba(0, 41, 81, 0.8);
    color: var(--text);
    opacity: 0;
    pointer-events: none;
    letter-spacing: clamp(0.2em, 0.8vw, 0.4em);
    text-transform: uppercase;
    font-size: clamp(0.65rem, 1.4vw, 0.95rem);
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.overlay-status.status-visible {
    opacity: 1;
}

:root.light-theme .overlay-status,
body.light-theme .overlay-status {
    background: var(--accent);
    color: #ffffff;
}

body.overlay-open {
    overflow: hidden;
}

.artwork-viewer {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 2rem 80px;
    position: relative;
}

.artwork-container {
    position: relative;
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.artwork-container img {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    /* transition: opacity 0.4s ease, filter 0.4s ease; */
}

/* Navigation Arrows */
.nav-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.1);
    border: none;
    color: var(--dark-mid);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 500;
}

.nav-arrow:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.nav-arrow:disabled:hover {
    transform: translateY(-50%) scale(1);
    background: rgba(0, 0, 0, 0.1);
}

.nav-arrow.prev {
    left: 2rem;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--text);
}

.nav-arrow.next {
    right: 2rem;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--text);
}

/* Page Header Styles */
.page-header {
    padding: 2px 0 60px;
    text-align: center;
    /* background: linear-gradient(135deg, #faf9f7 0%, #f5f3f0 100%); */
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--dark-mid);
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Container Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0.5rem;
}

/* About Page Styles */
.about-content {
    padding: 40px 0;
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: start;
}

.about-text h2 {
    font-size: 2rem;
    /* margin: auto 0; */
    margin-bottom: 1.5rem;
    color: var(--dark-mid);
}

.about-text h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--dark-mid);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text);
    /* color:var(--subtext); */
    font-weight: 200;
}
.about-text {
    margin: auto 0;

}

.about-links {
    display: inline-flex;
    gap: 1rem;
    margin-top: 1rem;
}

.about-links a {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
    color: var(--text);
}

.about-links svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: currentColor;
}

.about-links a:hover,
.about-links a:focus-visible {
    border-color: var(--accent);
    background: var(--accent);
    transform: translateY(-2px);
    color: var(--bg);
}

.about-image {
    text-align: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */

}

.image-caption {
    margin-top: 1rem;
    font-style: italic;
    color: var(--text-muted);
}

.personal-section {
    padding: 60px 0;
    background: var(--light-bg);
    /* background: transparent !important; */

}

.personal-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-mid);
}

.personal-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-muted-strong);
}

.cta-section {
    background: var(--dark-mid);
    color: var(--text);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 3rem;
}

.cta-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
    color: var(--text-muted-light);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text);
}

.btn-primary {
    /* background: var(--accent); */
    background-color: var(--text);
    color: var(--bg);
}

.btn-primary:hover {
    /* background: var(--accent-alt); */
      background: var(--accent);

    transform: translateY(-2px);
    color: var(--text);
}

.btn-secondary {
    background: transparent;
    /* color: var(--accent); */
    color: var(--text);
    /* border: 2px solid var(--accent); */
        border: 2px solid var(--text);

}

.btn-secondary:hover {
    /* background: var(--accent); */
    /* background: var(--text); */
        background: var(--accent);

    /* color: var(--bg); */
    color: var(--text);
    border: 2px solid var(--accent);

}

/* Contact Page Styles */
.contact-form-section {
    padding: 60px 0 80px;
    background: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text);
}

.contact-form {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--subtext);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.65rem;
    transition: border-color 0.3s ease, background 0.3s ease;
    background: var(--surface-alt);
    color: var(--text);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--subtext);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 92, 138, 0.25);
}

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

.contact-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.contact-card p {
    line-height: 1.6;
    color: var(--subtext);
    margin-bottom: 1rem;
}

.contact-card ol,
.contact-card ul {
    padding-left: 1.5rem;
}

.contact-card li {
    margin-bottom: 0.5rem;
    color: var(--subtext);
}

.additional-contact {
    padding: 60px 0;
    background: var(--surface-alt);
    text-align: center;
}

.social-contact h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.social-contact p {
    font-size: 1.1rem;
    color: var(--subtext);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border: 2px solid var(--accent);
    border-radius: 999px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent);
    color: var(--bg);
}

.contact-faq {
    padding: 60px 0;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text);
}

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

.faq-item {
    background: var(--surface);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.45);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.faq-item p {
    line-height: 1.6;
    color: var(--subtext);
}

/* Shop Page Styles */
.coming-soon-section {
    padding: 60px 0;
    text-align: center;
}

.coming-soon-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    /* color: var(--dark-mid); */
}

.lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.shop-features {
    margin: 3rem 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    justify-items: center;
}

.feature-item {
    background: var(--text);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;

    background: var(--surface);
    border-radius: 16px;
    /* padding: 40px; */
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    /* color: var(--dark-mid); */
    color: var(--text);
}

.feature-item p {
    /* color: var(--text-muted-strong); */
    line-height: 1.6;
    color: var(--subtext);

}

.notify-signup {
    background: var(--surface)    ;
    color: var(--text);
    padding: 3rem;
    border-radius: 8px;
    margin: 3rem 0;
}

.notify-signup h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.notify-signup p {
    margin-bottom: 2rem;
    color: var(--text-muted-light);
}

.notify-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.notify-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    color: var(--dark-mid);
}

.current-options {
    padding: 60px 0;
    background: var(--light-bg);
}

.services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 12px 0 20px;
    justify-content: center;
}

.service-tag {
    background: var(--light-surface);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--dark-mid);
    transition: background 0.2s;
}

.service-tag:hover {
    background: var(--light-surface-alt);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--text);
    color: var(--text);
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}

.cta-button:hover {
    /* background: ; */
    color: var(--text)
}

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

.option-card {
    background: var(--text);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.option-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-mid);
}

.option-card p {
    color: var(--text-muted-strong);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.option-card .services {
    margin-bottom: 2rem;
}

.option-card .cta-button {
    margin-top: 0.5rem;
}

.option-card ul {
    text-align: left;
    margin-bottom: 2rem;
}

.option-card li {
    margin-bottom: 0.5rem;
    color: var(--text-muted-strong);
}

.pricing-info {
    padding: 60px 0;
}

.pricing-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.pricing-card {
    background: var(--text);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--dark-mid);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-mid);
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--dark-mid);
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-card li {
    margin-bottom: 0.5rem;
    color: var(--text-muted-strong);
}

.pricing-note {
    text-align: center;
    font-style: italic;
    color: var(--text-muted);
    margin-top: 2rem;
}

.faq-section {
    padding: 60px 0;
    background: var(--light-bg);
}

/* Gallery Page Styles */
.gallery-section {
    padding: 60px 0;
}

.gallery-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--dark-mid);
    background: transparent;
    color: var(--dark-mid);
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--dark-mid);
    color: var(--text);
}

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

.artwork-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.artwork-item:hover {
    transform: translateY(-5px);
}

.artwork-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: top center;
    display: block;
}


.artwork-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.artwork-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-light);
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(0);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.artwork-item:hover .artwork-overlay {
    opacity: 1;
}

.artwork-info h3 {
    color: var(--dark-mid);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-align: center;
}

.artwork-info p {
    color: var(--text-muted-light);
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
}

/* Footer Styles */
footer {
    background: var(--dark-mid);
    color: var(--text);
    text-align: center;
    padding: 2rem 0;
}

footer p {
    margin: 0;
    color: var(--text-muted-light);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--nav-mobile-bg);
        backdrop-filter: blur(18px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        gap: 2rem;
    }

    .nav-links li {
        width: 100%;
        justify-content: center;
    }

    .theme-toggle-wrapper {
        width: 100%;
        justify-content: center;
    }

    .theme-toggle {
        width: 90%;
        height: 52px;
        border-radius: 12px;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a,
    .nav-links .dropdown-toggle {
        font-size: 1.2rem;
        padding: 1rem;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        border: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        align-items: stretch;
    }

    .dropdown-menu a {
        font-size: 1rem;
        padding: 0.4rem 1.5rem;
    }


    .artwork-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem 0;
    }

    .artwork-link img,
    .artwork-item img {
        height: 250px;
    }


    .main-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .nav-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .nav-arrow.prev {
        left: 1rem;
    }

    .nav-arrow.next {
        right: 1rem;
    }

    .marquee {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .artwork-viewer {
        padding: 80px 1rem 80px;
    }

    /* Page Header Mobile */
    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    /* About Page Mobile */
    .about-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .about-text h3 {
        font-size: 1.3rem;
    }

    /* Contact Page Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .social-links {
        gap: 1rem;
    }

    .social-link {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    /* Shop Page Mobile */
    .coming-soon-content h2 {
        font-size: 2rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .notify-form {
        flex-direction: column;
        gap: 1rem;
    }

    .options-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    /* Gallery Mobile */
    .gallery-nav {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Container Mobile */
    .container {
        padding: 0 1rem;
    }
}

/* Contact Page Hero + Services */
.hero-section {
    background: var(--hero-gradient);
    color: var(--text);
    padding: 80px 20px;
    text-align: center;
}

.cta-about .container {
    /* margin-top: 60px; */
}

.cta-about {
    /* background: linear-gradient(135deg, var(--gradient-start) 0%, #141420 100%); */
    /* background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%); */
    background-color:var(--surface)    ;
    color: var(--text);
    padding: 60px 20px;
    text-align: center;
}

.cta-about h1 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: bold;
}

.cta-about p {
    font-size: 18px;
    /* color: rgba(255, 255, 255, 0.9); */
    color: var(--subtext);
    margin-bottom: 24px;
    line-height: 1.6;
}

.cta-about .btn-primary {
    background: var(--text);
    color: var(--bg);
    padding: 14px 36px;
    border-radius: 8px;
    border: none;
}

.cta-about .btn-primary:hover {
    background: var(--accent);
    color: var(--text);
}

.personal-section .cta-section h1 {
    font-size: 32px;
    margin-bottom: 16px;
}

.personal-section .cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    line-height: 1.6;
}

.hero-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--text);
}

.hero-section p {
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    color: var(--subtext);
}

.hero-section .container {
    margin-top: 60px;
}

body.contact-page {
    width: 100%;
    max-width: 100vw;
    min-width: 100vw;
    position: relative;
    overflow-x: hidden;
}

body.contact-page section,
body.contact-page .container {
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    padding-left: clamp(1rem, 2vw, 2.5rem);
    padding-right: clamp(1rem, 2vw, 2.5rem);
    margin-left: auto;
    margin-right: auto;
}

body.contact-page .services-section,
body.contact-page .process-section,
body.contact-page .contact-section,
body.contact-page .contact-faq {
    overflow: hidden;
}

body.contact-page .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(1.5rem, 2vw, 3rem);
}

body.contact-page .process-timeline {
    padding-inline: clamp(0.5rem, 2vw, 1rem);
}

body.contact-page .contact-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(1.5rem, 3vw, 3rem);
}

.services-section {
    padding: 80px 20px;
    /* background: var(--surface-alt);
     */
     background: var(--bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: var(--surface);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-card .service-tags {
    justify-content: center;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text);
}

.service-card p {
    color: var(--subtext);
    margin-bottom: 25px;
    line-height: 1.8;
}

.service-card {
    min-height: 100%;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
    justify-content: center;
}

.service-card {
    min-height: 100%;
    max-width: 100%;
}

.service-tag {
    background: var(--surface-alt);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--text);
    /* color: var(--accent); */
}

.process-section {
    padding: 80px 20px;
    background: var(--surface);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 70px;
    bottom: -40px;
    width: 2px;
    background: var(--border);
}

.process-step:last-child::before {
    display: none;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    /* background: linear-gradient(135deg, var(--accent), var(--accent-alt)); */
    background: linear-gradient(135deg, var(--gradient-dark), var(--accent-bright));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-bg);
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.35);
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
    padding-top: 8px;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text);
}

.step-content p {
    color: var(--subtext);
    line-height: 1.8;
}



.contact-section {
    padding: 80px 20px;
    /* background: var(--light-bg);
     */
     background-color: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    background: var(--surface);
    padding: 50px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.45);
}

.contact-form form {
    display: flex;
    flex-direction: column;
}
.custom-dropdown {
    position: relative;
    width: 100%;
    line-height: 1;
}

.dropdown-selected {
    width: 100%;
    padding: 14px 18px;
    /* padding-right: 45px; */
    border: 1px solid var(--border);
    background: var(--surface-alt);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dropdown-selected:hover {
    background: var(--panel);
}

.dropdown-selected.active {
    background: var(--surface);
    /* background-color: ; */
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--surface-alt);;
}

.dropdown-selected span {
    color: var(--text);
}

.dropdown-selected.placeholder span {
    color: var(--subtext);
}

.dropdown-arrow {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--subtext);
    transition: all 0.3s ease;
}

.dropdown-selected:hover .dropdown-arrow {
    border-top-color: var(--text);
}

.dropdown-selected.active .dropdown-arrow {
    border-top-color: var(--accent);
    transform: rotate(180deg);
}

.dropdown-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--surface);
    border-radius: 10px;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.45);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown-options.show {
    max-height: 300px;
    opacity: 1;
    overflow-y: auto;
}

.dropdown-option {
    padding: 12px 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 15px;
    color: var(--text);
}

.dropdown-option:hover {
    background: var(--panel);
}

.dropdown-option.selected {
    background: var(--accent);
    color: var(--bg);
}

.dropdown-option:first-child {
    border-radius: 10px 10px 0 0;
}

.dropdown-option:last-child {
    border-radius: 0 0 10px 10px;
}

.dropdown-options::-webkit-scrollbar {
    width: 6px;
}

.dropdown-options::-webkit-scrollbar-track {
    background: transparent;
}

.dropdown-options::-webkit-scrollbar-thumb {
    background: var(--panel-alt);
    border-radius: 10px;
}

.dropdown-options::-webkit-scrollbar-thumb:hover {
    background: var(--panel-alt-2);
}

.contact-form h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--text);
}

.form-group {
    margin-bottom: 25px;
    position: relative;

}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--subtext);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease, background 0.3s ease;
    background: var(--surface-alt);
    color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 92, 138, 0.2);
}

.form-group textarea {
    resize: vertical;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: var(--surface);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.45);
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text);
}

.info-card ul {
    list-style: none;
    padding-left: 0;
}

.info-card ul li {
    padding: 8px 0;
    color: var(--subtext);
    position: relative;
    padding-left: 25px;
}

.info-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    /* color: var(--accent); */
    color: var(--text);
    font-weight: bold;
}

.info-card p {
    /* color: var(--text-muted); */
    color:  var(--subtext);
    line-height: 1.8;
    margin-bottom: 10px;
}

.info-card strong {
color: var(--text)}

.availability-badge {
    display: inline-block;
    /* background: #e7f5e7; */
    /* background-color: #292d29; */
    /* color: #2d7a2d; */
color:var(--availability-green);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 10px;
    border: 1px solid var(--text);
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-sidebar {
        order: 1;
    }

    .contact-form {
        order: 2;
        padding: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .contact-form {
        padding: 20px;
    }

    .contact-form h2 {
        font-size: 24px;
    }

    .contact-form button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 1rem 1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 1rem;
    }

    .mobile-menu span {
        width: 20px;
        height: 2px;
    }

    .artwork-grid {
        gap: 1rem;
    }

    .artwork-link img,
    .artwork-item img {
        height: 200px;
    }


    .artwork-overlay small {
        font-size: 1rem;
    }
}
.portfolio-grid-header {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 4rem;

}

.portfolio-grid-header h1 {
    font-size: clamp(2rem, 2.5vw, 3rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
