/* 
Created by Astrovio Websolutions
Website für Sarah Barhoum

TailwindCSS, GSAP Animations, AlpineJS, Flowbite, PrelineUI, Casdacing Style Sheets (CSS), HTML, Javascript 
2025 © Astrovio Websolutions
www.astrovio.de  

*/



@import url("https://use.typekit.net/uzi1uoc.css");

/* Globale Scroll-Einstellungen für smoothes Scrollen */
html {
  scroll-behavior: smooth;
}

/* Für Safari und ältere Browser mit SmoothScroll Polyfill */
.scroll-behavior-smooth {
  scroll-behavior: smooth;
}



body {
  font-family: 'sofia-pro', sans-serif;
  background-color: #ffffff;
    color: #333;
    margin: 0;
    padding: 0;
  }
  @media (min-width: 768px) {
    #popup-form {
      max-width: 50%; 
      padding: 1.5rem; 
      font-size: 1rem; 
    }
  }

  @media (min-width: 1024px) {
    #popup-form {
      max-width: 30%; 
      padding: 2rem;
      font-size: 1.1rem; 
    }
  }
    #popup-form {
      padding: 1rem;
    max-height: 100%; 
    overflow-y: auto;
  }
  
  #popup-overlay {
    overflow: hidden;
  }
  
#popup-form.show {
  transform: translateX(0);
}

#popup-overlay.show {
  display: block;
}



  .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .loader .circle {
    width: 40px;
    height: 40px;
    background-color: #ffc800;
    border-radius: 50%;
    animation: fadeInOut 1s infinite ease-in-out, moveCircle 1s infinite ease-in-out;
  }
  @keyframes moveCircle {
    0% {
      transform: rotate(0deg) translate(30px) rotate(0deg);
    }
    100% {
      transform: rotate(360deg) translate(30px) rotate(-360deg);
    }
  }
  
  @keyframes fadeInOut {
    0%, 100% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
  }
.social-icons {
display: flex;
justify-content: center;
gap: 15px;
}

.social-icons a {
font-size: 1.5rem;
}

.about-section {
display: flex;
flex-wrap: wrap; 
align-items: center;
justify-content: center;
padding: 50px 20px;
background-color: #f8f9fa;
}


.wave-container {
  position: relative;
  background-color: #f8f9fa;
}

.wave {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: -5px;
}


.about-section img {
width: 300px; 
border-radius: 10px;
margin-right: 40px; 
margin-bottom: 20px; 
}

.about-section div {
max-width: 700px;
text-align: left;
}

@media (max-width: 768px) {
.about-section {
flex-direction: column; 
text-align: center; 
padding: 20px 10px; 
}

.about-section img {
width: 250px;  
margin-right: 0;
margin-bottom: 15px; 
}

.about-section div {
max-width: 80%;
}
}

  .about-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
  }
  .about-section p {
    font-size: 1.1em;
    line-height: 1.6em;
  }

  .parallax-header {
  position: relative;
  height: 80vh;
  background-image: url("https://astroviowebsolutions.de/cdn/customers/hero.jpeg");
  background-attachment: fixed;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}



.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(90, 89, 89, 0.6);
}

.content-container {
  z-index: 2;
  text-align: center;
}

.hero-title {
  font-weight: bold;
  font-size: clamp(2rem, 5vw, 4rem);
  color: #ffffff;
}



.cta-button {
  margin-top: 20px;
  padding: 12px 24px;
  font-size: clamp(1rem,2vw,1.25rem);
  
font-weight:bold;  
color:#fff;  
background-color:#ffcc00;  
border:none;  
border-radius:.5rem;  
cursor:pointer;  
transition:.3s ease-in-out;}  

.cta-button:hover {background-color:#ffaa00;}  

.scroll-down {position:absolute;bottom:.75rem;font-size:.75rem;color:#fff;cursor:pointer;animation:bounce-infinite;}  


.scroll-down {
position: absolute;
bottom: 20px;
font-size: 2rem;
color: #ffffff;
cursor: pointer;
animation: bounce 2s infinite; 
}

/* Keyframes */
@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

@keyframes bounce {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-10px);
}
}
@keyframes bounce {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-10px);
}
}

/* iPad, tablet etc. */

