/* ---------------- General ---------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f7f4ef;
  color: #333;
  line-height: 1.6;
}

/* ---------------- Header ---------------- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: #2c2b28;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

header .logo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  animation: rotateLogo 5s linear infinite;
  border: 3px solid #f0a500;
}

@keyframes rotateLogo {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(10deg); }
  100% { transform: rotate(0deg); }
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

header nav ul li a:hover {
  color: #f0a500;
  transform: scale(1.1);
}

/* ---------------- Hero Section ---------------- */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: #f0e6d2;
  animation: fadeIn 1.5s ease-in;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #2c2b28;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero .btn {
  background: #f0a500;
  color: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
}

.hero .btn:hover {
  background: #d18e00;
  transform: translateY(-3px);
}

/* ---------------- Section Titles ---------------- */
section {
  padding: 60px 20px;
  text-align: center;
}

section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #2c2b28;
}

/* ---------------- Card Container ---------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  width: 250px;
  background: #fff8f0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: 0.5s;
  position: relative;
}

.card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin: 20px auto 10px;
  display: block;
  border: 4px solid #f0a500;
  transition: 0.4s;
}

.card:hover img {
  transform: scale(1.1) rotate(5deg);
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  margin-bottom: 10px;
  color: #2c2b28;
}

.card-content p {
  font-size: 0.95rem;
  color: #555;
}

/* ---------------- Subscribe Section ---------------- */
.subscribe-cta {
  background: #f0e6d2;
  padding: 60px 20px;
}

.subscribe-cta form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.subscribe-cta input {
  padding: 12px;
  border-radius: 50px;
  border: 1px solid #ccc;
  width: 250px;
}

.subscribe-cta button {
  padding: 12px 25px;
  border-radius: 50px;
  border: none;
  background: #f0a500;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.subscribe-cta button:hover {
  background: #d18e00;
  transform: translateY(-2px);
}

/* ---------------- Footer ---------------- */
footer {
  background: #2c2b28;
  color: #fff;
  padding: 50px 20px 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-content div h3 {
  margin-bottom: 15px;
}

.footer-content div ul {
  list-style: none;
}

.footer-content div ul li {
  margin-bottom: 10px;
}

.footer-content div ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-content div ul li a:hover {
  color: #f0a500;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
}

/* ---------------- Animations ---------------- */
@keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}
