/* Stil pentru selectorul de limbă */
.lang-switcher {
  display: flex !important;
  align-items: center !important;
  line-height: 50px;
}

#lang-switcher {
  background: transparent
    url("data:image/svg+xml;utf8,<svg fill='white' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>")
    no-repeat right 10px center;
  color: var(--header-link);
  border: 0px solid rgba(255, 255, 255, 0.3);
  padding: 10px 30px 10px 15px;
  border-radius: 6px;
  font-size: 1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0 7px;
  display: block;
}
.scroll-indicator-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 24px;
}
.hero-logo-animate {
  animation: slideUpFade 1s ease-out forwards;
}
/* HERO GLASS EFFECT */
.hero-glass {
    background: linear-gradient(
    to right,
    transparent
    rgba(0,0,0,0.05),
    rgba(0,0,0,0.15)
  );
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: 10px;
padding:20px ;

}
.height250 {
  height: 0px;
}
.padding-top-responsive{
  padding-top:5% !important;
}
@media (max-width: 768px) {
  .hero-logo-desktop {
    display: none !important;
  }
  .height250 {
    height: 250px;
  }
  .padding-top-responsive{
    padding-top:0% !important;
  }
}
/* Mobile tuning */
@media (max-width: 768px) {
  .hero-glass {
    padding:  16px;
    margin: 0 auto;
    text-align: center;
      max-width: 100%;
         background: linear-gradient(
    to left,
    transparent,
    rgba(0,0,0,0.1),
    rgba(0,0,0,0.55)
  );
  }
  
}

@media (max-width: 768px) {
  #hero-18 {
      
    background-position: right center;
    background-repeat: no-repeat;
 
   
  }
}

/* HERO IMAGE – MOBILE FIX */
.hero-app-logo {
  max-width: 100%;
  height: auto;
}


/* Mobile */
@media (max-width: 768px) {
  .hero-app-logo {
    max-width: 35%;
    margin: 0 auto 20px auto;
    display: block;
  }

  .hero-18-txt {
    text-align: center;
  }
}

@keyframes slideUpFade {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.scroll-arrow {
  font-size: 28px;
  opacity: 0.6;
  animation: arrowBounce 1.5s infinite;
}

.scroll-arrow.left {
  animation-delay: 0s;
}

.scroll-arrow.right {
  animation-delay: 0.3s;
}

@keyframes arrowBounce {
  0% {
    transform: translateY(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
}

/* Efect hover */
#lang-switcher:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1)
    url("data:image/svg+xml;utf8,<svg fill='white' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>")
    no-repeat right 10px center;
}

/* Efect focus */
#lang-switcher:focus {
  outline: none;
  border-color: #6c5ce7;
  box-shadow: 0 0 6px rgba(108, 92, 231, 0.7);
}

/* Light mode - black arrow for language switcher */
body:not(.theme--dark) #lang-switcher {
  background: transparent
    url("data:image/svg+xml;utf8,<svg fill='%23353f4f' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>")
    no-repeat right 10px center;
}

body:not(.theme--dark) #lang-switcher:hover {
  border-color: #353f4f;
  background: rgba(0, 0, 0, 0.05)
    url("data:image/svg+xml;utf8,<svg fill='%23353f4f' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>")
    no-repeat right 10px center;
}

.profile-image {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin: 20px 0;
}


.team-member-data h6.h6-lg {
  height: 3em; /* Fixed height for all names */
  display: flex;
  align-items: flex-start; /* Changed from center to align to top */
  justify-content: center;
  text-align: center;
  word-wrap: break-word;
  margin-bottom: 12px; /* Consistent space between name and role */
  margin-top: 0;
  padding: 0;
  padding-top: 0.5em; /* Optional: small top padding for better visual spacing */
}

/* Team member role styling */
.team-member-data p {
  margin-top: 0;
  margin-bottom: 12px; /* Space after role before LinkedIn icon */
}

/* Ensure team member data container has consistent structure */
.team-member-data {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* Changed from space-between */
  text-align: center;
}

.team-member-photo  {
  margin-bottom: 15px;
}

/* Theme Toggle Button Styles - matching language switcher exactly */
.theme-toggle-wrapper {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 70px;
}

#theme-toggle-btn {
  background: transparent;
  border: 0px solid rgba(255, 255, 255, 0.3);
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
  color: var(--header-link);
  margin: 0 7px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  height: 50px;
  text-align: center;
}

/* Efect hover */
#theme-toggle-btn:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* Efect focus */
#theme-toggle-btn:focus {
  outline: none;
  border-color: #6c5ce7;
  box-shadow: 0 0 6px rgba(108, 92, 231, 0.7);
}

.theme-toggle-icon {
  font-family: 'Material Icons';
  font-size: 24px;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  vertical-align: middle;
}

/* Light mode specific styles for toggle button (when body doesn't have theme--dark) */
body:not(.theme--dark) #theme-toggle-btn {
  color: #353f4f;
}

body:not(.theme--dark) #theme-toggle-btn:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: #353f4f;
}

/* Logo color switching based on theme */
/* Light mode - show black logo, hide white logo */
body:not(.theme--dark) .logo-white {
  display: none !important;
}

body:not(.theme--dark) .logo-black {
  display: block !important;
}

/* Dark mode - show white logo, hide black logo */
body.theme--dark .logo-black {
  display: none !important;
}

body.theme--dark .logo-white {
  display: block !important;
}

/* Hero logo switching based on theme */
.hero-logo-container {
  position: relative;
  display: inline-block;
}

.hero-logo-light,
.hero-logo-dark {
  position: relative;
  display: block;
  margin: 0 auto;
}

/* Light mode - show dark hero logo, hide white hero logo */
body:not(.theme--dark) .hero-logo-dark {
  display: none !important;
}

body:not(.theme--dark) .hero-logo-light {
  display: block !important;
}

/* Dark mode - show white hero logo, hide dark hero logo */
body.theme--dark .hero-logo-light {
  display: none !important;
}

body.theme--dark .hero-logo-dark {
  display: block !important;
}

/* Mobile logo switching based on theme */
.mobile-logo-container {
  position: relative;
  display: inline-block;
}

.mobile-logo-light,
.mobile-logo-dark {
  display: block;
}

/* Light mode - show dark mobile logo */
body:not(.theme--dark) .mobile-logo-dark {
  display: none !important;
}

body:not(.theme--dark) .mobile-logo-light {
  display: block !important;
}

/* Dark mode - show white mobile logo */
body.theme--dark .mobile-logo-light {
  display: none !important;
}

body.theme--dark .mobile-logo-dark {
  display: block !important;
}

/* Footer logo switching based on theme */
.footer-logo-container {
  position: relative;
  display: inline-block;
}

.footer-logo-light,
.footer-logo-dark {
  display: block;
}

/* Light mode - show dark footer logo */
body:not(.theme--dark) .footer-logo-dark {
  display: none !important;
}

body:not(.theme--dark) .footer-logo-light {
  display: block !important;
}

/* Dark mode - show white footer logo */
body.theme--dark .footer-logo-light {
  display: none !important;
}

body.theme--dark .footer-logo-dark {
  display: block !important;
}