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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f9fa;
    color: #2c3e50;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
}

/* Navigation */
.nav {
    background: rgba(255, 255, 255, 0.98);
    padding: 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav.scrolled {
    padding: 15px;
    background: rgba(255, 255, 255, 0.95);
}

.nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9em;
    transition: all 0.3s ease;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #ad5389;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1;
    border-radius: 4px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 0;
}

.dropdown-content a {
    color: #2c3e50;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    text-align: left;
    text-transform: none;
    font-weight: 400;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Header */
.header {
    height: 100vh;
    background: linear-gradient(-45deg, #3c1053, #ad5389, #3c1053, #1c0522);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.header-content {
    color: white;
    z-index: 2;
    padding: 20px;
}

.header h1 {
    font-size: 4.5em;
    margin-bottom: 20px;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease;
    color: white;
}

.header p {
    font-size: 1.4em;
    opacity: 0.9;
    margin-bottom: 15px;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

/* Featured Work Section */
.featured-work {
    padding: 100px 20px;
    background: white;
}

.featured-work h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5em;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.collection:hover {
    transform: translateY(-10px);
}

.collection img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.collection:hover img {
    transform: scale(1.05);
}

.collection-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.collection:hover .collection-info {
    transform: translateY(0);
}

/* Latest Exhibition Section */
.latest-exhibition {
    padding: 100px 20px;
    background: #f8f9fa;
    text-align: center;
}

.latest-exhibition h2 {
    margin-bottom: 40px;
    font-size: 2.5em;
}

.exhibition-info {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #ad5389;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 600;
    margin-top: 20px;
}

.btn:hover {
    background: #3c1053;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-social {
    margin-bottom: 20px;
}

.footer-social a {
    color: white;
    font-size: 1.5em;
    margin: 0 15px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    color: #ad5389;
}

/* Animations */
@keyframes gradientBG {
    0% { background-position: 0% 50% }
    50% { background-position: 100% 50% }
    100% { background-position: 0% 50% }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 3em;
    }

    .nav ul {
        gap: 20px;
    }

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

    .dropdown-content {
        position: static;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 2.5em;
    }

    .nav {
        padding: 15px;
    }

    .collection img {
        height: 300px;
    }
}
