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

body {
  background: #000;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 1000;
}

.logo {
  font-family: 'Playfair Display', serif;
  letter-spacing: 2px;
}

.hamburger {
  width: 24px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;
  background: red;
  margin: 5px 0;
}

/* NAV */
.nav {
  position: fixed;
  top: 60px;
  right: -100%;
  width: 100%;
  height: calc(100vh - 60px);
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  transition: right 0.3s ease;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
}

.nav a.active {
  opacity: 0.5;
}

.nav.open {
  right: 0;
}

/* ABOUT HERO */
.about-hero {
  height: 35vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 60px;
}

.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  letter-spacing: 6px;
}

.about-hero p {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.7;
}

/* ABOUT CONTENT */
.about {
  padding: 60px 20px 80px;
}

.about-inner {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.about-text p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
  opacity: 0.85;
}

.about-text .quote {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  letter-spacing: 2px;
  opacity: 1;
}

.about-image img {
  width: 100%;
  display: block;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 40px 20px;
  font-size: 12px;
  color: #777;
}

.social-bar {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-bottom: 20px;
}

.social-bar a {
  color: #666;
  font-size: 18px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-bar a:hover {
  color: #fff;
  transform: translateY(-2px);
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  color: #777;
  margin: 0 10px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

/* MOBILE */
@media (max-width: 800px) {
  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-hero {
    height: 30vh;
  }
}

/* DESKTOP NAV FIX */
@media (min-width: 1024px) {

  .hamburger {
    display: none;
  }

  .nav {
    position: static;
    height: auto;
    width: auto;
    flex-direction: row;
    background: transparent;
    gap: 32px;
    right: 0;
    transition: none;
  }

  .nav a {
    font-size: 13px;
    letter-spacing: 2px;
    opacity: 0.8;
  }

  .nav a:hover {
    opacity: 1;
  }
}

