/* =============================================
   Renaissance Collective — Shared Styles
   ============================================= */

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

body {
    font-family: 'Georgia', serif;
    background: #0a0a0a;
    color: #e8e8e8;
    line-height: 1.8;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 5%;
    z-index: 1000;
    border-bottom: 1px solid rgba(232, 232, 232, 0.1);
}

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

.logo {
    font-size: 1.2rem;
    font-weight: normal;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.logo a {
    color: #e8e8e8;
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

nav a {
    color: #e8e8e8;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.6;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    background: none;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.2rem;
    font-style: italic;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Sections */
section {
    max-width: 900px;
    margin: 0 auto;
    padding: 8rem 5%;
}

h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 3rem;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(232, 232, 232, 0.2);
    padding-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Mission & Vision */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.mission-vision h3 {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

/* Artists Grid */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.artist-card {
    border: 1px solid rgba(232, 232, 232, 0.1);
    padding: 2rem;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: #e8e8e8;
}

.artist-card:hover {
    border-color: rgba(232, 232, 232, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.artist-card h3 {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.artist-card h3 a {
    color: #e8e8e8;
    text-decoration: none;
}

.artist-card .discipline {
    font-size: 0.9rem;
    opacity: 0.6;
    font-style: italic;
    margin-bottom: 1rem;
}

/* Contact */
.contact-info {
    text-align: center;
    margin-top: 3rem;
}

.contact-info a {
    color: #e8e8e8;
    text-decoration: none;
    border-bottom: 1px solid rgba(232, 232, 232, 0.3);
    transition: opacity 0.3s;
}

.contact-info a:hover {
    opacity: 0.6;
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 5%;
    border-top: 1px solid rgba(232, 232, 232, 0.1);
    font-size: 0.9rem;
    opacity: 0.6;
    letter-spacing: 1px;
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }

    nav ul.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .mission-vision {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    h2 {
        font-size: 2rem;
    }
}
