/* Coming Soon - Main Stylesheet */
/* ============================================
   SECTION-SPECIFIC CLASSES
   ============================================ */
body {
  border-top: 0.5em #F86E13 solid;
}
/* Hero Section */
.section-hero {
  /* Additional hero-specific styles can be added here */
  position: relative;
  overflow: hidden;
}
.section-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/assets/images/background.jpg');
  background-size: cover;
  background-position: top right;
  opacity: 0.3;
  pointer-events: none;
}
.section-hero h1 {
  line-height: 0.9;
  color: #D01D1D;
}
/* Features Section */
.section-features {
  /* Additional features-specific styles can be added here */
}
.section-features h3 {
  color: #1988aa;
}
.section-features .sub-feature li {
  color: #1988aa;
  opacity: 0.7;
}
/* CTA Section */
.section-cta {
  /* Additional CTA-specific styles can be added here */
}
/* Author Section */
.author-box {
  background-color: #0077B5;
  /* LinkedIn blue */
  border-radius: 0.5rem;
}
.author-photo {
  outline: 0.2em white solid;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
/* Footer Section */
.section-footer {
  /* Additional footer-specific styles can be added here */
  background-image: url(/assets/images/background-x.jpg);
  background-size: cover;
}
.section-signup {
  background: linear-gradient(to bottom, #F86E13 0%, #F9C420 100%);
  overflow: auto;
  display: block;
  outline: 0.5em white solid;
  /* Drop shadow for section-signup */
  box-shadow: 0 8px 32px 0 rgba(16, 16, 16, 0.12), 0 1.5px 5px 0 rgba(60, 60, 60, 0.13);
}
.section-signup input {
  background: linear-gradient(to bottom, #FEFDEA 0%, #FEF6B6 100%);
  color: black;
}
.section-email {
  background: linear-gradient(to bottom, #F86E13 0%, #F9C420 100%);
  overflow: auto;
  display: block;
  outline: 0.5em white solid;
  /* Drop shadow for section-email */
  box-shadow: 0 8px 32px 0 rgba(16, 16, 16, 0.12), 0 1.5px 5px 0 rgba(60, 60, 60, 0.13);
}
/* Modal Signup Styles */
.modal-signup-header {
  background: linear-gradient(to bottom, #F86E13 0%, #F9C420 100%);
  color: white;
}
.modal-signup-input {
  background: linear-gradient(to bottom, #FEFDEA 0%, #FEF6B6 100%);
  color: black;
  transition: background 0.2s ease;
}
.modal-signup-input:focus {
  background: linear-gradient(to bottom, #FFE5CC 0%, #FFD699 100%);
  outline: none;
  box-shadow: 0 0 0 2px #F86E13;
}
/* Modal Info Box */
.modal-info-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  margin: 1rem 1.5rem;
  background-color: #EFF6FF;
  /* Very light blue (blue-50) */
  border-radius: 0.5rem;
}
.modal-info-box-top {
  border-radius: 0.5rem;
}
.modal-info-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}
.modal-info-text {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.5;
  color: black;
}
/* Modal Form Layout - Two Column Table-like */
.modal-form {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem 1rem;
  align-items: start;
}
.modal-form-field {
  display: contents;
  /* Makes children participate in parent grid */
}
.modal-field-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  white-space: nowrap;
  padding-top: 0.5rem;
  text-align: left;
}
.modal-field-input {
  width: 100%;
}
/* Special handling for GDPR and buttons (span both columns) */
.modal-gdpr-field,
.modal-error-message,
.modal-success-message,
.modal-button-group,
.modal-button-close {
  grid-column: 1 / -1;
  /* Span all columns */
}
/* Modal Overlay */
.modal-overlay {
  overflow-y: auto;
  /* Fixed overlay with backdrop - other styles in Tailwind classes */
}
/* ============================================
   CUSTOM ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}
/* Custom fonts - if needed, add @font-face rules here */
/* Body defaults */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* Language switcher enhancements */
.language-switcher a {
  transition: all 0.2s ease;
}
/* Form focus states - enhanced */
input:focus,
button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}
/* Custom button hover effects */
button {
  transition: all 0.3s ease;
}
button:hover {
  transform: translateY(-2px);
}
button:active {
  transform: translateY(0);
}
/* Card hover effects */
.hover\:shadow-lg:hover {
  transform: translateY(-4px);
  transition: all 0.3s ease;
}
/* Loading spinner for form submission */
.spinner {
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* Success/Error message animations */
.message-show {
  animation: fadeIn 0.3s ease;
}
/* Responsive text sizing */
@media (max-width: 640px) {
  .text-7xl {
    font-size: 3rem;
    line-height: 1.1;
  }
}
/* Custom scrollbar (optional) */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #F9C420;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #F86E13;
}
/* Utilities */
.prose h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.prose p {
  margin-bottom: 1rem;
}
.prose ul {
  margin-bottom: 1rem;
}
/* Print styles */
@media print {
  nav,
  footer,
  .language-switcher {
    display: none;
  }
}
/* Accessibility improvements */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
/* Focus visible for keyboard navigation */
*:focus-visible {
  outline: 2px solid #dc2626;
  outline-offset: 2px;
}
/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
img.logo {
  /* 4px white outline */
  /* Use filter drop-shadow to create a non-rectangular white outline around the shape */
  filter: drop-shadow(0 4px 12px #ffffff);
  width: 30em;
  margin: auto;
  margin-bottom: 2em;
  /* Drop shadow */
}
