@charset "UTF-8";
@import url("inner.css");
/* CSS Document */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  animation: fadeIn 0.4s ease;
}

main {
  flex: 1;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  backdrop-filter: blur(6px);
}

.navbar-home {
  background: rgba(248, 240, 230, 0.75);
}

.navbar-inner {
  background: rgba(205, 190, 160, 0.85);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
}

.logo img {
  height: 40px;
  background-size:cover;
}

.nav-links {
  display: flex;
  gap: 48px;
}

.nav-links a {
  text-decoration: none;
  color: #3a2a1f;
  font-weight: 500;
}

.nav-btn {
  background: #ef7b45;
  color: white;
  padding: 10px 18px;
  border-radius: 20px;
  text-decoration: none;
}

/* ===== FOOTER ===== */
.footer {
  background: #3b2314;
  color: #f3ede7;
  padding: 60px 80px 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 40px;
}

.footer img {
  height: 50px;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  color: #f3ede7;
  text-decoration: none;
  margin: 8px 0;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  opacity: 0.7;
}

/* ===== ANIMATION ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}
