* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #111;
    color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 2rem;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #000;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.nav-links li a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('placeholder-bg.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    background: #c3a343; /* Gold-Ton */
    color: #fff;
    padding: 0.8rem 2rem;
    text-decoration: none;
    margin-top: 1rem;
    border-radius: 5px;
}

/* Sections */
.section {
    padding: 4rem 0;
}

.dark {
    background: #1a1a1a;
}

.flex {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.image-placeholder, .placeholder, .gallery-item {
    background: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px dashed #555;
    min-height: 250px;
    width: 100%;
}

.grid-3, .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

footer {
    text-align: center;
    padding: 2rem;
    background: #000;
}

footer a {
    color: #c3a343;
    text-decoration: none;
}