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

:root {
    --bg: #0b0b0b;
    --bg-soft: #151515;
    --panel: #1d1d1d;
    --text: #ffffff;
    --muted: #bcbcbc;
    --line: rgba(255, 255, 255, 0.08);
    --accent: #c7a15a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.container {
    width: min(90%, 1200px);
    margin: 0 auto;
}

.navbar {
    position: sticky;
    top: 0;
    background-color: rgba(11, 11, 11, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    color: var(--accent);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 24px;
}

.nav-links a {
    text-decoration: none;
    color: #d9d9d9;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:focus-visible,
.btn:focus-visible,
.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
    background:
        radial-gradient(circle at top right, rgba(199, 161, 90, 0.16), transparent 28%),
        linear-gradient(to bottom, #111111, #0b0b0b);
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-text,
.hero-card {
    flex: 1 1 320px;
}

.hero-text span {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 14px;
    border: 1px solid rgba(199, 161, 90, 0.35);
    border-radius: 999px;
    color: #e6d8bb;
    font-size: 1rem;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1;
    margin-bottom: 18px;
    animation: fadeUp 0.8s ease;
}

.hero-text p {
    color: var(--muted);
    max-width: 560px;
    margin-bottom: 28px;
    animation: fadeUp 1.1s ease;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeUp 1.4s ease;
}

.btn {
    display: inline-block;
    text-decoration: none;
    padding: 14px 22px;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent);
    color: #111111;
}

.btn-primary:hover {
    transform: translateY(-4px);
    background-color: #d8b26f;
}

.btn-secondary {
    border: 1px solid rgba(199, 161, 90, 0.3);
    color: #fff;
    background-color: rgba(255, 255, 255, 0.03);
}

.btn-secondary:hover {
    transform: translateY(-4px);
    background-color: rgba(199, 161, 90, 0.08);
}

.hero-card,
.card,
.intro-card,
.schedule-item,
.carousel {
    background-color: var(--bg-soft);
    border: 1px solid var(--line);
}

.hero-card {
    border-radius: 16px;
    padding: 20px;
    transition: 0.4s;
    animation: fadeUp 1.1s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.hero-card:hover {
    transform: translateY(-5px);
}

.hero-card img {
    width: 100%;
    max-height: 360px;
    object-fit: contain;
    background-color: #050505;
    border-radius: 12px;
    margin-bottom: 15px;
}

.hero-info {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.info-box {
    flex: 1 1 120px;
    background-color: var(--panel);
    border-radius: 8px;
    padding: 14px;
    border-top: 2px solid rgba(199, 161, 90, 0.5);
}

.info-box span {
    display: block;
    color: #aaaaaa;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.info-box strong {
    color: #f4e5c4;
}

section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.3rem;
    margin-bottom: 10px;
}

.section-text {
    color: var(--muted);
    max-width: 700px;
    margin-bottom: 36px;
}

.cards,
.intro-grid,
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card,
.intro-card {
    border-radius: 10px;
    padding: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s;
}

.card {
    position: relative;
}

.card.show,
.intro-card.show {
    opacity: 1;
    transform: translateY(0);
}

.card:hover,
.intro-card:hover {
    transform: translateY(-8px);
}

.card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    border-radius: 10px 10px 0 0;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.icon {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 14px;
}

.intro-card h3 {
    margin-bottom: 10px;
}

.intro-card p {
    color: var(--muted);
}

.carousel {
    position: relative;
    border-radius: 12px;
    padding: 18px;
    max-width: 850px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s;
}

.carousel.show {
    opacity: 1;
    transform: translateY(0);
}

.carousel-track {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: min(62vw, 440px);
    min-height: 260px;
    background-color: #050505;
}

.carousel-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: 0.4s;
}

.carousel-image.active {
    opacity: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background-color: rgba(199, 161, 90, 0.9);
    color: #111111;
    font-size: 1.4rem;
    font-weight: 800;
    cursor: pointer;
}

#prev-slide {
    left: 30px;
}

#next-slide {
    right: 30px;
}

.carousel-caption {
    text-align: center;
    color: #f4e5c4;
    margin-top: 14px;
    font-weight: 600;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    border-radius: 16px;
    padding: 18px 20px;
    transition: 0.3s;
    opacity: 0;
    transform: translateY(30px);
}

.schedule-item.show {
    opacity: 1;
    transform: translateY(0);
    transition: 0.6s;
}

.schedule-item:hover {
    transform: translateX(8px);
}

.badge {
    padding: 8px 14px;
    border-radius: 999px;
    background-color: rgba(199, 161, 90, 0.14);
    color: #f4e5c4;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.contact-chip {
    padding: 10px 14px;
    border: 1px solid rgba(199, 161, 90, 0.24);
    border-radius: 999px;
    background-color: rgba(199, 161, 90, 0.08);
    color: #f2e2bf;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 700px;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #e7e7e7;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background-color: var(--bg-soft);
    color: white;
}

.contact-form textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9a9a9a;
}

.form-message {
    min-height: 24px;
    color: #f4e5c4;
}

footer {
    text-align: center;
    padding: 20px 0;
    color: #9a9a9a;
    border-top: 1px solid var(--line);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.6s;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 14px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        min-height: auto;
    }

    .schedule-item:hover {
        transform: none;
    }
}
