/* Variabile culori */
:root {
  --background: #004E45;
  --accent-coral: #FF6D5A;
  --accent-sand: #FFECD1;
  --heading: #FFFFFF;
  --text: #1A1A1A;
  --button: #3A0CA3;
  --icon: #669BBC;
}

/* Reset și style de bază */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: var(--accent-coral);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-sand);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading);
  font-weight: bold;
  margin-bottom: 1rem;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header styling */
header {
  background-color: rgba(0, 78, 69, 0.9);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  max-width: 150px;
  height: auto;
}

.logo svg {
  fill: var(--heading);
  transition: fill 0.3s ease;
}

.logo svg:hover {
  fill: var(--accent-coral);
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 2rem;
}

nav ul li a {
  color: var(--heading);
  font-weight: 500;
  padding: 0.5rem;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent-coral);
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

.cta-button {
  background-color: var(--button);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: white;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(rgba(0, 78, 69, 0.7), rgba(0, 78, 69, 0.9)), url('../img/SmoTjH.jpg');
  background-size: cover;
  background-position: center;
  padding-top: 80px;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeIn 1.5s ease-in-out;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--heading);
}

.hero p {
  font-size: 1.2rem;
  color: var(--accent-sand);
  margin-bottom: 2rem;
}

/* About Section */
.about {
  padding: 5rem 0;
  background-color: white;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  transition: transform 0.5s ease;
}

.about-image:hover {
  transform: translateY(-10px);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background-color: var(--accent-sand);
}

.services-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--background);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 1.5rem;
}

.service-price {
  color: var(--accent-coral);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1rem 0;
}

/* Benefits Section */
.benefits {
  padding: 5rem 0;
  background-color: white;
}

.benefits-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--background);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-item {
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  background-color: rgba(0, 78, 69, 0.05);
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--icon);
  margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background-color: var(--accent-sand);
}

.testimonials-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--background);
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-slides {
  display: flex;
  width: 300%;
  transition: transform 0.5s ease;
}

.testimonial {
  width: calc(100% / 3);
  padding: 2rem;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* CSS-only slider */
.slider-controls {
  text-align: center;
  margin-top: 2rem;
}

.slider-radio {
  display: none;
}

.slider-label {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: var(--background);
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

#slide1:checked ~ .slider-controls .label1,
#slide2:checked ~ .slider-controls .label2,
#slide3:checked ~ .slider-controls .label3 {
  opacity: 1;
}

#slide1:checked ~ .testimonials-slides {
  transform: translateX(0);
}

#slide2:checked ~ .testimonials-slides {
  transform: translateX(-33.33%);
}

#slide3:checked ~ .testimonials-slides {
  transform: translateX(-66.66%);
}

/* Order Form Section */
.order {
  padding: 5rem 0;
  background-color: white;
}

.order-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--background);
}

.order-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--accent-sand);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--background);
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid transparent;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--icon);
  box-shadow: 0 0 0 3px rgba(102, 155, 188, 0.3);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 5px;
}

.submit-btn {
  display: block;
  width: 100%;
  background-color: var(--button);
  color: white;
  border: none;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.submit-btn:hover {
  background-color: #2c097c;
  transform: translateY(-3px);
}

/* Footer */
footer {
  background-color: #003530;
  color: var(--heading);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  max-width: 120px;
  margin-bottom: 1rem;
}

.footer-description {
  color: var(--accent-sand);
  margin-bottom: 1rem;
}

.footer-contact p {
  margin-bottom: 0.5rem;
}

.footer-links h4 {
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 1rem;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-text {
  flex: 1;
  margin-right: 1rem;
}

.cookie-button {
  background-color: var(--accent-coral);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 1s ease-in-out;
}

/* Responsive styles */
@media screen and (max-width: 992px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .about-content {
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  nav ul {
    display: none;
  }
  
  .header-container {
    flex-direction: column;
    align-items: center;
  }
  
  .logo {
    margin-bottom: 1rem;
  }
  
  .hero h1 {
    font-size: 2.3rem;
  }
  
  .service-card {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .services-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .order-form {
    padding: 1.5rem;
  }
}

/* Thank You Page */
.thank-you {
  text-align: center;
  padding: 5rem 0;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.thank-you h1 {
  margin-bottom: 1.5rem;
  color: var(--heading);
}

.thank-you p {
  color: var(--accent-sand);
  margin-bottom: 2rem;
  max-width: 600px;
}

.back-home {
  display: inline-block;
  background-color: var(--accent-coral);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.back-home:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: white;
} 