@charset "utf-8";
/* CSS Document */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}
html{
  scroll-behavior:smooth;
}
body {
  font-family: 'Open Sans', sans-serif;
  background-color: #ffffff;
  color: #111111;
  line-height: 1.7;
  overflow-x: hidden;
}
img{
  width:100%;
  display:block;
}
a{
  text-decoration:none;
}
ul{
  list-style:none;
}

/* ================= CONTAINER ================= */

.container {
  width: min(1200px, calc(100% - 32px));
  margin-inline: auto;
}

/* ================= HEADER ================= */
.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  background:#ffffff;
  box-shadow:0 4px 18px rgba(0,0,0,0.08);
}
.header-inner{
  height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* ================= LOGO ================= */
.logo{
  display:flex;
  align-items:center;
  gap:12px;
}
.logo-mark{
  width:46px;
  height:46px;
  border-radius:50%;
  background:#16a34a;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.2rem;
}
.logo-text{
  display:flex;
  flex-direction:column;
  line-height:1;
}
.logo-top{
  font-family:'Festive', cursive;
  font-size:1.8rem;
  color:#16a34;
}
.logo-bottom{
  font-size:0.9rem;
  font-weight:700;
  color:#0f172a;
  letter-spacing:2px;
  text-transform:uppercase;
}

/* ================= HAMBURGER ================= */
.menu-toggle{
  width:46px;
  height:46px;
  border:none;
  background:none;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:6px;
  cursor:pointer;
}
.menu-toggle span{
  width:28px;
  height:3px;
  background:#0f172a;
  border-radius:10px;
  transition:0.3s;
}
/* ================= NAV MOBILE ================= */
.site-nav{
  position:fixed;
  inset:0;
  background:
    linear-gradient(rgba(15,23,42,0.96), rgba(15,23,42,0.96));
  display:flex;
  align-items:center;
  justify-content:center;
  transform:translateY(-100%);
  transition:0.4s ease;
}
.site-nav.is-open{
  transform:translateY(0);
}
.close-menu{
  position:absolute;
  top:24px;
  right:24px;
  width:46px;
  height:46px;
  border:none;
  border-radius:50%;
  background:#fff;
  color:#0f172a;
  font-size:1.3rem;
  cursor:pointer;
}
.nav-list{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:28px;
}
.nav-list a{
	 position: relative;
  color:#fff;
  font-size:1.2rem;
  font-weight:700;
  transition:0.3s;
}
.nav-list a:hover,
.nav-list a.active{
  color:#4ade80;
}
.nav-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #4ade80;
    transition: width 0.3s ease;
  }
.nav-list a:hover::after,
  .nav-list a.active::after {
    width: 100%;
  }

/* ================= HERO ================= */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;

  background-image:
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.65)),
    url('../images/hero.jpg');

  background-size: cover;
  background-position: center;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
}
.hero-subtitle {
  display: inline-block;
  margin-bottom: 16px;
  color: #7dff3b;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero p {
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 32px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
}
.btn-primary {
  background: linear-gradient(135deg, #7dff3b, #49b80f);
  color: #000000;
}
.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(125, 255, 59, 0.3);
}
.btn-secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
}
.btn-secondary:hover {
  background-color: #ffffff;
  color: #000000;
}

/* ================= SECTIONS ================= */
.section {
  padding: 80px 0;
}
.section-heading {
  text-align: center;
  margin-bottom: 50px;
}
.section-subtitle {
  display: inline-block;
  margin-bottom: 12px;
  color: #49b80f;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-title {
  font-size: 2rem;
  line-height: 1.2;
}

/* ================= FEATURES ================= */
.features-grid {
  display: grid;
  gap: 24px;
}
.feature-card {
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 24px;
  text-align: center;
  border: 1px solid #eeeeee;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: #7dff3b;
}
.feature-icon {
  font-size: 3rem;
  margin-bottom: 18px;
  transition: 0.3s ease;
}
.feature-card:hover .feature-icon {
  transform: scale(1.08);
}
.feature-card h3 {
  margin-bottom: 14px;
  font-size: 1.3rem;
}

/* ================= ABOUT ================= */
.about {
  background-color: #f7f7f7;
}
.about-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
.about-image img {
  width: 100%;
  border-radius: 24px;
  display: block;
}
.about-content p {
  margin-bottom: 18px;
}
.about-list {
  list-style: none;
  margin-bottom: 30px;
}
.about-list li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}
.about-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #49b80f;
  font-weight: bold;
}

/* ================= PROGRAM ================= */
.program-grid {
  display: grid;
  gap: 24px;
}
.program-card {
  background-color: #111111;
  color: #ffffff;
  padding: 32px 24px;
  border-radius: 24px;
  text-align: center;
  transition: 0.3s ease;
}
.program-card:hover {
  transform: translateY(-6px);
}
.program-card h3 {
  margin-bottom: 12px;
  color: #7dff3b;
}

