/* 
  LifePower - Coaching pentru realizări personale
  CSS Stylesheet
*/

:root {
  /* Color Palette */
  --primary-color: #6930c3;
  --primary-color-dark: #5429a3;
  --secondary-color: #48bfe3;
  --secondary-color-dark: #3da8c9;
  --accent-color: #f72585;
  --accent-color-dark: #d81b72;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --gray-color: #6c757d;
  --light-gray-color: #e9ecef;
  
  /* Gradients */
  --primary-gradient: linear-gradient(135deg, #6930c3 0%, #5e60ce 100%);
  --secondary-gradient: linear-gradient(135deg, #48bfe3 0%, #56cfe1 100%);
  --accent-gradient: linear-gradient(135deg, #f72585 0%, #b5179e 100%);
  --overlay-gradient: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
  
  /* Shadows for Neumorphism */
  --neu-shadow-small: 4px 4px 8px rgba(0, 0, 0, 0.1), -4px -4px 8px rgba(255, 255, 255, 0.5);
  --neu-shadow: 8px 8px 16px rgba(0, 0, 0, 0.1), -8px -8px 16px rgba(255, 255, 255, 0.5);
  --neu-shadow-inset: inset 4px 4px 8px rgba(0, 0, 0, 0.1), inset -4px -4px 8px rgba(255, 255, 255, 0.5);
  
  /* Font Families */
  --heading-font: 'Raleway', sans-serif;
  --body-font: 'Open Sans', sans-serif;
  
  /* Font Sizes */
  --h1-size: 3.5rem;
  --h2-size: 2.5rem;
  --h3-size: 1.8rem;
  --h4-size: 1.3rem;
  --body-size: 1rem;
  --small-size: 0.875rem;
  
  /* Spacing */
  --section-spacing: 5rem;
  --element-spacing: 1.5rem;
  
  /* Border Radius */
  --border-radius-small: 8px;
  --border-radius: 12px;
  --border-radius-large: 24px;
  
  /* Animation Timing */
  --transition-fast: 0.2s;
  --transition-medium: 0.3s;
  --transition-slow: 0.5s;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  font-size: var(--body-size);
  color: var(--dark-color);
  line-height: 1.6;
  background-color: var(--light-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: var(--h1-size);
}

h2 {
  font-size: var(--h2-size);
}

h3 {
  font-size: var(--h3-size);
}

h4 {
  font-size: var(--h4-size);
}

p {
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast) ease;
}

a:hover {
  color: var(--primary-color-dark);
  text-decoration: none;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

/* Container spacing adjustments */
section {
  padding: 4rem 0;
}

/* Button Styles */
.btn, button, input[type='submit'] {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  border: 1px solid transparent;
  padding: 0.675rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: var(--border-radius);
  transition: all var(--transition-medium) ease;
  box-shadow: var(--neu-shadow-small);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn:hover, button:hover, input[type='submit']:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn:active, button:active, input[type='submit']:active {
  transform: translateY(0);
  box-shadow: var(--neu-shadow-inset);
}

.btn-primary {
  background: var(--primary-gradient);
  color: white;
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-color-dark) 0%, #5e60ce 100%);
  color: white;
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
  background: var(--primary-gradient);
  color: white;
  border-color: transparent;
}

.btn-outline-light {
  background: transparent;
  color: var(--light-color);
  border: 2px solid var(--light-color);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--light-color);
}

.btn-lg {
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
}

.btn-block {
  display: block;
  width: 100%;
}

/* Form Styles */
.form-control {
  display: block;
  width: 100%;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--dark-color);
  background-color: white;
  background-clip: padding-box;
  border: 2px solid var(--light-gray-color);
  border-radius: var(--border-radius);
  transition: all var(--transition-medium) ease;
}

.form-control:focus {
  color: var(--dark-color);
  background-color: white;
  border-color: var(--primary-color);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(105, 48, 195, 0.25);
}

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

.form-group label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* Header Section */
.header-section {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.navbar {
  padding: 1rem 0;
  transition: all var(--transition-medium) ease;
}

.navbar-brand {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color);
}

.nav-link {
  font-weight: 600;
  color: var(--dark-color) !important;
  margin: 0 0.5rem;
  padding: 0.5rem 0.8rem !important;
  border-radius: var(--border-radius-small);
  transition: all var(--transition-fast) ease;
}

.nav-link:hover {
  color: var(--primary-color) !important;
  background-color: rgba(105, 48, 195, 0.08);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 8rem 0 5rem;
  margin-top: 0;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-gradient);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* Features Section */
.features-section {
  padding: var(--section-spacing) 0;
  background-color: white;
}

.feature-card {
  height: 100%;
  border: none;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all var(--transition-medium) ease;
  box-shadow: var(--neu-shadow);
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.card-image {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition-medium) ease;
}

.feature-card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Workshops Section */
.workshops-section {
  padding: var(--section-spacing) 0;
  background-color: #f9f8ff;
}

.workshop-card {
  height: 100%;
  border: none;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all var(--transition-medium) ease;
  box-shadow: var(--neu-shadow);
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.workshop-card:hover {
  transform: translateY(-10px);
}

.workshop-details {
  margin: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.workshop-details span {
  font-size: var(--small-size);
  color: var(--gray-color);
  display: flex;
  align-items: center;
}

.workshop-details span i {
  margin-right: 0.5rem;
}

/* Events Section */
.events-section {
  padding: var(--section-spacing) 0;
  background-color: white;
}

.event-card {
  height: 100%;
  border: none;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all var(--transition-medium) ease;
  box-shadow: var(--neu-shadow);
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.event-card:hover {
  transform: translateY(-10px);
}

.event-details {
  margin: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.event-details span {
  font-size: var(--small-size);
  color: var(--gray-color);
  display: flex;
  align-items: center;
}

.event-details span i {
  margin-right: 0.5rem;
}

/* Events Calendar Section */
.events-calendar-section {
  padding: var(--section-spacing) 0;
  background-color: #f9f8ff;
}

.timeline-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--primary-gradient);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: 30px;
  margin-bottom: 2.5rem;
  width: 50%;
  position: relative;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 30px;
  margin-left: auto;
}

.timeline-dot {
  position: absolute;
  top: 15px;
  right: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-gradient);
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -10px;
}

.timeline-content {
  background: white;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--neu-shadow);
  transition: all var(--transition-medium) ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
}

.timeline-card {
  margin-top: 1rem;
  padding: 1rem;
  background: #f9f8ff;
  border-radius: var(--border-radius-small);
}

/* Insights Section */
.insights-section {
  padding: var(--section-spacing) 0;
  background-color: white;
}

.insight-card {
  height: 100%;
  border: none;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all var(--transition-medium) ease;
  box-shadow: var(--neu-shadow);
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.insight-card:hover {
  transform: translateY(-10px);
}

.insight-card .btn {
  margin-top: auto;
}

.btn-outline-primary.btn-sm {
  padding: 0.4rem 1rem;
  border-radius: var(--border-radius-small);
  font-size: 0.9rem;
}

/* Clientele Section */
.clientele-section {
  padding: var(--section-spacing) 0;
  background-color: #f9f8ff;
}

.testimonial-card {
  text-align: center;
  height: 100%;
  border: none;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all var(--transition-medium) ease;
  box-shadow: var(--neu-shadow);
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.5rem;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-card .card-image {
  margin-bottom: 1rem;
}

.testimonial-card .card-image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.client-position {
  color: var(--gray-color);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.rating {
  color: #ffc107;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
}

/* Innovation Section */
.innovation-section {
  padding: var(--section-spacing) 0;
  background-color: white;
}

.innovation-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--neu-shadow);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.innovation-content {
  padding: 2rem;
}

.innovation-features {
  margin-top: 2rem;
}

.feature-item {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--accent-color);
}

.feature-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* Resources Section */
.resources-section {
  padding: var(--section-spacing) 0;
  background-color: #f9f8ff;
}

.resource-card {
  height: 100%;
  border: none;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all var(--transition-medium) ease;
  box-shadow: var(--neu-shadow);
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.resource-card:hover {
  transform: translateY(-10px);
}

.resource-links {
  list-style-type: none;
  padding-left: 0;
  margin-top: 1rem;
}

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

.resource-links a {
  display: block;
  padding: 0.5rem 0.8rem;
  background: rgba(105, 48, 195, 0.08);
  border-radius: var(--border-radius-small);
  color: var(--primary-color);
  font-weight: 500;
  transition: all var(--transition-fast) ease;
}

.resource-links a:hover {
  background: var(--primary-gradient);
  color: white;
}

/* History Section */
.history-section {
  padding: var(--section-spacing) 0;
  background-color: white;
}

/* Careers Section */
.careers-section {
  padding: var(--section-spacing) 0;
  background-color: #f9f8ff;
}

.careers-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--neu-shadow);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.careers-content {
  padding: 2rem;
}

.career-benefits {
  margin: 2rem 0;
}

.career-benefits ul {
  padding-left: 1.2rem;
}

.career-benefits li {
  margin-bottom: 0.5rem;
}

.job-listings {
  margin-top: 1.5rem;
}

.job-item {
  margin-bottom: 1.5rem;
  padding: 1.2rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--neu-shadow-small);
}

.job-item h5 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.job-item p {
  margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
  padding: var(--section-spacing) 0;
  background-color: white;
}

.contact-info {
  padding: 2rem;
  background: #f9f8ff;
  border-radius: var(--border-radius);
  box-shadow: var(--neu-shadow);
}

.contact-details {
  margin: 2rem 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-item i {
  margin-right: 1rem;
  color: var(--primary-color);
  font-size: 1.5rem;
}

.contact-item h4 {
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
}

.social-media {
  margin-top: 1.5rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-links a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: white;
  border-radius: var(--border-radius-small);
  color: var(--primary-color);
  font-weight: 500;
  transition: all var(--transition-fast) ease;
  box-shadow: var(--neu-shadow-small);
}

.social-links a:hover {
  background: var(--primary-gradient);
  color: white;
  transform: translateY(-2px);
}

.contact-form-container {
  padding: 2rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--neu-shadow);
}

/* Footer Section */
.footer-section {
  background: #2b2d42;
  color: white;
  padding: 4rem 0 0;
}

.footer-logo h3 {
  font-size: 2rem;
  margin-bottom: 0.3rem;
}

.footer-about {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  list-style-type: none;
  padding-left: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-fast) ease;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact {
  margin-bottom: 1.5rem;
}

.footer-contact p {
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 0.8rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-social a {
  display: inline-block;
  color: white;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-small);
  transition: all var(--transition-fast) ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding: 2rem 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.success-content {
  max-width: 700px;
  padding: 3rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--neu-shadow);
}

.success-icon {
  font-size: 4rem;
  color: #4caf50;
  margin-bottom: 1.5rem;
}

/* Privacy and Terms Pages */
.page-content {
  padding-top: 100px;
  padding-bottom: 3rem;
}

.page-title {
  margin-bottom: 2rem;
}

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

.animated {
  animation: fadeUp 0.5s ease-out forwards;
}

/* Read More links */
a.read-more {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  font-weight: 600;
  transition: all var(--transition-fast) ease;
}

a.read-more:after {
  content: '→';
  margin-left: 0.5rem;
  transition: transform var(--transition-fast) ease;
}

a.read-more:hover {
  color: var(--accent-color-dark);
}

a.read-more:hover:after {
  transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  :root {
    --h1-size: 3rem;
    --h2-size: 2.2rem;
    --h3-size: 1.6rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .timeline:before {
    left: 30px;
  }

  .timeline-item, .timeline-item:nth-child(even) {
    width: 100%;
    padding-left: 60px;
    padding-right: 0;
    justify-content: flex-start;
  }

  .timeline-dot, .timeline-item:nth-child(even) .timeline-dot {
    left: 20px;
    right: auto;
  }
}

@media (max-width: 767.98px) {
  :root {
    --h1-size: 2.5rem;
    --h2-size: 2rem;
    --h3-size: 1.5rem;
    --section-spacing: 4rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .navbar-brand {
    font-size: 1.5rem;
  }

  .social-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .social-links a {
    width: 100%;
    text-align: center;
  }
}

html,body{
  overflow-x: hidden;
}