@media (max-width: 1024px) and (orientation: landscape) {
.parallax-header {
height: 70vh; 
background-attachment: scroll; 
background-size: cover;
background-position: center;

}

/* .parallax-header h2 {
font-size: 1.3rem;
padding: 10px 20px; 
} */

.scroll-down {
font-size: 1.5rem; 
}
} 



    
@media (max-width: 768px) {
.parallax-header {
height: 70vh; 
background-attachment: scroll; 
}

.parallax-header h2 {
font-size: 2rem;
padding: 10px 20px; 
}

.scroll-down {
font-size: 1.5rem; 
}
}


  .contact-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
  }
  .contact-form {
    width: 100%;
    max-width: 500px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  }
  .contact-form .btn {
    background-color: #007bff;
    color: #ffffff;
  }
  .contact-form .btn:hover {
    background-color: #0056b3;
  }

  .map-container {
    margin-top: 30px;
  }
  iframe {
    border: 0;
    width: 100%;
    height: 300px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  }

  .contact-details {
    margin-top: 20px;
  }
  .contact-details h5 {
    margin-bottom: 10px;
  }

  .contact-details p {
        margin: 5px 0;
    }
    .contact-details a {
        text-decoration: none;
    }
    .career-section {
background-color: #dfdede;
color: #333;
}

.career-title {
font-size: 2rem;
font-weight: bold;
text-transform: uppercase;
margin-bottom: 30px;
color: #444;
}





  @media (min-width: 768px) {
    .career-list {
      text-align: center;
    }
.career-list li {
font-size: 1rem;  
padding-left: 20px; 
margin-bottom: 15px;
}
}
  


.career-list {
list-style: none;
padding: 0;
margin: 0;
}

.career-list li {
position: relative;
padding-left: 40px; 
margin-bottom: 20px;
font-size: 1rem;
line-height: 1.6;
color: #444;
}

.career-list li .icon {
position: absolute;
left: 0;
top: 50%;
width: 15px;
height: 15px;
border-left: 2px dashed #c2c2c2; 
border-bottom: 2px dashed #c2c2c2; 
content: "";
}

.trustpilot-widget-container {
box-shadow: none !important;
border: none !important;
background: transparent !important;
padding: 0;
margin: 0 auto;
display: flex;
justify-content: center;
align-items: center;
}

@media (max-width: 768px) {
.trustpilot-widget-container {
    flex-direction: row; 
    box-sizing: border-box;
}


#proSealWidget {
    width: 50%;
    box-sizing: border-box; 
}
}
  .wave-container {
    position: relative;
    background-color: #f8f9fa;
  }

  .wave {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: -5px;
  }

  .footer {
    background-color: #eaeaea;
    color: #333;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0;
  }





  .footer-link {
    color: #555;
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: 15px;
    transition: color 0.3s ease;
  }

  .footer-link:hover {
    color: #c2c2c2;
  }

  #preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1c1c1c;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f5f5f5;
    font-size: 2em;
    z-index: 1000;
    transition: opacity 1s ease;
  }
  #preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  .navbar-brand img {
max-height: 40px;
width: auto; 
filter: grayscale(100%);
}

.text-section {
padding: 30px 20px;
background-color: #f8f9fa;
animation: fadeInUp 1s ease-in-out;
}

.text-section .container {
max-width: 800px;
margin: 0 auto;
text-align: center;
}

.text-section h2 {
font-size: 2.5em;
margin-bottom: 20px;
}

.text-section p {
font-size: 1.2em;
margin-bottom: 10px;
line-height: 1.6em;
}

.text-section .primary-btn {
background-color: #007bff;
color: #ffffff;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease, transform 0.3s ease;
}

.text-section .primary-btn:hover {
background-color: #0056b3;
transform: scale(1.05);
}

.abt-btn {
display: inline-block;
text-decoration: none;
padding: 12px 20px;
font-size: 1rem;
font-weight: bold;
color: #fff;
background-color: #000; 
border: none;
border-radius: 50px; 
text-align: center;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
}

.abt-btn:hover {
background-color: #e0e0e0; 
color: #000; 
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); 
transform: translateY(-2px);
}

.trademark {
font-size: 0.9em;
color: #666;
}

.trademark a {
color: #7d7c7c;
text-decoration: none;
}

.trademark a:hover {
color: #666565;
}


/* Layout */
.nlp-coaching-section {
padding: 40px 20px;
background-color: #f9f9f9;
}

.section-title {
font-size: 2rem;
text-align: center;
margin-bottom: 30px;
color: #333;
}

.coaching-category {
margin-bottom: 40px;
}

.coaching-category h3 {
font-size: 1.5rem;
color: #222;
margin-bottom: 20px;
}

.card-container {
display: flex;
flex-wrap: wrap;
gap: 20px;
}


.coaching-card {
width: calc(33.333% - 20px);
perspective: 1000px;
cursor: pointer;
position: relative;
}

.coaching-card-mobile-hint {
display: none;
position: absolute;
bottom: 10px;
left: 50%;
transform: translateX(-50%);
font-size: 1.2rem;
color: #888;
opacity: 0.8;
pointer-events: none;
transition: opacity 0.3s ease, transform 0.3s ease;
}

.coaching-card:hover .coaching-card-mobile-hint {
opacity: 1;
transform: translateX(-50%) translateY(-3px);
}

