/* 
  Apple-inspired minimalism:
  - White background
  - Clean, sans-serif font
  - Subtle color accents matching pink logos
  - Simple animations and transitions
*/

/* Universal resets & font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.5;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

header .main-logo {
  max-height: 60px; /* Consistent with other pages */
  width: auto;
  object-fit: contain;
}

/* Language toggle buttons inside header-left */
.lang-buttons {
  display: flex;
  gap: 0.5rem;
}

.lang-toggle {
  background: #e91e63;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.lang-toggle:hover {
  background: #d81b60;
}

/* Navigation remains on the right */
nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  text-decoration: none;
  font-size: 1rem;
  color: #333;
  padding: 0.5rem;
  transition: color 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: #e91e63;
}

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.decorative-logo {
  max-width: 120px;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.hero-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #e91e63; /* Pink accent */
}

.hero-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
}

/* Form Section */
.form-section {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.form-container {
  width: 100%;
  max-width: 400px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

/* Fade-in-up animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.form-container h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #e91e63; /* Pink accent */
}

/* Labels and inputs */
label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="number"],
select {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1.25rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

input:focus,
select:focus {
  outline: none;
  border-color: #e91e63; /* Pink accent on focus */
}

/* Submit Button */
.submit-btn {
  width: 100%;
  background-color: #e91e63; /* Pink accent */
  color: #fff;
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.submit-btn:hover {
  background-color: #d81b60;
  transform: scale(1.02);
}

/* Footer */
footer {
  border-top: 1px solid #ddd;
  background-color: #fff;
  padding: 1rem;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.riva-logo {
  max-height: 50px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

footer p {
  font-size: 0.9rem;
  color: #777;
}
