/* YouthVital România - Modern CSS Styles */

/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #ffffff;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #2c3e50;
}

h1 {
  font-size: 2.5rem;
  color: #6c5ce7;
}

h2 {
  font-size: 2rem;
  color: #6c5ce7;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

a {
  color: #6c5ce7;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #5a4fcf;
}

/* Header and Navigation */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #6c5ce7;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  font-weight: 500;
  color: #2c3e50;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #6c5ce7;
}

/* Buttons */
.cta-button,
.submit-button {
  display: inline-block;
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.cta-button:hover,
.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
  color: white;
}

.card-link,
.read-more {
  color: #6c5ce7;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.card-link:hover,
.read-more:hover {
  border-bottom-color: #6c5ce7;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Cards and Grids */
.guide-cards,
.benefits-grid,
.reviews-grid,
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.card,
.benefit,
.review,
.article-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover,
.benefit:hover,
.review:hover,
.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card-icon,
.benefit-icon,
.article-image {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

/* Reviews */
.stars {
  color: #ffd700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.reviewer {
  font-style: italic;
  color: #6c757d;
  margin-top: 1rem;
}

/* Forms */
.contact-form,
.contact-form-section form {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #6c5ce7;
}

/* Sections */
.guides,
.benefits,
.reviews,
.cta-section,
.contact-form-section {
  padding: 60px 0;
}

.guides {
  background-color: #f8f9fa;
}

.cta-section {
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
  color: white;
  text-align: center;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 3rem 0;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h3 {
  color: #6c5ce7;
  margin-bottom: 0.5rem;
}

.contact-additional {
  margin-top: 4rem;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.reason {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.reason-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Thank You Page */
.thank-you-content {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.thank-you-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.success-icon {
  font-size: 4rem;
  color: #28a745;
  margin-bottom: 2rem;
}

.confirmation-details {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.step {
  text-align: center;
}

.step-number {
  background: #6c5ce7;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: bold;
}

.actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.action-card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.action-card:hover {
  transform: translateY(-3px);
  color: inherit;
}

.action-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-reminder {
  background-color: #e3f2fd;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem 0;
}

/* Blog and Articles */
.blog-content,
.article-content {
  padding: 60px 0;
}

.article-header {
  text-align: center;
  margin-bottom: 3rem;
}

.article-meta {
  color: #6c757d;
  font-size: 0.9rem;
}

.article-meta span {
  margin-right: 2rem;
}

.article-body {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.article-body h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.article-body h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-body ul,
.article-body ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.article-body li {
  margin-bottom: 0.5rem;
}

.article-cta,
.blog-cta {
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  margin: 3rem 0;
}

.article-cta h3,
.blog-cta h3 {
  color: white;
  margin-bottom: 1rem;
}

.article-cta p,
.blog-cta p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.review-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

/* Legal Pages */
.legal-content {
  padding: 60px 0;
}

.legal-text {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.legal-text h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: #6c5ce7;
}

.legal-text h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-text ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.legal-text li {
  margin-bottom: 0.5rem;
}

.last-updated {
  color: #6c757d;
  font-style: italic;
  margin-bottom: 2rem;
}

.important-notice,
.emergency-notice {
  background-color: #fff3cd;
  border: 2px solid #ffeaa7;
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem 0;
}

.emergency-notice {
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.legal-cta {
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  margin: 3rem auto;
  max-width: 600px;
}

.legal-cta h3 {
  color: white;
  margin-bottom: 1rem;
}

.legal-cta p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

/* About Page */
.about-content {
  padding: 60px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin: 3rem 0;
}

.content-text ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.content-text li {
  margin-bottom: 0.5rem;
}

.info-box,
.cta-box {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.cta-box {
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
  color: white;
  text-align: center;
}

.cta-box h4 {
  color: white;
  margin-bottom: 1rem;
}

.cta-box p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

/* Footer */
footer {
  background-color: #2c3e50;
  color: white;
  padding: 40px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-brand h3 {
  color: #6c5ce7;
  margin-bottom: 1rem;
}

.footer-brand p {
  opacity: 0.8;
  line-height: 1.4;
}

.footer-contact h4,
.footer-links h4 {
  color: #6c5ce7;
  margin-bottom: 1rem;
}

.footer-contact p {
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: white;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: #6c5ce7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    gap: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .guide-cards,
  .benefits-grid,
  .reviews-grid,
  .articles-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-grid,
  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .steps-grid,
  .actions-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 15px;
  }

  .nav-container {
    padding: 1rem 15px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .card,
  .benefit,
  .review,
  .article-card {
    padding: 1.5rem;
  }

  .thank-you-card {
    padding: 2rem;
    margin: 0 15px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 40px 0;
  }

  .page-header {
    padding: 40px 0;
  }

  .guides,
  .benefits,
  .reviews,
  .cta-section,
  .contact-form-section {
    padding: 40px 0;
  }

  .nav-menu {
    gap: 0.5rem;
  }

  .nav-menu a {
    font-size: 0.9rem;
  }

  .logo {
    font-size: 1.5rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mt-2 {
  margin-top: 2rem;
}

.hidden {
  display: none;
}

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

.card,
.benefit,
.review,
.article-card {
  animation: fadeIn 0.6s ease-out;
}

/* Print Styles */
@media print {
  .navbar,
  .cta-section,
  .contact-form-section,
  footer {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  h1,
  h2,
  h3 {
    page-break-after: avoid;
  }
}