@media (max-width: 768px) {
.coaching-card-mobile-hint {
display: block;
}
}

.coaching-card-inner {
position: relative;
width: 100%;
padding-top: 50%; 
transform-style: preserve-3d;
transform: rotateY(0);
transition: transform 0.6s ease;
}

.coaching-card:hover .coaching-card-inner {
transform: rotateY(180deg);
}

.coaching-card-front,
.coaching-card-back {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 10px;
backface-visibility: hidden;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
font-size: 1rem;
font-weight: bold;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.coaching-card-front {
background-color: #fff;
color: #000000;
}

.coaching-card-back {
background-color: #fff;
color: #333;
transform: rotateY(180deg);
padding: 10px;
font-weight: normal;
}

/* Responsive */
@media (max-width: 768px) {
.coaching-card {
width: calc(50% - 20px);
}
}

@media (max-width: 480px) {
.coaching-card {
width: 100%;
}
}

.section-subtitle {
font-size: 1.8rem;
color: #007bff;
margin-bottom: 30px;
}



.section-title {
font-size: 2.5rem;
font-weight: bold;
margin-bottom: 20px;
color: #333;
}

.section-description {
font-size: 1.2rem;
color: #555;
margin-bottom: 40px;
}



.logo-container img {
position: relative;
width: 120px;
margin-bottom: 20px;
z-index: 2;
animation: fadeInDown 1.5s ease;
transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-container img:hover {
transform: scale(1.1); 
}


#scrollUpBtn {
position: fixed;
bottom: 20px;
right: 20px;
display: flex;
justify-content: center;
align-items: center;
opacity: 0;
visibility: hidden;
z-index: 1000;
transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

#scrollUpBtn.visible {
opacity: 1;
visibility: visible;
transform: translateY(0);
}

@keyframes slideIn {
from {
transform: translateY(30px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}

#scrollUpBtn.visible {
animation: slideIn 0.3s ease-out;
}


.timeline {
position: relative;
padding-left: 20px;
border-left: 3px solid #fff;
}

.timeline-item {
margin-bottom: 30px;
position: relative;
}

.timeline-icon {
position: absolute;
left: -10px;
top: 0;
width: 15px;
height: 15px;
background-color: #fff;
border-radius: 50%;
border: 3px solid #ddd;
box-shadow: 0 0 0 3px #fff;
}

.timeline-content {
margin-left: 30px;
padding: 15px 20px;
background: #fff;
border-radius: 8px;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.timeline-content p {
font-size: 1rem;
color: #555;
margin: 0;
line-height: 1.6;
}

.timeline-content h5 {
font-size: 1.2rem;
color: #333;
margin-bottom: 10px;
}

@media (max-width: 768px) {
.timeline {
padding-left: 10px;
}

.timeline-content {
font-size: 0.9rem;
}

.timeline-icon {
width: 10px;
height: 10px;
left: -5px;
}
}


/* Modal Styles */
.cookie-modal {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
}

.cookie-modal-content {
background-color: #fff;
margin: 10% auto;
padding: 20px;
border-radius: 8px;
width: 80%;
max-width: 500px;
}

.cookie-section {
margin-bottom: 20px;
}

.cookie-section h3 {
font-size: 1.2rem;
}

.cookie-section p {
font-size: 0.9rem;
}

.close {
float: right;
font-size: 1.5rem;
cursor: pointer;
}

.abtt-btn {
position:fixed;
display: inline-block;
z-index: 9999;
bottom: 20px;
left: 20px;

text-decoration: none;
padding: 7px 15px;
font-size: 1rem;
font-weight: bold;
color: #fff;
background-color: #000; 
border: none;
border-radius: 10px; 
text-align: center;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
}

.abtt-btn:hover {
background-color: #e0e0e0; 
color: #000; 
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); 
transform: translateY(-2px);
}

    .parallax-header p {
        font-size: 1.1rem;
  color: #dbdbdb;
  position: relative;
    }

.coaching-p p {
color: #333;
font-size: 0.1rem;
    }



.container4 {
  background-color: #dfdede;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  
}

.cardd {
  text-align: center;
  padding: 1px;
  width: 500px;

}

.cardd h2 {
  margin-top: 15px;
  font-size: large;
}

.cardd p {
  font-size: 18px;
  padding: 43px;
  line-height: 1.9;
}

.circle-image {
  width: 180px;
  height: 180px;
  margin: auto;
  overflow: hidden;
  border-radius: 50%;
}

.circle-image img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .cardd {
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
  }
}





.containerr {
background-color: #222222;
margin: 0 auto;
width: 100%;
max-width: 320px;
min-height: 568px;
margin: 0 auto;
border-radius: 8px;
position: relative;
overflow: hidden;
-webkit-box-shadow: 0px 9px 13px 0px rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0px 9px 13px 0px rgba(0, 0, 0, 0.3);
box-shadow: 0px 9px 13px 0px rgba(0, 0, 0, 0.3);
-webkit-transform: scale(1);
}

.menu-trigger, .close-trigger {
position: absolute;
top: 32px;
right: 20px;
display: block;
width: 42px;
height: 42px;
cursor: pointer;
z-index: 333;
}
.menu-trigger:hover .menu-trigger-bar:before, .close-trigger:hover .menu-trigger-bar:before {
width: 100%;
}
.menu-trigger:hover .close-trigger-bar:before, .close-trigger:hover .close-trigger-bar:before {
width: 100%;
}

.close-trigger {
z-index: 5;
top: 42px;
}

.menu-trigger-bar {
display: block;
width: 100%;
height: 4px;
background-color: white;
margin-bottom: 6px;
transform: rotate(-45deg);
position: relative;
}
.menu-trigger-bar:before {
content: "";
position: absolute;
top: 0;
left: 0;
display: block;
width: 0%;
height: 100%;
background-color: rgba(0, 0, 0, 0.2);
transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}
.menu-trigger-bar.top {
width: 50%;
}
.menu-trigger-bar.middle:before {
left: auto;
right: 0;
}
.menu-trigger-bar.bottom {
width: 50%;
margin-left: 50%;
}

.close-trigger-bar {
display: block;
width: 100%;
height: 4px;
background-color: #222222;
position: relative;
}
.close-trigger-bar:before {
content: "";
position: absolute;
top: 0;
left: 0;
display: block;
width: 0%;
height: 100%;
background-color: rgba(255, 255, 255, 0.2);
transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}
.close-trigger-bar.left {
transform: translateX(100px) translateY(-100px) rotate(-45deg);
}
.close-trigger-bar.right {
transform: translateX(-100px) translateY(-100px) rotate(45deg);
top: -3px;
}

.logo {
display: block;
width: 64px;
height: 64px;
position: absolute;
top: 50%;
left: 50%;
margin-top: -52px;
margin-left: -32px;
text-align: center;
z-index: 10;
}
.logo span {
display: block;
text-align: center;
line-height: 62px;
font-size: 72px;
color: white;
}





.inner-container, .menu-container {
position: absolute;
height: 100%;
width: 100%;
left: 0;
top: 0;
}

.inner-container {
z-index: 20;
}

.menu-container {
display: flex;
align-items: center;
}

.menu {
display: block;
width: 100%;
padding: 20%;
}
.menu li {
text-align: left;
display: block;
padding: 15px 0;
}
.menu a {
text-decoration: none;
color: #222222;
display: inline-block;
padding: 10px 0;
position: relative;
}
.menu a:hover:before {
opacity: 1;
transform: translateX(0px);
}
.menu a:before {
content: "";
display: block;
position: absolute;
left: 0;
bottom: 0;
width: 18px;
height: 4px;
opacity: 0;
background-color: #222222;
transform: translateX(100px);
transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}

.menu-bg {
position: absolute;
display: block;
width: 200%;
left: -53%;
top: -25%;
height: 40%;
background-color: white;
}
.menu-bg.middle {
top: 29%;
left: -53%;
transform: rotate(-45deg) scaleY(0);
}
.menu-bg.top {
left: -34%;
top: 0;
transform: rotate(-45deg) translateY(-152%);
}
.menu-bg.bottom {
top: 105%;
transform: rotate(-45deg) translateY(25%);
left: -20%;
}

#links {
position: absolute;
bottom: 0px;
left: 0px;
width: 100%;
height: 50px;
font-size: 13px;
font-family: tahoma;
color: #fff;
}

#links a {
text-decoration: none;
font-size: 2.3em;
color: #fff;
}

#twitter {
position: absolute;
bottom: 15px;
right: 20px;
}

#pens {
position: absolute;
bottom: 15px;
left: 20px;
}


.contact-section {
  display: flex;
  justify-content: center;
  padding: 50px 30px;
  background-color: #2a2a2a;
}
.contact-form {
  width: 100%;
  max-width: 500px; 
  background-color: #f7efef;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 15px 15px rgba(74, 73, 73, 0.1);
}
.contact-form h2 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #1c1c1c;
}

.contact-form label {
  color: #1c1c1c;
}
.contact-form .form-control {
  font-size: 0.9em;
  padding: 10px;
  margin-bottom: 10px;
}
.contact-form .btn {
  font-size: 1em;
  padding: 8px 20px;
  background-color: #28a745;
  color: #ffffff;
  border: none;
  border-radius: 5px;
}
.contact-form .btn:hover {
  background-color: #218838;
}

