@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&family=Playfair+Display:wght@400;700;900&family=Oswald:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #502F85;
    --primary-light: #825795;
    --primary-dark: #2C1083;
    --primary-darker: #1a0a4e;
    --accent: #61CE70;
    --yellow: #F6DD37;
    --yellow-dark: #e6c820;
    --text: #2d2d2d;
    --text-gray: #5a5a6e;
    --text-light: #8888a0;
    --white: #ffffff;
    --bg-light: #f8f7fc;
    --bg-warm: #fdf8f0;
    --max-width: 1200px;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow-sm: 0 4px 15px rgba(80,47,133,0.08);
    --shadow-md: 0 8px 30px rgba(80,47,133,0.12);
    --shadow-lg: 0 20px 60px rgba(80,47,133,0.18);
    --shadow-glow: 0 0 40px rgba(246,221,55,0.3);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.25;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }

::selection {
    background: var(--primary);
    color: var(--white);
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(80,47,133,0.1);
    transition: var(--transition);
}

.site-header.header-transparent {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}

.site-header.header-transparent .header-logo { color: var(--white); }
.site-header.header-transparent .main-nav a { color: rgba(255,255,255,0.85); }
.site-header.header-transparent .main-nav a:hover,
.site-header.header-transparent .main-nav a.active {
    color: var(--white);
    background: rgba(255,255,255,0.15);
}
.site-header.header-transparent .menu-toggle {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.site-header.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(80,47,133,0.1);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.header-logo {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--white);
    letter-spacing: 3px;
    transition: var(--transition);
}

.site-header.scrolled .header-logo { color: var(--primary); }

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 5px;
}

.main-nav a {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    padding: 10px 18px;
    border-radius: 25px;
    position: relative;
    letter-spacing: 0.5px;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--white);
    background: rgba(255,255,255,0.15);
}

.site-header.scrolled .main-nav a { color: var(--text-gray); }
.site-header.scrolled .main-nav a:hover,
.site-header.scrolled .main-nav a.active {
    color: var(--primary);
    background: rgba(80,47,133,0.08);
}

.menu-toggle {
    display: none;
    background: rgba(255,255,255,0.2);
    border: none;
    width: 45px; height: 45px;
    border-radius: 12px;
    font-size: 1.2rem;
    color: var(--white);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.site-header.scrolled .menu-toggle {
    background: rgba(80,47,133,0.08);
    color: var(--primary);
}

/* ===== HERO MAIN ===== */
.hero-main {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(160deg, #0d0525 0%, #1a0a4e 20%, #2C1083 40%, #502F85 60%, #825795 80%, #502F85 100%);
}

.hero-main::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(246,221,55,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(130,87,149,0.3) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(246,221,55,0.05) 0%, transparent 50%);
    animation: heroPulse 10s ease-in-out infinite;
}

@keyframes heroPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(246,221,55,0.08) 0%, transparent 70%);
    animation: glowRotate 15s linear infinite;
    pointer-events: none;
}

@keyframes glowRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-particles {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-particles span {
    position: absolute;
    width: 4px; height: 4px;
    background: rgba(246,221,55,0.4);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

.hero-particles span:nth-child(1) { left: 10%; top: 20%; animation-duration: 12s; animation-delay: 0s; width: 3px; height: 3px; }
.hero-particles span:nth-child(2) { left: 20%; top: 70%; animation-duration: 15s; animation-delay: 1s; width: 5px; height: 5px; }
.hero-particles span:nth-child(3) { left: 35%; top: 40%; animation-duration: 10s; animation-delay: 2s; }
.hero-particles span:nth-child(4) { left: 50%; top: 80%; animation-duration: 18s; animation-delay: 0.5s; width: 6px; height: 6px; opacity: 0.6; }
.hero-particles span:nth-child(5) { left: 65%; top: 15%; animation-duration: 14s; animation-delay: 3s; width: 3px; height: 3px; }
.hero-particles span:nth-child(6) { left: 75%; top: 60%; animation-duration: 11s; animation-delay: 1.5s; }
.hero-particles span:nth-child(7) { left: 85%; top: 30%; animation-duration: 16s; animation-delay: 2.5s; width: 5px; height: 5px; }
.hero-particles span:nth-child(8) { left: 15%; top: 90%; animation-duration: 13s; animation-delay: 0.8s; }
.hero-particles span:nth-child(9) { left: 45%; top: 10%; animation-duration: 17s; animation-delay: 1.8s; width: 4px; height: 4px; }
.hero-particles span:nth-child(10) { left: 90%; top: 50%; animation-duration: 12s; animation-delay: 3.5s; width: 3px; height: 3px; }

@keyframes particleFloat {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) scale(0.5); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 30px 80px;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.hero-logo {
    display: inline-block;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease forwards;
    filter: drop-shadow(0 0 30px rgba(246,221,55,0.25));
}

.hero-logo img {
    width: 240px;
    height: auto;
    transition: var(--transition);
}

.hero-logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 40px rgba(246,221,55,0.4));
}

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

