/* ===== GLOBAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  width: 100%;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

/* ===== NAVBAR ===== */
nav {
  position: sticky;
  top: 0;
  width: 100%;
  height: 70px;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 60px;
  border-radius: 50%;
}

.logo h2 {
  margin-left: 10px;
  color: #6f4e37;
  font-size: 24px;
  font-weight: bold;
}

.navbar {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.navbar a {
  text-decoration: none;
  color: #6f4e37;
  font-weight: bold;
  position: relative;
  padding: 10px 0;
  transition: color 0.3s ease;
}

.navbar a:hover,
.navbar a.active {
  color: #d9a066;
}

.navbar a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 3px;
  bottom: -4px;
  left: 0;
  background: linear-gradient(to right, #6f4e37, #d9a066);
  transition: width 0.4s ease;
}

.navbar a:hover::after,
.navbar a.active::after {
  width: 100%;
}

/* ===== NAV ICONS ===== */
.nav-icons {
  display: flex;
  gap: 20px;
}

.nav-icons a {
  position: relative;
  text-decoration: none;
  color: #5d4037;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Bounce + Color Change */
.nav-icons a:hover {
  color: #d9a066;
  animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px) scale(1.2); }
}

.nav-icons .badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background: red;
  color: white;
  font-size: 11px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
}

.profile-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #aca09c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.profile-icon:hover {
  background: #8d6e63;
  transform: rotate(10deg) scale(1.1);
}

/* ===== MENU ICON ===== */
.menu-icon {
  display: none;
  font-size: 30px;
  color: #6f4e37;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url("../img/home/00.png") no-repeat center/cover;
  color: #fff;
  padding: 20px;
}

.cta h2 {
  font-size: 24px;
  text-align: center;
  margin-top: 50px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero .btn {
  text-decoration: none;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 30px;
  background: linear-gradient(45deg, #6f4e37, #d9a066);
  color: white;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulseMove 2s infinite;
}

.hero .btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(111, 78, 55, 0.6);
}

@keyframes pulseMove {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

/* ===== MENU SECTION ===== */
.menu {
  padding: 50px 20px;
  background: #fff;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.menu-card {
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-8px);
}

.menu-card img {
  width: 100%;
  max-width: 180px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.menu-card h3 {
  margin: 10px 0;
  font-size: 1.2rem;
  color: #333;
}

.menu-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 10px;
}

.menu-card .price {
  display: block;
  font-weight: bold;
  color: #b87333;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.menu-card .btn-anim {
  background: #b87333;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.menu-card .btn-anim:hover {
  background: #8b5e2d;
}


.cta h2 {
  font-size: 2.5rem;
  color: #6f4e37;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
  position: relative;
  transition: transform 0.3s ease;
}

.cta h2:hover {
  transform: scale(1.02);
}

.cta h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #6f4e37, #d9a066);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.cta h2:hover::after {
  width: 100px;
}
/* ===== VIDEO SECTION ===== */
.video {
  padding: 10px 20px;
}
.video-container {
  position: relative;
  padding-bottom: 50%; 
  height: 0;
  overflow: hidden;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 50px 20px;
  text-align: center;
}


.gallery h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #6f4e37;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* ===== PROFILE CARD ===== */
.profile-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 50px auto;
  padding: 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  width: 300px;
}

.image-container {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  padding: 6px; /* smaller border size */
  background: #fff;
  overflow: hidden;
  z-index: 0;
}

.image-container::before {
  content: '';
  position: absolute;
  inset: -3px; /* thinner gradient ring */
  background: conic-gradient(red, yellow, lime, cyan, blue, magenta, red);
  border-radius: 50%;
  animation: rotate 3s linear infinite;
  z-index: -1;
}

.image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff; /* thinner white border */
}

@keyframes rotate {
  100% { transform: rotate(360deg); }
}

.profile-card .btn-anim {
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 30px;
  background: linear-gradient(45deg, #6f4e37, #d9a066);
  color: white;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulseMove 2s infinite;
}

.profile-card .btn-anim:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(111, 78, 55, 0.6);
}

/* ===== FOOTER ===== */
footer {
  background: #6f4e37;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* allow wrapping on small screens */
  gap: 15px;
  padding: 20px 40px;

  /* Animation on load */
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 1s ease-out forwards;
}

footer ul {
  list-style: none;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

footer ul li a {
  color: white;
  font-size: 24px;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

/* Glow + Wiggle */
footer ul li a:hover {
  transform: scale(1.3) rotate(-10deg);
  color: #ffcc70;
  text-shadow: 0 0 10px rgba(255, 204, 112, 0.8);
}

/* ===== ANIMATIONS ===== */
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .navbar {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
  }
  .navbar.show {
    display: flex;
  }
  .menu-icon {
    display: block;
  }
  .nav-icons {
    display: none;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero p {
    font-size: 16px;
  }
  .profile-card {
    width: 90%;
  }
  .image-container {
    width: 150px;
    height: 150px;
    padding: 4px;
  }

  .image {
    border: 3px solid #fff;
  }
}
@media (max-width: 768px) {
  footer {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px;
  }

  footer ul {
    justify-content: center;
    flex-wrap: wrap; /* allow icons wrap */
  }

  footer .left,
  footer .right {
    font-size: 0.9rem;
  }
}
