* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Montserrat', sans-serif;
background: #050505;
color: white;
overflow-x: hidden;
}
.container {
width: 90%;
max-width: 1300px;
margin: auto;
}
/* HERO */
.hero {
position: relative;
width: 100%;
height: 100vh;
overflow: hidden;
}
.hero img {
width: 100%;
height: 100%;
object-fit: cover;
}
.overlay {
position: absolute;
inset: 0;
background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
}
/* NAVIGATION */
nav {
position: absolute;
top: 0;
left: 0;
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 35px 70px;
z-index: 10;
}
.logo {
font-size: 28px;
font-weight: 800;
letter-spacing: 3px;
background: linear-gradient(to bottom,
#fff8cc 0%,
#ffe27a 15%,
#d9a11e 40%,
#ffdb70 60%,
#b67d12 85%,
#7a5300 100%
);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
nav ul {
display: flex;
gap: 40px;
list-style: none;
}
nav a {
color: white;
text-decoration: none;
font-size: 16px;
font-weight: 500;
letter-spacing: 2px;
text-transform: uppercase;
transition: 0.3s;
}
nav a:hover {
color: #e0b84f;
}
/* HERO CONTENT */
.hero-content {
position: absolute;
top: 50%;
left: 60%;
transform: translate(-50%, -50%);
z-index: 5;
text-align: center;
}
.subtitle {
font-size: 24px;
letter-spacing: 10px;
margin-bottom: 15px;
}
.hero-content h1 {
font-size: 160px;
line-height: 1;
font-weight: 900;
letter-spacing: 5px;
background: linear-gradient(
to bottom,
#fff8cc 0%,
#ffe27a 15%,
#d9a11e 40%,
#ffdb70 60%,
#b67d12 85%,
#7a5300 100%
);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-shadow:
0 3px 3px rgba(0,0,0,0.3),
0 8px 25px rgba(0,0,0,0.6);
}
.city {
font-size: 32px;
letter-spacing: 12px;
margin-top: 20px;
}
/* INTRO */
.intro {
padding: 120px 0 80px;
text-align: center;
}
.intro h2,
.gallery h2,
.contact h2 {
font-size: 48px;
margin-bottom: 35px;
font-weight: 800;
background: linear-gradient(
to bottom,
#fff8cc 0%,
#ffe27a 15%,
#d9a11e 40%,
#ffdb70 60%,
#b67d12 85%,
#7a5300 100%
);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.intro p {
max-width: 900px;
margin: auto;
margin-bottom: 25px;
color: #d2d2d2;
font-size: 20px;
line-height: 1.9;
}
/* GALLERY */
.gallery {
padding: 50px 0 100px;
}
.gallery-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}
.gallery-item {
overflow: hidden;
border-radius: 20px;
border: 1px solid rgba(255,255,255,0.08);
transition: 0.4s;
}
.gallery-item:hover {
transform: translateY(-8px);
}
.gallery-item img {
width: 100%;
height: 420px;
object-fit: cover;
display: block;
}
/* CONTACT */
.contact {
padding: 60px 0 120px;
text-align: center;
}

.contact-box {
display: flex;
justify-content: center;
gap: 50px;
flex-wrap: wrap;
}
.contact-item {
background: rgba(255,255,255,0.03);
border: 1px solid rgba(255,255,255,0.08);
padding: 25px 40px;
border-radius: 18px;
font-size: 22px;
font-weight: 500;
backdrop-filter: blur(10px);
}
/* FOOTER */
footer {
padding: 35px;
text-align: center;
border-top: 1px solid rgba(255,255,255,0.08);
color: #999;
font-size: 15px;
letter-spacing: 1px;
}
/* RESPONSIVE */
@media(max-width: 1200px) {
.hero-content h1 {
font-size: 120px;
}
}
@media(max-width: 900px) {
nav {
padding: 25px;

}
nav ul {
gap: 20px;
}
.hero-content {
left: 50%;
width: 90%;
}
.hero-content h1 {
font-size: 90px;
}
.subtitle {
font-size: 18px;
letter-spacing: 6px;
}
.city {
font-size: 22px;
letter-spacing: 6px;
}
.gallery-grid {
grid-template-columns: 1fr;
}
}
@media(max-width: 600px) {
.hero-content h1 {
font-size: 70px;
}
nav {
flex-direction: column;
gap: 20px;
}
nav ul {
flex-wrap: wrap;
justify-content: center;
}
.intro h2,
.gallery h2,
.contact h2 {
font-size: 36px;

}
.intro p {
font-size: 18px;
}
.contact-item {
width: 100%;
font-size: 18px;
}
}