/* ================= CTA ================= */
.cta-box {
  background: linear-gradient(135deg, #111111, #1f1f1f);
  color: #ffffff;
  padding: 60px 24px;
  border-radius: 32px;
  text-align: center;
}
.cta-box h2 {
  margin-bottom: 18px;
  font-size: 2rem;
}
.cta-box p {
  margin-bottom: 28px;
  color: rgba(255,255,255,0.85);
}

/* ================= FOOTER ================= */
.site-footer {
  background-color: #050505;
  color: #ffffff;
  padding: 24px 0;
  text-align: center;
}

/* ================= ---servicii.html---HERO ================= */

.page-hero-servicii {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;

  background-image:
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.65)),
    url('../images/hero-servicii.jpg');

  background-size: cover;
  background-position: center;
}
.page-hero-servicii-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
}
.page-hero-servicii-subtitle {
  display: inline-block;
  margin-bottom: 16px;
  color: #7dff3b;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.page-hero-servicii h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
.page-hero-servicii p {
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 32px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
}

/* ================= ---servicii.html---SERVICES PAGE ================= */

.services {
  background-color: #ffffff;
}
.services-grid {
  display: grid;
  gap: 24px;
}
.service-card {
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 24px;
  text-align: center;
  border: 1px solid #eeeeee;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: #7dff3b;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}
.service-icon {
  font-size: 3rem;
  margin-bottom: 18px;
  transition: 0.3s ease;
}
.service-card:hover .service-icon {
  transform: scale(1.08);
}
.service-card h3 {
  margin-bottom: 14px;
  font-size: 1.3rem;
}
.service-card p {
  color: #555555;
}

/* ================= ---servicii.html---MEMBERSHIP ================= */

.membership {
  background-color: #f7f7f7;
}
.membership-grid {
  display: grid;
  gap: 24px;
}
.membership-card {
  position: relative;
  background-color: #ffffff;
  padding: 36px 24px;
  border-radius: 24px;
  text-align: center;
  border: 1px solid #eeeeee;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}
.membership-card:hover {
  transform: translateY(-6px);
  border-color: #7dff3b;
}
.membership-card.featured {
  background: linear-gradient(135deg, #111111, #1f1f1f);
  color: #ffffff;
  border-color: #7dff3b;
}
.membership-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 16px;
  border-radius: 999px;
  background-color: #7dff3b;
  color: #000000;
  font-size: 0.85rem;
  font-weight: 700;
}
.membership-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.price {
  margin-bottom: 24px;
  font-size: 2rem;
  font-weight: 700;
  color: #49b80f;
}
.membership-card.featured .price {
  color: #7dff3b;
}
.membership-list {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}
.membership-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 28px;
}
.membership-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #49b80f;
  font-weight: 700;
}
.membership-card.featured .membership-list li::before {
  color: #7dff3b;
}

/* ================= ---despre.html---HERO ================= */

.page-hero-despre {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;

  background-image:
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.65)),
    url('../images/hero-despre.jpg');

  background-size: cover;
  background-position: center;
}
.page-hero-despre-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
}
.page-hero-despre-subtitle {
  display: inline-block;
  margin-bottom: 16px;
  color: #7dff3b;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.page-hero-despre h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
.page-hero-despre p {
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 32px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
}

/* ================= ---despre.html---ABOUT STORY ================= */

.about-story {
  background-color: #ffffff;
}
.about-story-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
.about-story-image img {
  width: 100%;
  display: block;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
}
.about-story-content p {
  margin-bottom: 18px;
  color: #555555;
}


/* ================= ---despre.html---VALUES ================= */

.values {
  background-color: #f7f7f7;
}
.values-grid {
  display: grid;
  gap: 24px;
}
.value-card {
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 24px;
  text-align: center;
  border: 1px solid #eeeeee;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}
.value-card:hover {
  transform: translateY(-6px);
  border-color: #7dff3b;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}
.value-icon {
  font-size: 3rem;
  margin-bottom: 18px;
  transition: 0.3s ease;
}
.value-card:hover .value-icon {
  transform: scale(1.08);
}
.value-card h3 {
  margin-bottom: 14px;
  font-size: 1.3rem;
}
.value-card p {
  color: #555555;
}

/* ================= -despre.html-STATS ================= */

.stats {
  background-color: #111111;
}
.stats-grid {
  display: grid;
  gap: 24px;
}
.stat-card {
  padding: 32px 24px;
  border-radius: 24px;
  text-align: center;
  background: linear-gradient(135deg, #1f1f1f, #050505);
  border: 1px solid rgba(125, 255, 59, 0.25);
  transition: 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-6px);
  border-color: #7dff3b;
}
.stat-card h3 {
  margin-bottom: 10px;
  color: #7dff3b;
  font-size: 2.3rem;
}
.stat-card p {
  color: rgba(255,255,255,0.85);
}

/* ================= ---contact.php---HERO ================= */

.page-hero-contact {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;

  background-image:
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.65)),
    url('../images/hero-contact.jpg');

  background-size: cover;
  background-position: center;
}
.page-hero-contact-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
}
.page-hero-contact-subtitle {
  display: inline-block;
  margin-bottom: 16px;
  color: #7dff3b;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.page-hero-contact h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
.page-hero-contact p {
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: 32px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
}
.contact-section {
  background-color: #ffffff;
}
.contact-grid {
  display: grid;
  gap: 40px;
}
.contact-info p {
  margin-bottom: 18px;
  color: #555555;
}
.contact-details {
  margin-top: 30px;
}
.contact-details p {
  margin-bottom: 14px;
  color: #222222;
}

/* ================= CONTACT FORM ================= */
.contact-form-box {
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 24px;
  border: 1px solid #eeeeee;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.contact-form {
  display: grid;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  margin-bottom: 8px;
  font-weight: 600;
  color: #111111;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #dddddd;
  font-family: inherit;
  font-size: 1rem;
  transition: 0.3s ease;
  background-color: #ffffff;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #7dff3b;
  box-shadow: 0 0 0 4px rgba(125, 255, 59, 0.15);
}
.form-group textarea {
  resize: vertical;
  min-height: 160px;
}


















/* ================= TABLET ================= */

@media (min-width: 768px) {

  .hero {
    min-height: 700px;
  }
.hero h1 {
    font-size: 4rem;
    max-width: 900px;
    margin-inline: auto;
  }
.hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
	
 .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
.about-grid {
    grid-template-columns: 1fr 1fr;
  }
	.program-grid {
    grid-template-columns: repeat(2, 1fr);
  }
	
	/*---servicii.html---*/
	.page-hero-servicii {
    min-height: 700px;
  }
.page-hero-servicii h1 {
    font-size: 4rem;
    max-width: 900px;
    margin-inline: auto;
  }
.services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
 .membership-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }
	
/*---despre.html---*/
	.page-hero-despre {
    min-height: 700px;
  }
.page-hero-despre h1 {
    font-size: 4rem;
    max-width: 900px;
    margin-inline: auto;
  }
.about-story-grid {
    grid-template-columns: 1fr 1fr;
  }
 .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
	 .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
	.page-hero-contact {
    min-height: 700px;
  }
.page-hero-contact h1 {
    font-size: 4rem;
    max-width: 900px;
    margin-inline: auto;
  }
	 .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
	.contact-form-box {
    padding: 40px;
  }
	
	
	
	
	
}














