* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif; /* Google Font */
  color: #333;
  line-height: 1.6;
  background-color: beige;
}

/* HEADER */
.header {
  background-color: bisque;
  padding: 1rem 2rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-logo {
  font-weight: bold;
  font-size: 1.2rem;
}

/* NAV LINKS */
.nav-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-left a {
  text-decoration: none;
  color: #333;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.nav-left a:hover {
  color: #444;
}

.btn {
  background: #444;
  color: #fff !important;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background 0.3s;
}

.btn:hover {
  background: #666;
}

.nav-right {
  font-size: 1.2rem;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  width: 25px;
}

.hamburger span {
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* HAMBURGER OPEN STATE */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* CONTACT INFO BELOW HEADER */
.contact-info {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  color: #555;
}

/* HERO */
.hero {
  background: #ffffff;
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  height: 450px;
}

.hero-content {
  text-align: center;
}

/* ABOUT */
.about {
  padding: 3rem 2rem;
}

.about h2 {
  background: #fde69b;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 2rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.about-text {
  background: #fde69b;
  padding: 1.5rem;
  transition: transform 0.3s;
}

.about-text:hover {
  transform: translateY(-3px);
}

.about-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FOOTER */
.footer {
  background-color: bisque;
  padding: 2rem;
  font-size: 0.9rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-links a,
.footer-bottom a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: #444;
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  color: #999;
}

.legal-links {
  display: flex;
  gap: 1rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }

  .footer-social {
    justify-content: center;
  }

  /* Show Hamburger */
  .hamburger {
    display: flex;
  }

  /* Hide nav-left by default on mobile */
  .nav-left {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    background-color: bisque;
    width: 100%;
    padding: 1rem 0;
    gap: 1rem;
  }

  /* Show nav-left when active */
  .nav-left.active {
    display: flex;
  }

  .nav-left a {
    text-align: center;
  }
}