.hero-title {
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

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

.hero-line-1 {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 12px;
    margin-bottom: 5px;
}

.hero-line-2 {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: var(--white);
    letter-spacing: 6px;
    margin-bottom: 10px;
}

.hero-year {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 7rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--yellow) 0%, #ffd700 30%, var(--yellow) 60%, #ffed4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 30px rgba(246,221,55,0.4));
    animation: yearPulse 3s ease-in-out infinite;
}

@keyframes yearPulse {
    0%, 100% { filter: drop-shadow(0 4px 30px rgba(246,221,55,0.4)); }
    50% { filter: drop-shadow(0 4px 50px rgba(246,221,55,0.6)); }
}

.hero-dates {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-date-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 35px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.hero-date-box:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(246,221,55,0.3);
    transform: translateY(-3px);
}

.date-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 3px;
    margin-bottom: 2px;
}

.date-day {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: var(--white);
    line-height: 1;
}

.date-month {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    color: var(--yellow);
    letter-spacing: 3px;
}

.hero-date-separator {
    color: var(--yellow);
    font-size: 1.5rem;
    animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(8px); }
}

.hero-tagline {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.hero-btn:hover::before { left: 100%; }

.hero-btn.primary {
    background: linear-gradient(135deg, var(--yellow), #ffd700);
    color: var(--primary-dark);
    box-shadow: 0 8px 30px rgba(246,221,55,0.3);
}

.hero-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(246,221,55,0.4);
}

.hero-btn.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.hero-btn.secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-3px);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 0.8s ease 1s both;
}

.hero-scroll span {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, rgba(246,221,55,0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 40px; }
    50% { opacity: 1; height: 55px; }
}

.hero-deco-left,
.hero-deco-right {
    position: absolute;
    width: 300px; height: 300px;
    border: 1px solid rgba(246,221,55,0.08);
    border-radius: 50%;
    pointer-events: none;
}

.hero-deco-left {
    top: 10%; left: -100px;
    animation: decoSpin 30s linear infinite;
}

.hero-deco-right {
    bottom: 10%; right: -100px;
    animation: decoSpin 25s linear infinite reverse;
}

@keyframes decoSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== HOME ACTIONS ===== */
.home-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.home-actions::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.action-box {
    padding: 70px 50px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.action-box:hover {
    background: rgba(255,255,255,0.05);
}

.action-box:last-child { border-right: none; }

.action-box h2 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.action-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--yellow) 0%, #ffd700 100%);
    border-radius: 50%;
    color: var(--primary-dark);
    font-size: 2rem;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(246,221,55,0.3);
}

.action-icon:hover {
    transform: translateY(-5px) scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

/* ===== HOME CENTRAL ===== */
.home-central {
    background: var(--white);
    padding: 60px 20px;
    text-align: center;
    position: relative;
}

.home-central::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 100px; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--yellow));
    border-radius: 2px;
}

.central-image {
    position: relative;
    display: inline-block;
}

.central-image::before {
    content: '';
    position: absolute;
    top: -20px; left: -20px; right: -20px; bottom: -20px;
    background: linear-gradient(135deg, rgba(80,47,133,0.1), rgba(246,221,55,0.1));
    border-radius: 20px;
    z-index: -1;
}

.central-image img {
    max-width: 900px;
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

/* ===== HOME PHOTOS ===== */
.home-photos {
    background: var(--bg-light);
    padding: 60px 20px 80px;
    text-align: center;
}

.photos-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 35px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.photos-slider {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.photos-track {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
}

.photo-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: scale(1.03);
}

.photo-slide.active {
    opacity: 1;
    transform: scale(1);
}

.photo-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    width: 50px; height: 50px;
    border-radius: 50%;
    font-size: 1rem;
    color: var(--white);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.photo-arrow:hover {
    background: rgba(255,255,255,0.4);
    transform: translateY(-50%) scale(1.1);
}

.photo-arrow.prev { left: 20px; }
.photo-arrow.next { right: 20px; }

.photo-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.photo-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 2px solid rgba(255,255,255,0.6);
    cursor: pointer;
    transition: var(--transition);
}

.photo-dot.active {
    background: var(--yellow);
    border-color: var(--yellow);
    box-shadow: 0 0 12px rgba(246,221,55,0.5);
    transform: scale(1.2);
}

