:root {
    --dark: #0f1820;
    --dark2: #1d2730;
    --orange: #d96b2b;
    --orange-light: #f08b44;
    --brown: #6d3f29;
    --cream: #f6ece5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: #333;
}

.container {
    width: min(1200px, 90%);
    margin: auto;
}

.narrow {
    max-width: 800px;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 24, 32, 0.85);
    backdrop-filter: blur(8px);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 3px;
}

nav {
    display: flex;
    gap: 25px;
}

nav a {
    color: white;
    text-decoration: none;
    transition: color 0.2s ease;
}

nav a:hover {
    color: var(--orange-light);
}

.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background:
        linear-gradient(
            rgba(15, 24, 32, 0.55),
            rgba(15, 24, 32, 0.45)
        ),
        url("../images/hero.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: var(--dark);
    padding: 120px 20px;
}

.hero-content {
    color: white;
    max-width: 800px;
}

.hero h1 {
    font-family: 'Merriweather', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 20px;
}

.hero p {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background: var(--orange);
    color: white;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    transition: background 0.2s ease;
}

.btn:hover {
    background: var(--orange-light);
}

.section {
    padding: 90px 0;
}

h2 {
    text-align: center;
    font-family: 'Merriweather', serif;
    margin-bottom: 40px;
    color: var(--brown);
}

.dark {
    background: var(--dark);
    color: white;
}

.dark h2 {
    color: var(--orange-light);
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: var(--dark2);
    padding: 25px;
    border-left: 5px solid var(--orange);
    border-radius: 10px;
}

.player-placeholder {
    border: 2px dashed var(--orange);
    border-radius: 12px;
    padding: 50px;
    text-align: center;
}

.gallery {
    background: #fafafa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

.contact {
    background: var(--cream);
    text-align: center;
}

.contact a {
    color: var(--brown);
    font-weight: 600;
}

.social {
    margin-top: 20px;
}

.social a {
    margin: 0 12px;
    text-decoration: none;
}

footer {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 20px;
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 99999;
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.lightbox span {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    user-select: none;
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 10px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .gallery-grid img {
        height: 220px;
    }
}
