/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Cairo', sans-serif;
  background: linear-gradient(135deg, #fefce8 0%, #fef3c7 30%, #ffedd5 70%, #fce7f3 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  color: #1c1917;
  line-height: 1.6;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  width: 100%;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 3rem;
  padding: 2.5rem 3rem;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  transition: all 0.3s ease;
}

/* ===== HEADER ===== */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

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

.logo-icon {
  font-size: 2rem;
}

.logo h1 {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #292524;
}

.highlight {
  color: #d97706;
}

/* ===== MAIN LAYOUT ===== */
.main {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.content {
  flex: 1 1 50%;
}

.illustration {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.illustration img {
  max-width: 100%;
  height: auto;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 30px rgba(217, 119, 6, 0.15));
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
}

/* ===== BADGE ===== */
.badge {
  display: inline-block;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #78350f;
  padding: 0.35rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 10px rgba(251, 191, 36, 0.35);
}

/* ===== TYPOGRAPHY ===== */
.content h2 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #1c1917;
}

.content p {
  font-size: 1.05rem;
  color: #57534e;
  margin-bottom: 1.8rem;
  max-width: 480px;
}

/* ===== SOCIAL ===== */
.social {
  display: flex;
  gap: 0.9rem;
}

.social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1px solid #e7e5e4;
  transition: all 0.3s ease;
  color: #57534e;
}

.social a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social a:hover {
  background: #d97706;
  border-color: #d97706;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.3);
}

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(231, 229, 228, 0.6);
}

.footer p {
  font-size: 0.85rem;
  color: #a8a29e;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .container {
    padding: 2rem 1.5rem;
    border-radius: 2rem;
  }

  .main {
    flex-direction: column-reverse;
    gap: 2rem;
    text-align: center;
  }

  .content {
    flex: none;
    width: 100%;
  }

  .content p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .content h2 {
    font-size: 2rem;
  }

  .illustration {
    flex: none;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }

  .social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  body {
    padding: 1rem;
  }

  .container {
    padding: 1.5rem 1rem;
  }

  .content h2 {
    font-size: 1.6rem;
  }

  .logo h1 {
    font-size: 1.35rem;
  }
}
