/*
:root  {
  --dark-1: #32292F;
  --dark-2: #575366;
  --blue-1: #6E7DAB;
  --accent: #5762D5;
  --light: #D1E3DD;
}
*/

body {
  margin: 0;
  font-family: 'source-sans-pro', sans-serif;
	background-color: white;
}


.top_navigation {
  display: flex;
  justify-content: space-between; /* key line */
  align-items: center;
  padding: 10px 20px;
  background: #111;
  color: white;
  font-family: Segoe, "Segoe UI", sans-serif;
}

.left-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.right-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.site-title {
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 600px) {
  .top_navigation {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

.animation-wrapper {
  position: relative;
  width: 100%;
  /*max-width: 2400px;*/
/*  margin: 20px auto;*/
  aspect-ratio: 16 / 9; /* adjust if needed */
}

.animation-wrapper iframe {
  	position: absolute;
 	width: 100%;
 	height: 100%;
  	border: 0;
	overflow: hidden;
	
}
.main_content {
    font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	background: black;
}
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px 20px;
  flex-wrap: nowrap;
}


.section_one {
	flex: 1;
	max-width: 400px;
	font-size: 28px;
	font-weight: bold;
	font-style: italic;
	color: #000;
	text-align: left;
}


.main_content .section_one {
    background-color: #000000;
    color: #FFFFFF;
}

.embed_youtube {
    padding: 100px;
    background-color: #83A0FF;
	
}

.video-wrapper {
  flex: 1;
  max-width: 600px;
  aspect-ratio: 16 / 9;
  position: relative;
}

.video-wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0;
}

  .video-container {
  	width: 100vw;
  	height: calc(100vh - 160px); /* subtract header + footer */
  	overflow: hidden;
  	position: relative;
  	display: flex;
  	align-items: center;   /* vertical centering */
  	justify-content: center;
	}


    .video-container video {
      width: 100%;
     /* height: 100%;  */
      object-fit: cover;     /* fills left & right edges */
    }

.appstore_links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(10px, 4vw, 100px);
    font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
    font-size: medium;
    background-color: black;
	padding-top: 20px;
}

.footer {
    padding: 20px;
	color: white;
    background-color: #000000;
    font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
    text-align: center;
}

/* Top text section */
.footer-top {
  margin-bottom: 15px;
	color: white;
}

/* Links container */
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

/* Buttons */
.footer-button {
    text-decoration: none;
    color: #FFFFFF;
    padding: 8px 14px;
    border: 1px solid #FFFFFF;
    border-radius: 6px;
    transition: 0.2s ease;
}

.footer-button:hover {
  background-color: #333;
  color: white;
}

/* Email link tweak */
.email-link {
  color: #0073e6;
  text-decoration: none;
}

.email-link:hover {
  text-decoration: underline;
}
.techniquelist {
    font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
    font-size: medium;
	color: white;
}


.technique-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.technique-card {
  width: 200px;
  text-align: center;
  font-family: Segoe, "Segoe UI", sans-serif;
	color: white;
}

.technique-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.technique-card p {
  margin-top: 8px;
  font-size: 14px;
}

.technique-card {
  transition: transform 0.2s ease;
}

.technique-card:hover {
  transform: scale(1.50);
}
@media (max-width: 600px) {
  .technique-card {
    width: 45%;
  }
}
.section_two {
  font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
  text-align: center;
  color: white;
  padding: 60px 20px;
  background-color: #000; /* matches your theme */
}
.section_two h2 {
  font-size: 28px;
  margin-bottom: 15px;
}
.section_two p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.5;
  opacity: 0.9;
}
.section_two {
  background: linear-gradient(180deg, #000 0%, #111 100%);
}
@media (max-width: 768px) {

  .hero-section {
    flex-direction: column;
    align-items: stretch;   /* important fix */
    padding: 20px 0;        /* removes horizontal offset issues */
  }

  .section_one {
    text-align: center;
    max-width: 50%;
  }

  .video-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 20px 0;
  }

}




