/* Dinner Selector Specific Styles */

.dinner-result {
  margin-top: 35px;
  padding: 30px 20px;
  background: var(--card-bg);
  border-radius: 18px;
  border: 1px solid var(--border-color);
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.placeholder {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.dinner-item {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Navigation Links */
.navigation-links {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--text-primary);
  text-decoration: underline;
}

/* New logo animation */
.header .logo {
  animation: spin-float 4s ease-in-out infinite;
}

@keyframes spin-float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) rotate(15deg);
  }
  75% {
    transform: translateY(5px) rotate(-15deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* Contact Form Section */
.contact-section {
  margin-top: 40px;
  padding: 30px;
  background: var(--card-bg);
  border-radius: 18px;
  border: 1px solid var(--border-color);
}

.contact-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  text-align: center;
}

.contact-subtitle {
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-weight: 500;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background: var(--bg-color);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4CAF50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  margin-top: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.35);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Comments Section */
.comments-section {
  margin-top: 40px;
  padding: 30px;
  background: var(--card-bg);
  border-radius: 18px;
  border: 1px solid var(--border-color);
}

.comments-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-align: center;
}

#disqus_thread {
  background: var(--bg-color);
  border-radius: 12px;
  padding: 15px;
}