/* ===== HOME CAROUSEL ===== */
.home-carousel {
    background: var(--bg-light);
    padding: 40px 20px 80px;
    position: relative;
}

.carousel-container {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-item {
    min-width: 320px;
    height: 220px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.carousel-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.carousel-item:hover img { transform: scale(1.08); }

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: none;
    width: 50px; height: 50px;
    border-radius: 50%;
    color: var(--primary);
    font-size: 1rem;
    cursor: pointer;
    z-index: 5;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.carousel-arrow:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev { left: 15px; }
.carousel-arrow.next { right: 15px; }

/* ===== HOME CTA ===== */
.home-cta {
    background: linear-gradient(135deg, var(--yellow) 0%, #ffd700 50%, var(--yellow) 100%);
    padding: 70px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.home-cta::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 300px; height: 300px;
    background: rgba(80,47,133,0.1);
    border-radius: 50%;
}

.home-cta::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 250px; height: 250px;
    background: rgba(80,47,133,0.08);
    border-radius: 50%;
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-inner p {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 25px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before { left: 100%; }

.btn-yellow {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    box-shadow: 0 8px 25px rgba(80,47,133,0.3);
}

.btn-yellow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(80,47,133,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

/* ===== PAGE HERO ===== */
.page-hero {
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(44,16,131,0.9) 0%, rgba(80,47,133,0.8) 100%);
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--bg-light), transparent);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    padding: 80px 20px 40px;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
    position: relative;
}

.page-hero-content h1::after {
    content: '';
    display: block;
    width: 80px; height: 4px;
    background: var(--yellow);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* ===== SECTIONS ===== */
.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px 30px;
}

.section-inner h2 {
    text-align: center;
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
}

.section-inner h2::after {
    content: '';
    display: block;
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--yellow), var(--primary));
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* ===== SOBRE MMP ===== */
.section-about-intro {
    background: var(--white);
    position: relative;
}

.section-about-intro .section-inner {
    max-width: 900px;
    text-align: center;
}

.section-about-intro p {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 2;
    font-weight: 300;
}

.section-how {
    background: var(--bg-light);
    text-align: center;
    position: relative;
}

.section-how::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(80,47,133,0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(246,221,55,0.03) 0%, transparent 50%);
}

.section-component {
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.section-component::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(44,16,131,0.7);
}

.section-component .section-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.component-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    opacity: 0.6;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.component-header h2 {
    color: var(--white);
    text-align: left;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.component-header h2::after { display: none; }

.component-period, .component-tagline {
    color: var(--yellow);
    font-style: italic;
    font-size: 1.05rem;
}

.component-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 18px;
    line-height: 1.9;
    font-size: 1.05rem;
}

.component-content .btn { margin-top: 15px; }

.section-networking {
    background: var(--white);
    position: relative;
}

.networking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.networking-box {
    padding: 40px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.networking-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.networking-box h2 {
    color: var(--primary);
    margin-bottom: 15px;
}

.networking-box p {
    color: var(--text-gray);
    line-height: 1.9;
}

/* ===== INDICATORS ===== */
.section-indicators {
    background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary) 50%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-indicators::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(246,221,55,0.08) 0%, transparent 40%);
    animation: indicatorGlow 10s ease-in-out infinite;
}

@keyframes indicatorGlow {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(3%, -3%) rotate(5deg); }
}

.section-indicators h2 { color: var(--white); }
.section-indicators h2::after { background: linear-gradient(90deg, var(--yellow), rgba(255,255,255,0.5)); }
.section-indicators .section-subtitle { color: rgba(255,255,255,0.6); }

.indicators-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
    position: relative;
}

.indicator-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    padding: 35px 25px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.indicator-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
    border-color: rgba(246,221,55,0.3);
}

.indicator-value {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--yellow);
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 2px 10px rgba(246,221,55,0.3);
}

.indicator-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== TESTIMONIALS ===== */
.section-testimonials {
    background: var(--bg-light);
    text-align: center;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: left;
    position: relative;
    transition: var(--transition);
    border: 1px solid transparent;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px; left: 30px;
    font-size: 5rem;
    color: rgba(80,47,133,0.08);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(80,47,133,0.1);
}

.testimonial-card p {
    color: var(--text-gray);
    font-style: italic;
    line-height: 1.9;
    position: relative;
    z-index: 1;
    font-size: 1.02rem;
}

/* ===== ARTISTS PAGE ===== */
.section-artists {
    background: var(--white);
    padding: 80px 0;
    position: relative;
}

.section-artists h2 {
    text-align: center;
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.artists-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 25px;
}

.artist-showcase-card {
    display: flex;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(80,47,133,0.06);
}

.artist-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(80,47,133,0.15);
}

