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

body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #222;
}

.container {
width: 90%;
max-width: 1200px;
margin: auto;
}

.narrow {
max-width: 900px;
}

header {
background: #050505;
color: white;
position: sticky;
top: 0;
z-index: 1000;
}

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

.logo h1 {
font-size: 3rem;
letter-spacing: 4px;
}

.logo p {
letter-spacing: 3px;
}

nav a {
color: white;
text-decoration: none;
margin-left: 20px;
font-weight: bold;
}

nav a:hover {
color: #c8a24d;
}

.hero {
height: 92vh;
background:
linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
url('hero.jpg') center/cover no-repeat;
display: flex;
align-items: center;
}

.hero-content {
width: 50%;
padding-left: 6%;
color: white;
}

.hero-content h3 {
color: #c8a24d;
margin-bottom: 20px;
}

.hero-content h2 {
font-size: 5rem;
line-height: 1;
margin-bottom: 25px;
}

.hero-content p {
font-size: 1.2rem;
}

.buttons {
margin-top: 35px;
}

.btn {
display: inline-block;
padding: 15px 28px;
border: 2px solid white;
color: white;
text-decoration: none;
margin-right: 15px;
}

.gold {
background: #c8a24d;
border-color: #c8a24d;
color: black;
}

.section {
padding: 90px 0;
}

.dark {
background: #111;
color: white;
}

.cards {
display: flex;
gap: 25px;
flex-wrap: wrap;
margin-top: 40px;
}

.card {
flex: 1;
min-width: 280px;
background: white;
color: black;
padding: 20px;
border-radius: 10px;
}

.placeholder {
height: 240px;
background: #d9d9d9;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 15px;
}

.gallery {
display: flex;
gap: 20px;
flex-wrap: wrap;
margin-top: 40px;
}

.gallery-item {
flex: 1;
min-width: 250px;
height: 240px;
background: #333;
display: flex;
align-items: center;
justify-content: center;
}

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

form input,
form textarea {
width: 100%;
padding: 14px;
margin-bottom: 15px;
}

form button {
background: #c8a24d;
border: none;
padding: 15px 28px;
font-weight: bold;
}

footer {
background: #050505;
color: white;
text-align: center;
padding: 25px;
}

html {
scroll-behavior: smooth;
}

@media (max-width: 900px) {

header .container {
flex-direction: column;
}

.hero-content {
width: 90%;
}

.hero-content h2 {
font-size: 3rem;
}

.contact-grid {
grid-template-columns: 1fr;
}

}
