/* ================================
GENERAL SETTINGS
================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

html {
scroll-behavior: smooth;
}

body {
font-family: "Poppins", sans-serif;
background: #111;
color: #fff;
line-height: 1.7;
}

img {
max-width: 100%;
display: block;
}

a {
text-decoration: none;
color: inherit;
}

/* ================================
NAVIGATION
================================ */

.header {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
background: rgba(0, 0, 0, 0.75);
backdrop-filter: blur(10px);
}

.navbar {
max-width: 1200px;
margin: auto;
padding: 20px 30px;

```
display: flex;
align-items: center;
justify-content: space-between;
```

}

.logo {
font-family: "Playfair Display", serif;
font-size: 22px;
font-weight: 600;
letter-spacing: 2px;
}

.logo span {
display: block;
font-family: "Poppins", sans-serif;
font-size: 9px;
letter-spacing: 4px;
opacity: 0.7;
}

.nav-links {
display: flex;
gap: 35px;
list-style: none;
}

.nav-links a {
font-size: 14px;
transition: 0.3s;
}

.nav-links a:hover {
opacity: 0.6;
}

.menu-toggle {
display: none;
background: none;
border: none;
color: white;
font-size: 28px;
cursor: pointer;
}

/* ================================
HERO
================================ */

.hero {
min-height: 100vh;

```
display: flex;
align-items: center;

padding: 100px 8%;

background:
    linear-gradient(
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.75)
    ),
    url("https://images.unsplash.com/photo-1452780212940-6f5c0d14d848?auto=format&fit=crop&w=2000&q=85");

background-size: cover;
background-position: center;
```

}

.hero-content {
max-width: 700px;
}

.eyebrow {
font-size: 12px;
letter-spacing: 4px;
margin-bottom: 20px;
opacity: 0.7;
}

.hero h1 {
font-family: "Playfair Display", serif;
font-size: clamp(45px, 7vw, 90px);
line-height: 1.1;
margin-bottom: 25px;
}

.hero h1 span {
font-style: italic;
}

.hero-text {
max-width: 550px;
font-size: 17px;
margin-bottom: 35px;
opacity: 0.85;
}

/* ================================
BUTTON
================================ */

.btn {
display: inline-block;

```
padding: 13px 28px;

border: 1px solid rgba(255, 255, 255, 0.7);

font-size: 13px;
letter-spacing: 1px;

transition: 0.3s;
```

}

.btn:hover {
background: white;
color: black;
}

/* ================================
SECTION HEADINGS
================================ */

.section-heading {
max-width: 700px;
margin: 0 auto 60px;
text-align: center;
}

.section-heading h2 {
font-family: "Playfair Display", serif;
font-size: 48px;
margin-bottom: 15px;
}

.section-heading p {
opacity: 0.7;
}

/* ================================
GALLERY
================================ */

.gallery-section {
padding: 110px 6%;
}

.filter-buttons {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 12px;
margin-bottom: 45px;
}

.filter-btn {
padding: 9px 20px;

```
background: transparent;
color: white;

border: 1px solid #444;

cursor: pointer;

font-family: inherit;

transition: 0.3s;
```

}

.filter-btn:hover,
.filter-btn.active {
background: white;
color: black;
}

.gallery-grid {
max-width: 1200px;
margin: auto;

```
display: grid;

grid-template-columns:
    repeat(4, 1fr);

gap: 15px;
```

}

.gallery-item {
height: 320px;
overflow: hidden;
cursor: pointer;
}

.gallery-item img {
width: 100%;
height: 100%;

```
object-fit: cover;

transition: transform 0.6s;
```

}

.gallery-item:hover img {
transform: scale(1.08);
}

/* ================================
ABOUT
================================ */

.about-section {
max-width: 1200px;
margin: auto;

```
padding: 110px 6%;

display: grid;

grid-template-columns:
    1fr 1fr;

gap: 70px;

align-items: center;
```

}

.about-image img {
width: 100%;
height: 600px;
object-fit: cover;
}

.about-content h2 {
font-family: "Playfair Display", serif;
font-size: 50px;
line-height: 1.2;
margin-bottom: 25px;
}

.about-content p {
margin-bottom: 20px;
opacity: 0.75;
}

/* ================================
CONTACT
================================ */

.contact-section {
padding: 130px 6%;

```
background: #181818;
```

}

.contact-section .section-heading {
margin-bottom: 0;
}

/* ================================
FOOTER
================================ */

.footer {
padding: 35px 6%;

```
display: flex;
justify-content: space-between;

font-size: 12px;

opacity: 0.6;
```

}

/* ================================
LIGHTBOX
================================ */

.lightbox {
position: fixed;

```
top: 0;
left: 0;

width: 100%;
height: 100%;

background: rgba(0, 0, 0, 0.95);

display: none;

align-items: center;
justify-content: center;

z-index: 2000;

padding: 40px;
```

}

.lightbox.show {
display: flex;
}

.lightbox img {
max-width: 90%;
max-height: 90vh;

```
object-fit: contain;
```

}

.close-lightbox {
position: absolute;

```
top: 20px;
right: 30px;

background: none;
border: none;

color: white;

font-size: 45px;

cursor: pointer;
```

}

/* ================================
RESPONSIVE DESIGN
================================ */

@media (max-width: 900px) {

```
.gallery-grid {
    grid-template-columns:
        repeat(2, 1fr);
}

.about-section {
    grid-template-columns: 1fr;
}

.about-image img {
    height: 500px;
}
```

}

@media (max-width: 700px) {

```
.menu-toggle {
    display: block;
}

.nav-links {
    position: absolute;

    top: 80px;
    left: 0;

    width: 100%;

    background: #111;

    flex-direction: column;

    align-items: center;

    padding: 30px;

    display: none;
}

.nav-links.show {
    display: flex;
}

.gallery-grid {
    grid-template-columns: 1fr;
}

.gallery-item {
    height: 400px;
}

.section-heading h2 {
    font-size: 38px;
}

.about-content h2 {
    font-size: 40px;
}

.footer {
    flex-direction: column;
    gap: 10px;
    text-align: center;
}
```

}
