/* Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --dark-gold: #B8941F;
    --charcoal: #1a1a1a;
    --light-gray: #f5f5f5;
    --cream: #faf8f5;
}

body {
    font-family: 'Playfair Display', Georgia, serif;
    background: var(--charcoal);
    color: var(--cream);
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--charcoal);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 5px;
}

/* Loading Screen */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--charcoal);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeOut 2s forwards 2s;
}

.loader-text {
    font-size: 3rem;
    letter-spacing: 15px;
    color: var(--gold);
    animation: pulse 1.5s infinite;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        pointer-events: none;
    }
}
@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 30px 50px;
    background: linear-gradient(to bottom, rgba(26,26,26,0.95), transparent);
    z-index: 1000;
    transition: all 0.3s ease;
}
nav.scrolled {
    padding: 20px 50px;
    background: rgba(26,26,26,0.98);
    backdrop-filter: blur(10px);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}
.logo {
    font-size: 2rem;
    letter-spacing: 8px;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}
.logo:hover {
    text-shadow: 0 0 30px rgba(212,175,55,0.5);
}
.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}
.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}
.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at 30% 50%, rgba(212,175,55,0.1) 0%, transparent 50%);
    animation: float 20s infinite ease-in-out;
}
@keyframes float {
    0%, 100% { transform: translate(-10%, -10%) rotate(0deg); }
    50% { transform: translate(10%, 10%) rotate(180deg); }
}
.hero-content {
    text-align: center;
    z-index: 1;
    animation: fadeInUp 1.5s ease;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero h1 {
    font-size: 5rem;
    letter-spacing: 15px;
    margin-bottom: 20px;
    color: var(--cream);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.hero .tagline {
    font-size: 1.2rem;
    letter-spacing: 8px;
    color: var(--gold);
    margin-bottom: 40px;
}
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 3px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: left 0.4s ease;
    z-index: -1;
}
.cta-button:hover {
    color: var(--charcoal);
}
.cta-button:hover::before {
    left: 0;
}

/* Gallery Section */
.gallery {
    padding: 100px 50px;
    background: var(--cream);
    color: var(--charcoal);
}
.section-title {
    text-align: center;
    font-size: 3rem;
    letter-spacing: 10px;
    margin-bottom: 20px;
    color: var(--charcoal);
}
.section-subtitle {
    text-align: center;
    font-size: 1rem;
    letter-spacing: 5px;
    color: var(--dark-gold);
    margin-bottom: 80px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}
.artwork {
    position: relative;
    overflow: hidden;
    background: #000;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.artwork:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.artwork img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.artwork:hover img {
    opacity: 0.7;
    transform: scale(1.1);
}
.artwork-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(26,26,26,0.9), transparent);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.artwork:hover .artwork-info {
    transform: translateY(0);
}
.artwork-title {
    font-size: 1.5rem;
    color: var(--cream);
    margin-bottom: 5px;
}
.artwork-medium {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* Exhibitions Section */
.exhibitions {
    padding: 100px 50px;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}
.exhibitions .section-title {
    color: var(--cream);
}
.exhibition-list {
    max-width: 1000px;
    margin: 0 auto;
}
.exhibition-item {
    padding: 40px;
    margin-bottom: 30px;
    border-left: 3px solid var(--gold);
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.exhibition-item:hover {
    background: rgba(255,255,255,0.05);
    transform: translateX(10px);
}
.exhibition-year {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.exhibition-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--cream);
}
.exhibition-venue {
    color: rgba(250,248,245,0.7);
    letter-spacing: 2px;
}

/* About Section */
.about {
    padding: 100px 50px;
    background: var(--cream);
    color: var(--charcoal);
}
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
}
.about-image {
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}
.about-image:hover img {
    filter: grayscale(0%);
}
.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--charcoal);
    letter-spacing: 5px;
}
.about-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
    font-family: 'Georgia', serif;
}
.awards {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.1);
}
.awards h3 {
    color: var(--dark-gold);
    margin-bottom: 20px;
    letter-spacing: 3px;
}
.award-item {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}
.award-item::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* Contact Section */
.contact {
    padding: 100px 50px;
    background: var(--charcoal);
    text-align: center;
}
.contact-info {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 60px;
}
.contact-item {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 2px;
}
.contact-item:hover {
    color: var(--gold);
}

/* Footer */
footer {
    padding: 30px;
    background: #0a0a0a;
    text-align: center;
    color: rgba(250,248,245,0.5);
    letter-spacing: 2px;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
        letter-spacing: 8px;
    }
    .nav-links {
        gap: 20px;
    }
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    nav {
        padding: 20px;
    }
    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
}
