@import url('https://fonts.googleapis.com/css2?family=Nexa:wght@400;700&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Nexa', sans-serif;
  background-color: #f2eded;
}

#first-look {
  background-color: #161515;
  color: #f2eded;
  height: auto;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 60px;
  margin-top: 20px;
}

.logo img {
  height: 100px; /* or whatever size suits */
  width: auto;
  display: block;
}

.nav-menu a:focus {
  outline: none;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-menu a {
  position: relative;
  text-decoration: none;
  color: #f2eded;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  transition: transform 0.3s ease;
  line-height: 1; /* keeps space consistent */
  padding: 0px 20px;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: #f2eded;
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  transform: scale(1.1); /* instead of font-size change */
}

.nav-menu a:hover::after {
  width: 100%;
}

.hamburger {
  display: none; /* hidden by default */
}

.logo {
  font-size: 18px;
  line-height: 1.2;
  font-weight: bold;
  color: #f2eded;
}

.back-btn {
  text-align: center;   /* forces it to left side */
  margin: 15px 0;
}

.back-btn button {
  background-color: #161515;
  color: #f2eded;
  border: none;
  padding: 8px 16px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  
}

.back-btn button:hover {
  background-color: #f2eded;
  color: #161515;
  border: solid 2px;
}




.brand-section {
  padding: 2rem 1rem;
  text-align: center;

}

.brand-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #161515;
}

/* Big Image */
.big-image img {
  width: 100%;
  height: auto !important;       /* adjust as you like */
  object-fit: cover;   /* keeps proportions */
  border-radius: 12px;
  margin-bottom: 2rem;
}


/* Responsive */
@media (max-width: 900px) {

  .big-image img {
    height: 300px;
  }
}

@media (max-width: 600px) {

  .big-image img {
    height: 200px;
  }
}

.last {
  background-color: #161515;
  color: #f2eded;
  text-align: center; /* optional for h3 if used later */
  padding: 15px;
}

.contact-info {
  display: flex;
  justify-content: center; /* centers horizontally */
  gap: 60px; /* spacing between Phone, Email, Home */
  flex-wrap: wrap; /* wraps on small screens */
  font-size: 16px;
  align-items: center;
}

.contact-info p {
  margin: 0;
}

.home-link {
  color: #f2eded;
  text-decoration: none;
  font-weight: bold;
}

.home-link:hover {
  text-decoration: underline;
}