/* Base variables */
:root {
  --page-padding: 20px;
  --section-padding-large: 64px;
  --color-white: #ffffff;
  --color-spring-green: #00ffa3;
  --color-neutral-darkest: #0d0300;
  --text-regular: 14px;
}

/* Reset and base styles */
html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  max-width: 500px;
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  background-color: #000;
  color: var(--color-white);
  position: relative;
  overflow-x: hidden;
}

/* Header Section */
.header-section {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 48px;
  justify-content: flex-start;
  padding: var(--section-padding-large) var(--page-padding);
  width: 100%;
  min-height: 100vh;
}

/* Background */
.header-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.header-bg-img {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.header-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.35);
}

/* Logo Area */
.header-logo-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.header-logo-img {
  width: 47px;
  height: 31px;
  object-fit: contain;
}

.header-logo-text {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  margin-left: 8px; /* Spacing between logo and text */
}

/* Main Content Area */
.header-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 48px;
  width: 100%;
}

.header-title-col {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.header-title {
  font-family: 'Epilogue', sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: 0.32px;
  margin: 0;
}

.text-highlight {
  color: var(--color-spring-green);
}

.header-bottom-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
  gap: 24px;
}

.header-subtitle {
  font-family: 'Epilogue', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: 0.32px;
}

.header-actions {
  display: flex;
  align-items: flex-start;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  background-color: var(--color-spring-green);
  border: 1px solid var(--color-spring-green);
  border-radius: 100px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: var(--text-regular);
  color: var(--color-neutral-darkest);
  line-height: 1.6;
  transition: opacity 0.3s ease;
}

.btn-primary:hover {
  opacity: 0.8;
}

/* Features Section */
.features-section {
  background-color: var(--color-neutral-darkest);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--section-padding-large) var(--page-padding);
  width: 100%;
}

.features-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
  max-width: 1280px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 8px 0;
  width: 100%;
}

.feature-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.feature-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.feature-title {
  font-family: 'Epilogue', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.2px;
  color: var(--color-white);
}

.feature-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: var(--text-regular);
  line-height: 1.6;
  color: var(--color-white);
}

.features-image-wrapper {
  height: 202px;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.features-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About Section */
.about-section {
  background-color: var(--color-neutral-darkest);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--section-padding-large) var(--page-padding);
  width: 100%;
}

.about-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
  max-width: 1280px;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.about-title {
  font-family: 'Epilogue', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: 0.32px;
  color: var(--color-white);
  margin: 0;
}

.about-details-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.about-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.about-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: var(--text-regular);
  line-height: 1.6;
  color: var(--color-white);
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-list-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  object-fit: contain;
  margin-top: 3px;
}

.about-list span {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: var(--text-regular);
  line-height: 1.6;
  color: var(--color-white);
  flex: 1;
}

.about-actions {
  display: flex;
  align-items: center;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: var(--text-regular);
  color: var(--color-white);
  line-height: 1.6;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.about-video-wrapper {
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  position: relative;
  background-color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.play-button {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  cursor: pointer;
  border: none;
  padding: 0;
  background: transparent;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.about-video-wrapper.controls-hidden .play-button {
  opacity: 0;
  pointer-events: none;
}

.play-button-icon {
  display: block;
}

.play-button-icon--pause {
  display: none;
}

.about-video-wrapper.is-playing .play-button-icon--play {
  display: none;
}

.about-video-wrapper.is-playing .play-button-icon--pause {
  display: block;
}

.play-button:hover {
  transform: scale(1.1);
}

/* Contact Section */
.contact-section {
  background-color: #004c30;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--section-padding-large) var(--page-padding);
  width: 100%;
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
  max-width: 1280px;
  align-items: center;
}

.contact-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 768px;
  align-items: center;
  text-align: center;
}

.contact-title {
  font-family: 'Epilogue', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0.36px;
  color: var(--color-white);
  margin: 0;
}

.contact-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: var(--text-regular);
  line-height: 1.6;
  color: var(--color-white);
  margin: 0;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  align-items: center;
}

.contact-map-wrapper {
  width: 100%;
  aspect-ratio: 349 / 237;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.contact-map-embed {
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  inset: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  align-items: center;
}

.contact-address-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.contact-city {
  font-family: 'Epilogue', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0.24px;
  color: var(--color-white);
  margin: 0;
}

.contact-address {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: var(--text-regular);
  line-height: 1.6;
  color: var(--color-white);
  margin: 0;
}

.btn-icon {
  margin-left: 8px;
}

/* Social Section */
.social-section {
  background-color: var(--color-neutral-darkest);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--section-padding-large) var(--page-padding);
  width: 100%;
}

.social-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 1280px;
  align-items: center;
}

.social-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 768px;
  align-items: center;
  text-align: center;
}

.social-title {
  font-family: 'Epilogue', sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 1.2;
  letter-spacing: 0.44px;
  color: var(--color-white);
  margin: 0;
}

.social-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: var(--text-regular);
  line-height: 1.6;
  color: var(--color-white);
  margin: 0;
}

.social-links-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.social-links {
  display: flex;
  gap: 45px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.social-tab {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  padding: 8px 0;
  text-decoration: none;
  border-bottom: 1px solid var(--color-white);
  transition: opacity 0.3s ease;
}

.social-tab:hover {
  opacity: 0.8;
}

.social-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.social-name {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: var(--text-regular);
  line-height: 1.6;
  color: var(--color-white);
}

/* CTA Section */
.cta-section {
  background-color: #575c65;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: var(--section-padding-large) var(--page-padding);
  width: 100%;
}

.cta-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-logo-img {
  width: 47px;
  height: 31px;
  object-fit: contain;
}

.cta-logo-text {
  font-size: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-white);
  margin-left: 8px;
}

.cta-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  width: 100%;
  max-width: 768px;
}

.cta-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
  width: 100%;
}

.cta-title {
  font-family: 'Epilogue', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: 0.32px;
  color: var(--color-white);
  margin: 0;
}

.cta-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: var(--text-regular);
  line-height: 1.6;
  color: var(--color-white);
  margin: 0;
}

.cta-btn {
  width: 255px;
  height: 48px;
  text-transform: uppercase;
}

/* Footer Section */
.footer-section {
  background-color: #06090e;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px var(--page-padding);
  width: 100%;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 1280px;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 16px;
  width: 100%;
}

.footer-socials {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: opacity 0.3s ease;
}

.footer-social-link:hover {
  opacity: 0.8;
}

.footer-social-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-bottom-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.footer-link {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.3s ease;
}

.footer-link:hover {
  opacity: 0.8;
}

.footer-copyright {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  color: var(--color-white);
  margin: 0;
}

/* Generic Text Page Styles (Privacy, Terms, Cookies) */
.page-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px var(--page-padding) 20px;
  background-color: var(--color-neutral-darkest);
}

.page-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px var(--page-padding) 80px;
  width: 100%;
  flex: 1;
}

.page-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 768px;
}

.page-title {
  font-family: 'Epilogue', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  color: var(--color-white);
  margin: 0;
}

.page-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-content p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: var(--text-regular);
  line-height: 1.6;
  color: var(--color-white);
  margin: 0;
}

.page-content h2 {
  font-family: 'Epilogue', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: var(--color-spring-green);
  margin: 16px 0 8px;
}

.page-content ul {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: var(--text-regular);
  line-height: 1.6;
  color: var(--color-white);
  padding-left: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-content li strong {
  color: var(--color-white);
}
