/* Destinations Hero Layout */
.destinations-hero-wrapper {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 180px));
  padding-bottom: 100px;
  margin-bottom: -180px;
}

.destinations-hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  min-height: 600px;
}

@media (min-width: 1024px) {
  .destinations-hero-layout {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 700px;
  }
}

.destinations-hero-text-column {
  z-index: 20;
  position: relative;
}

/* Hero Form */
.destinations-hero-form {
  max-width: 36rem;
}

.destinations-hero-form .form-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.destinations-hero-form input[type="email"] {
  width: 100%;
  padding: 1rem 1.5rem;
  padding-right: 10rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.destinations-hero-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.destinations-hero-form input[type="email"]:focus {
  outline: none;
  ring: 2px;
  ring-color: rgba(255, 255, 255, 0.5);
  border-color: transparent;
  background: rgba(255, 255, 255, 0.15);
}

.destinations-hero-form button[type="submit"] {
  position: absolute;
  right: 0.25rem;
  padding: 0.625rem 1.75rem;
  font-size: 0.875rem;
  border-radius: 0.375rem;
  background: white;
  color: rgb(15, 23, 42);
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s ease;
  border: none;
  cursor: pointer;
}

.destinations-hero-form button[type="submit"]:hover {
  background: rgb(241, 245, 249);
}

/* Responsive */
@media (max-width: 640px) {
  .destinations-hero-form input[type="email"] {
    padding-right: 8rem;
  }
  
  .destinations-hero-form button[type="submit"] {
    padding: 0.625rem 1.25rem;
    font-size: 0.8125rem;
  }
}

