/* Art Gallery */
:root {
    /* --bg-color: #0a0a0a; */
    --gallery-card-bg-color: #1a1a1a;
    --gallery-text-color: #e0e0e0;

    --gallery-accent-color: #cda45e; 
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Noto Sans KR', sans-serif;
}

[data-theme="dark"] {
    --gallery-card-bg-color: #1a1a1a;
    --gallery-text-color: #e0e0e0;
}

.custom-cursor {
    width: 20px;
    height: 20px;
    border: 1px solid var(--gallery-accent-color);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none; 
    z-index: 9999;
    transition: transform 0.1s ease-out, background-color 0.2s, border-color 0.2s;
}

body:has(a:hover, button:hover) .custom-cursor {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: var(--gallrey-accent-color);
    border-color: transparent;
}



#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}


main .content-wrapper {
    position: relative;
    z-index: 1;
}

.gallery1  .card {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5vw;   
    position: sticky;
    top: 0;    
    background-color: var(--gallery-card-bg-color);
    border-bottom: 1px solid #333;
    transition: transform 0.5s ease-out;
}

.gallery1 .card:not(:first-child) {
    margin-top: -1px; /
}


.gallery1 .card h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 8vw, 6rem); 
    font-weight: 300;
    color: var(--gallery-text-color);
    margin-bottom: 1rem;
}

.gallery1 .about .card h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 400;
      color: var(--gallery-text-color);
    margin-bottom: 1.5rem;
}

.gallery1 .card p {
    max-width: 600px;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.8;
    color: var(--gallery-text-color);
}

.gallery1 .showcase .gallery {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.gallery1 .gallery-item {
    width: 150px;
    height: 200px;
    background-color: #2a2a2a;
    border: 1px solid #444;
    transition: transform 0.3s ease;
}
.gallery1 .gallery-item:hover {
    transform: scale(1.05);
    border-color: var(--gallery-accent-color);
}


.contact-link {
    font-size: 1.5rem;
    color: var(--gallery-accent-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}
.contact-link:hover {
    border-color: var(--gallery-accent-color);
}