/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: #333; line-height: 1.6; }

/* ===== NAVIGATION ===== */
.top-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(30, 30, 50, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
}
.nav-logo {
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 1px;
}
.nav-links { display: flex; gap: 5px; }
.nav-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: all 0.3s;
}
.nav-links a:hover, .nav-links a.active {
    color: white;
    background: rgba(255,255,255,0.1);
}
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #1e1e32 0%, #2d1b4e 40%, #4a1942 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 25px 20px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 120%, rgba(200, 100, 200, 0.1) 0%, transparent 60%);
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
    position: relative;
}
.hero p {
    font-size: 1.2rem;
    opacity: 0.85;
    max-width: 600px;
    margin-bottom: 25px;
    position: relative;
}

/* ===== SECTIONS ===== */
section { padding: 60px 20px; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section-title { font-size: 1.8rem; color: #2d1b4e; text-align: center; margin-bottom: 10px; }
.section-subtitle { text-align: center; color: #777; margin-bottom: 35px; font-size: 1.05rem; }
.alt-bg { background: #f9f7f4; }

/* ===== VENDOR CAROUSEL ===== */
.carousel-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}
.carousel-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
    padding: 20px 0;
}
.carousel-card {
    min-width: 280px;
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.carousel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.carousel-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 15px;
}
.carousel-card .placeholder-logo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #2d1b4e, #4a1942);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
    padding: 10px;
}
.carousel-card h3 { color: #2d1b4e; margin-bottom: 8px; font-size: 1.1rem; }
.carousel-card p { font-size: 0.9rem; color: #666; }

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(45, 27, 78, 0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}
.carousel-btn:hover { background: rgba(45, 27, 78, 1); }
.carousel-btn.prev { left: 5px; }
.carousel-btn.next { right: 5px; }

/* ===== CALENDAR ===== */
.calendar-placeholder {
    max-width: 900px;
    margin: 0 auto;
    background: #f0f0f0;
    border-radius: 12px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.1rem;
    border: 2px dashed #ccc;
}

/* ===== STUDIO INFO ===== */
.studio-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.studio-info-item { text-align: center; }
.studio-info-item .icon { font-size: 1.8rem; margin-bottom: 8px; }
.studio-info-item h4 { color: #2d1b4e; margin-bottom: 4px; }
.studio-info-item a { color: #555; text-decoration: none; }
.studio-info-item a:hover { color: #2d1b4e; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #2d1b4e;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s;
}
.btn:hover { background: #4a1942; transform: translateY(-2px); }

/* ===== FOOTER ===== */
footer {
    background: #1e1e32;
    color: #aaa;
    text-align: center;
    padding: 30px 40px;
    font-size: 0.9rem;
    line-height: 2;
}
footer a { color: #c9a0dc; text-decoration: none; }
footer a:hover { color: white; }

/* ===== VENDOR PAGE ===== */
.vendor-hero {
    background: linear-gradient(135deg, #1e1e32 0%, #2d1b4e 50%, #4a1942 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
}
.vendor-hero h1 { font-size: 2.2rem; margin-bottom: 10px; }
.vendor-hero p { opacity: 0.85; font-size: 1.1rem; }
.vendor-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 20px;
    line-height: 1.8;
    color: #555;
}
.vendor-content h2 { color: #2d1b4e; margin-bottom: 15px; }
.vendor-content p { margin-bottom: 15px; }
.vendor-logo {
    display: block;
    max-width: 220px;
    height: auto;
    margin: 0 auto 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(45,27,78,0.15);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero { height: auto; padding: 60px 20px; }
    .hero h1 { font-size: 2rem; }
    .top-nav { flex-wrap: wrap; }
    .nav-toggle { display: block; }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1e1e32;
        padding: 10px;
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 12px 20px; }
    .carousel-card { min-width: 240px; }
    .studio-info { flex-direction: column; align-items: center; }
}
