/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #000;
  color: #fff;
}

/* NAVBAR */
.navbar {
  position: fixed;
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.logo {
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  opacity: 0.6;
}

/* HERO */
.hero {
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1490481651871-ab68de25d43d') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: 'Anton', sans-serif;
  font-size: 90px;
  letter-spacing: 4px;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  border: 1px solid #fff;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.btn:hover {
  background: #fff;
  color: #000;
}

/* GALLERY */
.gallery {
  padding: 120px 60px;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  font-size: 32px;
  letter-spacing: 3px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.item img {
  width: 100%;
  display: block;
  transition: 0.5s;
}

.item img:hover {
  transform: scale(1.05);
}

.large {
  grid-column: span 2;
}

/* ABOUT */
.about {
  padding: 120px 60px;
  text-align: center;
  background: #111;
}

/* CONTACT */
.contact {
  padding: 100px 60px;
  text-align: center;
}

/* FOOTER */
footer {
  padding: 30px;
  text-align: center;
  font-size: 14px;
  background: #000;
}

/* FADE ANIMATION */
.fade {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}
