:root {
  /* Fonts */
  --primary-font: "Cormorant", serif;
  /* --primary-font: "Poppins", sans-serif; */

  /* Colors */
  --primary-color: #212529;

  /* Shadows */
  /* --primary-box-shadow: 10px 10px 5px 2px #e9ecef; */
  --primary-box-shadow:
    rgba(33, 37, 41, 0.4) 5px 5px, rgba(33, 37, 41, 0.3) 10px 10px,
    rgba(33, 37, 41, 0.2) 15px 15px, rgba(33, 37, 41, 0.1) 20px 20px,
    rgba(33, 37, 41, 0.05) 25px 25px;
  --secondary-box-shadow:
    rgba(33, 37, 41, 0.4) -5px 5px, rgba(33, 37, 41, 0.3) -10px 10px,
    rgba(33, 37, 41, 0.2) -15px 15px, rgba(33, 37, 41, 0.1) -20px 20px,
    rgba(33, 37, 41, 0.05) -25px 25px;

  /* Backgrounds */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f8f8;

  /* Text */
  --text-primary: #1a1a1a;
  --text-muted: #6b7280;

  /* Border */
  --border-color: rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  font-family: var(--primary-font);
  color: var(--primary-color);
}

.title {
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.image {
  width: 420px;
  height: 420px;
  object-fit: cover;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.content {
  flex: 1;
  max-width: 520px;
  overflow: hidden;
}

.title,
.description {
  margin-bottom: 20px;
}

.title span {
  text-transform: uppercase;
}

.button {
  background: none;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 12px 28px;
  cursor: pointer;
}

.form_alert {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 16px;
  border: 0.5px solid;
  min-width: 300px;
  max-width: 380px;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
  animation: slide_in 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

@keyframes slide_in {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.form_alert_success {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #15803d;
}

.form_alert_error {
  background: #fef2f2;
  border-color: #fecaca;
  color: #b91c1c;
}

.form_alert_icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 1px;
}

.form_alert_body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.form_alert_title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.form_alert_text {
  font-size: 12px;
  opacity: 0.75;
  line-height: 1.5;
}

.form_alert_close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: inherit;
  opacity: 0.4;
  padding: 0;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
  margin-top: 2px;
}

.form_alert_close:hover {
  opacity: 1;
}

/* Mobile */
@media (max-width: 480px) {
  .form_alert {
    bottom: 16px;
    right: 16px;
    left: 16px;
    max-width: 100%;
    min-width: unset;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .image {
    width: 340px;
    height: 340px;
  }
}

/* Mobile landscape */
@media (max-width: 768px) {
  .container {
    align-items: center;
    text-align: center;
  }

  .content {
    max-width: 100%;
  }

  .image {
    width: 260px;
    height: 260px;
  }

  .social_media {
    justify-content: center;
  }
}

/* Mobile portrait */
@media (max-width: 480px) {
  .image {
    width: 200px;
    height: 200px;
  }
}

@media (min-width: 480px) {
  .button {
    width: auto;
    padding: 11px 22px;
  }
}

@media (min-width: 768px) {
  .button {
    padding: 12px 28px;
    font-size: 15px;
  }
}