@media(min-width:1024px){

  .menu-toggle,
  .close-menu{
    display:none;
  }
.site-nav{
    position:static;
    inset:auto;
    background:transparent;
    transform:none;
    width:auto;
  }
.nav-list{
    flex-direction:row;
    gap:32px;
  }
.nav-list a{
    position:relative;
    color:#0f172a;
    font-size:1rem;
  }
.nav-list a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#16a34a;
    transition:0.3s;
  }
.nav-list a:hover::after,
  .nav-list a.active::after{
    width:100%;
  }
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;

  background-image:
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.65)),
    url('../images/hero.jpg');

  background-size: cover;
  background-position: top;
}
	
 .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
	.about-image img {
  width: 100%;
		height: 400px;
  border-radius: 24px;
  display: block;
}
 .program-grid {
    grid-template-columns: repeat(3, 1fr);
  }
.section-title {
    font-size: 2.5rem;
  }
	
.page-hero-servicii {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
	padding-bottom: 60px;

  background-image:
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.65)),
    url('../images/hero-servicii.jpg');

  background-size: cover;
  background-position: top;
}
.services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
 .membership-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
 .membership-card.featured {
    transform: translateY(-14px);
  }
 .membership-card.featured:hover {
    transform: translateY(-20px);
  }
	
	.page-hero-despre {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-bottom: 60px;
  background-image:
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.65)),
    url('../images/hero-despre.jpg');

  background-size: cover;
  background-position: top;
}
 .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
	
.page-hero-contact {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-bottom: 60px;
  background-image:
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.65)),
    url('../images/hero-contact.jpg');

  background-size: cover;
  background-position: top;
}
	
	
	
	
}






/* ================= FORM MESSAGE ================= */

.form-message {
  padding: 14px 18px;
  margin-bottom: 24px;
  border-radius: 14px;
  font-weight: 600;
}

.form-message.success {
  background-color: rgba(125, 255, 59, 0.15);
  color: #2d7a00;
  border: 1px solid rgba(125, 255, 59, 0.3);
}

.form-message.error {
  background-color: rgba(255, 0, 0, 0.08);
  color: #b00020;
  border: 1px solid rgba(255, 0, 0, 0.15);
}

/* ================= HONEYPOT ================= */

.honeypot {
  position: absolute;
  left: -9999px;
}




























































































































































































