/* style.css */
* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

html, body {
  height: 100%;
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
  background-color: white;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  display: flex;
  align-items: flex-start;
  padding: 0 40px;
  min-height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  pointer-events: none;
  justify-content: space-between;
  box-sizing: border-box;
  line-height: normal;
  -webkit-box-align: start;
}

.logo {
  flex-shrink: 0;
  flex-basis: auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: auto;
  position: relative;
  top: 20px;
  display: block;
  vertical-align: top;
  object-fit: contain;
  object-position: top;
  line-height: 0;
  max-height: 40px;
}

.language-switcher {
  margin-left: auto;
  margin-right: 20px;
  position: relative;
  pointer-events: auto;
  top: 20px;
}

.language-switcher .current-lang {
  color: white;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s ease;
  display: block;
  text-align: center;
}

.language-switcher .current-lang:hover {
  color: #ccc;
}

.language-switcher .lang-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.language-switcher:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-switcher .lang-dropdown li {
  padding: 5px 0;
}

.language-switcher .lang-dropdown a {
  color: white;
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  text-align: center;
}

.language-switcher .lang-dropdown a:hover {
  color: #ccc;
}

.hamburger {
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
  pointer-events: auto;
  z-index: 1100;
  top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hamburger .line {
  width: 30px;
  height: 2px;
  background: white;
  position: absolute;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger .line:nth-child(1) {
  transform: translateY(-10px);
}

.hamburger .line:nth-child(2) {
  transform: translateY(0);
}

.hamburger .line:nth-child(3) {
  transform: translateY(10px);
}

.hamburger.active .line:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}

.hamburger.active .line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .line:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

.hamburger.dark .line {
  background: black;
}

.hamburger.active .line {
  background: white;
}

.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.nav-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.nav-menu a {
  color: white;
  font-size: 2.5rem;
  text-transform: uppercase;
  text-decoration: none;
  margin: 20px 0;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #ccc;
}

section {
  position: relative;
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-color: black;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 0 12vh 0;
  color: black;
  transition: opacity 0.5s ease-out;
  will-change: opacity;
}

.white-section {
  background: white;
  color: black;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 100px 40px;
  gap: 60px;
  transition: opacity 0.5s ease-out;
  will-change: opacity;
}

.white-section.reverse {
  flex-direction: row-reverse;
}

.white-section img {
  max-width: 500px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.white-section .text {
  max-width: 500px;
  text-align: left;
}

.white-section h2 {
  font-size: 3rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
  text-align: left;
}

.white-section h2:hover {
  color: #ccc;
}

.white-section .text h2 span {
  display: block;
}

.white-section .meta {
  font-size: 0.7rem;
  letter-spacing: 1px;
  opacity: 0.6;
  font-weight: lighter;
  margin-bottom: 10px;
  text-align: left;
}

.white-section .line {
  width: 500px;
  height: 0.5px;
  background: black;
  margin-bottom: 20px;
}

.white-section-half {
  background: white;
  color: black;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  min-height: 100vh;
  transition: opacity 0.5s ease-out;
  will-change: opacity;
  position: relative;
}

.white-section-half.reverse {
  flex-direction: row-reverse;
}

.white-section-half .half-bg {
  width: 50%;
  height: 100vh;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}

.white-section-half.reverse .half-bg {
  left: auto;
  right: 0;
  background-position: center top;
}

.white-section-half .text {
  width: 50%;
  padding: 100px 40px;
  margin-left: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.white-section-half.reverse .text {
  margin-left: 0;
  margin-right: 50%;
}

.white-section-half h2 {
  font-size: 3rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
  text-align: left;
}

.white-section-half h2:hover {
  color: #ccc;
}

.white-section-half .meta {
  font-size: 0.7rem;
  letter-spacing: 1px;
  opacity: 0.6;
  font-weight: lighter;
  margin-bottom: 10px;
  text-align: left;
}

.white-section-half .line {
  width: 500px;
  height: 0.5px;
  background: black;
  margin-bottom: 20px;
}

.white-section-half .cta {
  margin-top: 20px;
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid black;
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.white-section-half .cta:hover {
  background-color: black;
  color: white;
}

.white-section-grid {
  background: white;
  color: black;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 100px 40px;
  transition: opacity 0.5s ease-out;
  will-change: opacity;
}

.white-section-grid .block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 300px;
  text-align: left;
}

.white-section-grid .block img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.white-section-grid .block .meta {
  font-size: 0.7rem;
  letter-spacing: 1px;
  opacity: 0.6;
  font-weight: lighter;
  margin-top: 20px;
  margin-bottom: 10px;
  text-align: left;
}

.white-section-grid .block h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
  text-align: left;
}

.white-section-grid .block h3:hover {
  color: #ccc;
}

.white-section-grid .block .line {
  height: 0.5px;
  background: black;
  width: 100%;
  margin-bottom: 30px;
}

.white-section-grid-3x5 {
  background: white;
  color: black;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 30px;
  padding: 100px 40px;
  justify-items: center;
  transition: opacity 0.5s ease-out;
  will-change: opacity;
}

.white-section-grid-3x5 .block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 275px;
  text-align: left;
}

.white-section-grid-3x5 .block video {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.white-section-grid-3x5 .block .meta {
  font-size: 0.7rem;
  letter-spacing: 1px;
  opacity: 0.6;
  font-weight: lighter;
  margin-top: 20px;
  margin-bottom: 10px;
  text-align: left;
}

.white-section-grid-3x5 .block h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 300;
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
  text-align: left;
}

.white-section-grid-3x5 .block h3:hover {
  color: #ccc;
}

.white-section-grid-3x5 .block .line {
  height: 0.5px;
  background: black;
  width: 100%;
  margin-bottom: 30px;
}

.white-section.carousel {
  position: relative;
  transition: opacity 0.5s ease-out;
  will-change: opacity;
  background: white;
  color: black;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 100px 40px;
  gap: 60px;
}

.white-section.carousel .carousel-container {
  max-width: 500px;
  width: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 9/16;
}

.white-section.carousel .carousel-images {
  width: 100%;
  height: 100%;
  position: relative;
}

.white-section.carousel .carousel-images img {
  max-width: 500px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.white-section.carousel .carousel-images img.active {
  opacity: 1;
}

.white-section.carousel .carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}

.white-section.carousel .prev {
  left: 10px;
}

.white-section.carousel .next {
  right: 10px;
}

.white-section.carousel .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.white-section.carousel .counter {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 10px;
}

.white-section-contact {
  background: white;
  color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 40px;
  transition: opacity 0.5s ease-out;
  will-change: opacity;
}

.white-section-contact .text {
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.white-section-contact h2 {
  font-size: 3rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
  text-align: left;
}

.white-section-contact h2:hover {
  color: #ccc;
}

.white-section-contact .meta {
  font-size: 0.7rem;
  letter-spacing: 1px;
  opacity: 0.6;
  font-weight: lighter;
  margin-bottom: 10px;
  text-align: left;
}

.white-section-contact .line {
  width: 100%;
  height: 0.5px;
  background: black;
  margin-bottom: 20px;
}

.white-section-contact p {
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: left;
}

.white-section-contact a {
  color: black;
  text-decoration: underline;
  transition: color 0.3s ease;
  text-align: left;
}

.white-section-contact a:hover {
  color: #666;
}

.white-section-legal {
  background: white;
  color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 40px;
  transition: opacity 0.5s ease-out;
  will-change: opacity;
}

.white-section-legal .text {
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.white-section-legal h1 {
  font-size: 3rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
  text-align: left;
}

.white-section-legal h1:hover {
  color: #ccc;
}

.white-section-legal h2 {
  font-size: 1.8rem;
  text-transform: uppercase;
  margin: 2rem 0 1rem;
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
  text-align: left;
}

.white-section-legal h2:hover {
  color: #ccc;
}

.white-section-legal .meta {
  font-size: 0.7rem;
  letter-spacing: 1px;
  opacity: 0.6;
  font-weight: lighter;
  margin-bottom: 10px;
  text-align: left;
}

.white-section-legal .line {
  width: 100%;
  height: 0.5px;
  background: black;
  margin-bottom: 20px;
}

.white-section-legal p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: left;
}

.white-section-legal a {
  color: black;
  text-decoration: underline;
  transition: color 0.3s ease;
  text-align: left;
}

.white-section-legal a:hover {
  color: #666;
}

.content {
  width: 130%;
  max-width: 900px;
  height: calc(40% - 12vh);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 30px 40px 0 40px;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
  text-align: left;
  position: relative;
  margin-left: 0;
}

.content h1 {
  text-transform: uppercase;
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
  text-align: left;
}

.content h1:hover {
  color: #ccc;
}

.meta {
  font-size: 0.7rem;
  letter-spacing: 1px;
  opacity: 0.6;
  font-weight: lighter;
  margin-bottom: 10px;
  text-align: left;
}

.line {
  width: 90%;
  height: 0.5px;
  background: white;
  margin-bottom: 20px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
  text-align: left;
}

h1:hover {
  color: #ccc;
}

h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
  text-align: left;
}

h2:hover {
  color: #ccc;
}

p {
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: left;
}

a.cta {
  margin-top: 20px;
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid black;
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

a.cta:hover {
  background-color: black;
  color: white;
}

footer {
  background: black;
  color: white;
  width: 100%;
  padding: 40px 40px 40px 40px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  font-size: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.footer-links a {
  color: white;
  text-decoration: none;
  margin-bottom: 10px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  text-align: left;
}

.footer-links a:hover {
  color: #ccc;
}

.footer-links .social-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-links .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.footer-links .social-icon svg {
  width: 100%;
  height: 100%;
  fill: white;
  transition: fill 0.3s ease;
}

.footer-links .social-icon:hover svg {
  fill: #ccc;
}

.footer-links .legal {
  font-size: 0.8rem;
  text-align: left;
}

.footer-links .footer-line {
  height: 0.5px;
  background: white;
  width: 700px;
  margin: 10px 0;
}

.footer-links .logo {
  margin-top: 40px;
}

.footer-copyright {
  text-align: right;
  align-self: flex-end;
}

.bold-text {
  font-weight: 700;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .content {
    width: 100%;
    padding: 20px;
    height: auto;
  }
  
  .white-section, 
  .white-section.reverse {
    flex-direction: column;
    padding: 60px 20px;
    align-items: flex-start; /* Forces left alignment for container */
  }
  
  .white-section img {
    max-width: 100%;
  }
  
  .white-section .text,
  .white-section-half .text,
  .white-section-half.reverse .text,
  .white-section-grid .block,
  .white-section-grid-3x5 .block,
  .white-section-contact .text,
  .white-section-legal .text {
    max-width: 100%;
    width: 100%; /* Ensure .text takes full width to prevent centering */
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    text-align: left !important;
    padding-left: 0;
    margin-left: 0;
  }
  
  .white-section .text h2,
  .white-section-half h2,
  .white-section-grid h3,
  .white-section-grid-3x5 h3,
  .white-section-contact h2,
  .white-section-legal h1,
  .white-section-legal h2 {
    text-align: left !important;
    width: 100%;
  }
  
  .white-section p,
  .white-section-half p,
  .white-section-grid p,
  .white-section-grid-3x5 p,
  .white-section-contact p,
  .white-section-legal p {
    text-align: left !important;
  }
  
  /* Ensures all text elements in reverse sections obey left alignment */
  .white-section.reverse .text,
  .white-section.reverse h2,
  .white-section.reverse p {
    text-align: left !important;
    align-items: flex-start !important;
  }
  
  .white-section-half {
    flex-direction: column;
    padding: 0;
  }
  
  .white-section-half.reverse {
    flex-direction: column;
  }
  
  .white-section-half .half-bg {
    width: 100%;
    height: 50vh;
    position: relative;
  }
  
  .white-section-half.reverse .half-bg {
    width: 100%;
    height: 50vh;
    position: relative;
  }
  
  .white-section-half .text {
    width: 100%;
    margin-left: 0;
    padding: 60px 20px;
  }
  
  .white-section-half.reverse .text {
    margin-right: 0;
    width: 100%;
    padding: 60px 20px;
  }
  
  .white-section-half .line,
  .white-section .line,
  .footer-links .footer-line {
    width: 100%;
  }
  
  .white-section-half h2,
  .white-section h2,
  .white-section-contact h2,
  .white-section-legal h1 {
    font-size: 2rem;
  }
  
  .white-section-legal h2 {
    font-size: 1.5rem;
  }
  
  p {
    font-size: 1rem;
  }
  
  .meta {
    font-size: 0.6rem;
  }
  
  .white-section.carousel {
    flex-direction: column;
    padding: 60px 20px;
  }
  
  .white-section.carousel .carousel-container {
    max-width: 100%;
  }
  
  .white-section.carousel .carousel-images img {
    max-width: 100%;
  }
  
  .white-section-grid {
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
  }
  
  .white-section-grid .block {
    max-width: 100%;
  }
  
  .white-section-grid-3x5 {
    grid-template-columns: 1fr;
    padding: 60px 20px;
  }
  
  .white-section-grid-3x5 .block {
    max-width: 100%;
  }
  
  .white-section-grid-3x5 .block h3 {
    font-size: 1.5rem;
  }
  
  .white-section-contact {
    padding: 60px 20px;
  }
  
  .white-section-contact .text {
    max-width: 100%;
  }
  
  .white-section-contact .line {
    width: 100%;
  }
  
  .white-section-legal {
    padding: 60px 20px;
  }
  
  .nav-menu a {
    font-size: 1.5rem;
    margin: 15px 0;
  }
  
  .white-section.carousel .counter {
    font-size: 0.8rem;
  }
  
  footer {
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding: 20px;
    width: 100%;
    text-align: left !important;
  }
  
  .footer-links {
    align-items: flex-start !important;
    justify-content: flex-start !important;
    width: 100%;
    margin-bottom: 20px;
    padding-left: 0 !important;
  }
  
  .footer-links a,
  .footer-links .social-icons,
  .footer-links .legal,
  .footer-links .footer-line {
    align-self: flex-start !important;
    text-align: left !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
  
  .footer-links .social-icons {
    justify-content: flex-start !important;
  }
  
  .footer-links .social-icon {
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
  
  .footer-links .social-icon svg {
    margin-left: 0 !important;
  }
  
  .footer-links .logo {
    margin: 40px 0 0;
    align-self: flex-start !important;
    padding-left: 0 !important;
  }
  
  .footer-copyright {
    text-align: left !important;
    align-self: flex-start !important;
    width: 100%;
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
  
  header {
    padding: 0 20px;
    align-items: flex-start;
    -webkit-box-align: start;
  }
  
  .logo {
    top: 14px;
    max-height: 32px;
  }
  
  .language-switcher {
    top: 14px;
  }
  
  .hamburger {
    top: 14px;
  }
}

@media (max-width: 576px) {
  header {
    padding: 10px 15px 0 15px;
    min-height: 70px;
  }
  
  .logo {
    top: 10px;
    max-height: 30px;
  }
  
  .hamburger {
    top: 10px;
  }
  
  footer {
    padding: 20px;
  }
  
  .footer-links {
    padding-left: 0 !important;
  }
}