.artist-image {
    width: 160px;
    min-height: 180px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.artist-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(80,47,133,0.2), transparent);
    opacity: 0;
    transition: var(--transition);
}

.artist-showcase-card:hover .artist-image::after { opacity: 1; }

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.artist-showcase-card:hover .artist-image img { transform: scale(1.08); }

.artist-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.artist-desc {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.artist-name {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.05rem;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.artist-location {
    font-size: 0.82rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.artist-location::before {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.artists-business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 20px;
}

.artist-business-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.artist-business-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 0;
    background: linear-gradient(90deg, rgba(80,47,133,0.05), transparent);
    transition: width 0.4s ease;
}

.artist-business-card:hover::before { width: 100%; }

.artist-business-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.artist-business-header h3 {
    color: var(--primary);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 10px;
    position: relative;
}

.artist-business-desc {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.7;
    position: relative;
}

/* ===== BUYERS PAGE ===== */
.section-buyers {
    background: var(--white);
    padding: 80px 0;
}

.buyers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.buyer-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--white);
    padding: 22px 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(80,47,133,0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.buyer-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 0;
    background: linear-gradient(90deg, rgba(80,47,133,0.06), transparent);
    transition: width 0.4s ease;
}

.buyer-card:hover::before { width: 100%; }

.buyer-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(80,47,133,0.12);
}

.buyer-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.buyer-card:hover .buyer-avatar {
    border-radius: 50%;
    transform: rotate(5deg);
}

.buyer-name {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.buyer-org {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.4;
}

.section-cta-buyers {
    background: linear-gradient(135deg, var(--primary-darker), var(--primary));
    text-align: center;
    padding: 50px 20px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--primary-darker);
    color: var(--white);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--yellow), var(--primary));
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    padding: 60px 30px 40px;
}

.footer-info h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
}

.footer-info p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
    font-size: 0.92rem;
    line-height: 1.7;
}

.footer-info a {
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-info a:hover { color: var(--yellow); }

.footer-social p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
    font-size: 0.92rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-links a {
    color: var(--yellow);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    border-radius: 8px;
    transition: var(--transition);
}

.social-links a:hover {
    background: rgba(246,221,55,0.1);
    transform: translateX(5px);
}

.social-links a i {
    width: 20px;
    text-align: center;
}

.footer-org p {
    color: rgba(255,255,255,0.6);
    font-size: 0.92rem;
    line-height: 1.8;
}

.footer-org strong {
    color: var(--white);
    font-size: 1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .main-nav { display: none; }
    .main-nav.active {
        display: block;
        position: fixed;
        top: 80px; left: 0; right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        box-shadow: var(--shadow-lg);
        padding: 25px;
        border-radius: 0 0 var(--radius) var(--radius);
    }
    .main-nav.active ul {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .main-nav.active a {
        color: var(--text) !important;
        padding: 12px 25px;
        width: 100%;
        text-align: center;
    }
    .main-nav.active a:hover,
    .main-nav.active a.active {
        background: rgba(80,47,133,0.08) !important;
        color: var(--primary) !important;
    }
    .menu-toggle { display: flex; align-items: center; justify-content: center; }

    .home-actions { grid-template-columns: 1fr; }
    .action-box { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .action-box:last-child { border-bottom: none; }

    .section-component .section-inner { grid-template-columns: 1fr; gap: 30px; }
    .networking-grid { grid-template-columns: 1fr; }
    .indicators-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 30px; }

    .hero-logo img { width: 190px; }
    .page-hero-content h1 { font-size: 2.2rem; }
    .hero-year { font-size: 5rem; }
    .hero-line-1 { font-size: 1rem; letter-spacing: 8px; }
    .hero-line-2 { font-size: 1.8rem; }
}

@media (max-width: 600px) {
    .artists-showcase-grid,
    .artists-business-grid,
    .buyers-grid { grid-template-columns: 1fr; }

    .artist-showcase-card { flex-direction: column; }
    .artist-image { width: 100%; height: 220px; }

    .indicators-grid { grid-template-columns: 1fr; }
    .hero-logo img { width: 150px; }
    .hero-year { font-size: 3.5rem; }
    .hero-line-1 { font-size: 0.8rem; letter-spacing: 5px; }
    .hero-line-2 { font-size: 1.3rem; letter-spacing: 3px; }
    .hero-date-box { padding: 15px 25px; }
    .date-day { font-size: 2.2rem; }
    .hero-btn { padding: 14px 25px; font-size: 0.85rem; }
    .indicator-value { font-size: 2.2rem; }
    .page-hero-content h1 { font-size: 1.8rem; }
    .section-inner { padding: 50px 20px; }
}
