/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* overflow: hidden; */
}

/* Header */
.header {
  background-color: #4d3215;
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .hcontainer {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: bold;
}

.logo img {
  height: 40px;
  width: 40px;
}

.nav {
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #be8605;
}

.nav-links li a.cta-button {
  color: #141414;
  background-color: #d39200;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.nav-links li a.cta-button:hover {
  background-color: #fbc847;
}

.mobile-menu-icon {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #4d3215;
    position: absolute;
    top: 61px;
    right: 20px;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding-bottom: 20px;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-icon {
    display: block;
  }
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  height: 100vh;

  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  height: 100%;
  scroll-behavior: smooth;
}

.section-container {
  /* scroll-snap-type: y mandatory;
  overflow-y: scroll;
  height: 100%;
  scroll-behavior: smooth; */
}

.container {
  display: flex;
  flex-direction: column;
}

.section {
  flex: 0 0 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  scroll-snap-align: start;
  padding: 20px;
}

.section img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  height: auto;
  margin: 10px; 
}

.section.welcome .sub-title {
  color: #000000cc;
}

.section:nth-child(odd) {
  background: whitesmoke;
  color: black;
}

.section:nth-child(even) {
  background: #f0eee9f7;
  color: black;
}

@media (max-width: 768px) {
  .section img {
    width: 80%;
  }
}

.header-placeholder {
  height: 60px;
  width: 100%;
}

h1.title {
  font-size: 86px;
}

@media (max-width: 768px) {
  h1.title {
    font-size: 32px;
  }
}

.hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100vh;
  background: linear-gradient(135deg, #264653, #2a9d8f);
  color: #ffffff;
}

.hero-content {
  max-width: 800px;
  padding: 20px;
}

.typing-text {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid brown;
  display: inline-block;
  animation: typing 2s steps(50, end), blink 0.2s step-end infinite alternate;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  from {
    border-color: transparent;
  }
  to {
    border-color: white;
  }
}

@media (max-width: 768px) {
  .typing-text {
    font-size: 2rem;
  }
}


footer.footer {
  height: 300px;
  background-color: #4d3215;
  display: flex;
  flex-direction: column;  
  scroll-snap-align: start;
}

footer.footer .fcontainer {
  flex: 1;
  display: flex;
  color: white;
  justify-content: center;
}

footer.footer .hline {
  height: 1px;
  margin: 0 max(2%, 20px);
  border-bottom: 1px solid #806548;
}

.fsection {
  display: flex;
  flex-direction: column;
  margin: 0 max(2%, 20px);
  padding: 20px 0;
}

.fsection .title {
  /* text-transform: uppercase; */
  font-size: 2em;
  padding-bottom: 20px;
  color: #be860a;

}

.fsection .title {
  display: flex;
}


footer.footer .fnote {
  height: 4em;
  margin: 0 max(2%, 20px);
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  /* text-transform: uppercase; */
  justify-content: center;
}

.fsection .description {
  margin: 10px 0;
  font-size: 1em;
}

.fsection .social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}


.fsection .social-links .social-icon {
  color: #e7e7db;
  font-size: 36px;
}

.social-icon:hover {
  transform: scale(1.2);
}

.social-icon:hover:active {
  transform: scale(1);
}

.footer .app-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer .app-links a {
  font-size: 1.25em;
  color: whitesmoke;
  text-decoration: none;
}

@media (max-width: 768px) {

  .footer .app-links {
    flex-direction: row;
    flex-wrap: wrap;
  }

  footer.footer {
    height: auto;
    min-height: 400px;
  }

  .footer .app-links a {
    font-size: 1em;
  }

  .fcontainer {
    flex-direction: column;
  }

  .fsection {
    padding-bottom: 10px;
  }

  footer.footer .fnote {
    height: 3em;
  }

  .fsection .title {
    font-size: 1.5rem;

  }
}

.section .content-block {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.content-block + .content-block {
  margin-top: 20px;
}

.section .content-block.reverse {
  flex-direction: row-reverse;
}

.section .content-block .content-img {
  align-self: center;
}

.section .content-block .content-desc {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 5% 0;
}

.section .content-block .content-desc .content-title {
  font-size: 32px;
  color: #4d3215;
  font-weight: 600;
}

.section .content-block .content-desc .content-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section .content-block .content-desc .content-body .content-segment:before {
  content: "❝";
  color: #4d3215;
  font-size: 1.2em;
}

.section .content-block .content-desc .content-body .content-segment:after {
  content: "❞";
  color: #4d3215;
  font-size: 1.2em;
}


.section .content-block .image-set {
  display: flex;
  flex-direction: column;
}

.section .content-block .content-desc .content-body .content-segment.segment2 {
  background: none;
  max-width: 800px;
}

.section .content-block .content-desc .content-body .content-segment {
  background: linear-gradient(to bottom, #ceb57b, #f6e27f);
  border-radius: 10px;
  padding: 20px;
  font-size: 1.2em;
}

.section .content-block .content-desc .content-body .content-segment.segment2 a {
  color: darkred;
  text-decoration: none;
  font-weight: 600;
}

.section.download {
  flex: 0 0 400px;
}

.section.download .mac-download {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.section.download .mac-download .support-label {
  font-size: 14px;
  color: #000000;
}

.section.download h1 {
  font-size: 32px;
  color: darkred;
}

.section.docs {
  flex: 0 0 400px;
}

@media (max-width: 912px) {

  .section .content-block {
    flex-direction: column-reverse;
    gap: 20px;

  }

  .section .content-block .content-desc .content-body .content-segment {
    font-size: 1em;
  }

  .section .content-block.reverse {
    flex-direction: column-reverse;
  }

  .section .content-block .content-desc .content-title {
    font-size: 24px;
  }
  
  .section .content-block .content-desc .content-body {
  
  }

  .section.features-message {
    flex-direction: column;
  }

  .section.download h1 {
    font-size: 24px;
  }
}