/* ========================================
   BASE STYLES
   ======================================== */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #000000;
  color: #1d1d1f;
  line-height: 1.6;
}

/* Hide the navbar and remove its space */
.navbar {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* distribute top/middle/bottom */
  align-items: center;
  text-align: center;
  overflow: hidden;
}

/* Middle content */
.hero-inner {
  flex: 1; /* take up remaining space */
  display: flex;
  flex-direction: column;
  justify-content: center; /* center vertically inside remaining space */
  align-items: center;
  z-index: 2;
}

.hero-inner svg {
  width: 10rem;
  height: auto;
}

/* Footer always bottom */
.hero-footer {
  margin-bottom: 1rem; /* add some breathing room */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  transition: transform 0.3s ease;
  cursor: pointer;
  user-select: none;        /* Standard */
  -webkit-user-select: none; /* Safari/Chrome */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* IE/Edge */
}

.hero-footer:hover {
  transform: translateY(-4px);
}

.hero-footer p {
  margin: 0;
  font-size: 1rem;
}

.hero-footer svg {
  width: 20px;
  height: auto;
}

#vanta-bg {
  width: 100%;
  height: 100vh;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-top: 1rem;
  margin-bottom: 1rem;
  letter-spacing: -0.07em;
  color: #111;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #111;
  margin-bottom: 2rem;
  margin-top: 0;
  padding: 1rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  width: 600px;
}

.hero-buttons a, 
.hero-buttons button {
  display: flex;
  flex: 1;               /* all buttons grow equally */
  max-width: 600px;      /* optional: prevent too wide */
  text-align: center;    /* center text inside */
  justify-content: center;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.btn-primary,
.btn-secondary {
  padding: 0.9rem 1.6rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-primary {
  position: relative;
  background: #00000000; /* transparent */
  border: 2px solid black;
  color: black;
  overflow: hidden;
  transition: color 0.3s ease;
  width: 100%;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0.15)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none; /* don't block clicks */
}

.btn-primary:hover::before {
  opacity: 1;
}



.btn-secondary {
  background: #f0f0f0;
  color: #111;
}

.btn-secondary:hover {
  background: #e0e0e0;
}

/* ========================================
   CONTENT SETUP
   ======================================== */

.content {
  min-height: 100vh;
}

/* ========================================
   IMAGE SETUP
   ======================================== */

.styled-graphic {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
  padding: 2rem;
}

.styled-graphic img {
  max-width: 100%;   /* scale down with container */
  width: 100%;       /* allow shrinking */
  max-width: 400px;  /* but never grow past 400px */
  height: auto;
}


/* ========================================
   LOVELY QUOTE BUTTON
   ======================================== */

.quote-button {
  text-align: center; /* Centers the button horizontally */
  margin: 40px auto; /* Adds vertical space and keeps it centered */
  
}

/* Base styling for the button link */
.quote-button a {
  display: inline-block; /* Allows padding and other box model properties */
  padding: 15px 35px; /* Adjust padding to control button size */
  font-family: Arial, sans-serif; /* A clean, readable font */
  font-size: 1.2rem; /* Makes the text size proportional to the root font size */
  font-weight: bold;
  text-decoration: none; /* Removes the underline from the link */
  text-transform: uppercase; /* Makes the text all caps */
  color: #ffffff; /* Text color, black for a high-contrast look */
  background-color: #006eff; /* A vibrant orange background color */
  border: 2px solid #006eff; /* A border with the same color as the background */
  border-radius: 8px; /* Gives the button a pill shape */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow for depth */
  transition: all 0.3s ease-in-out; /* Smooth transition for hover effects */
  width: 100%;
}

/* Hover and Focus states for the button */
.quote-button a:hover,
.quote-button a:focus {
  background-color: #000000; /* Inverts colors on hover to a black background */
  color: #006eff; /* Changes text to vibrant orange */
  border-color: #006eff; /* Changes border to vibrant orange */
  transform: translateY(-2px); /* Lifts the button slightly on hover */
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2); /* A more pronounced shadow on hover */
  outline: none; /* Removes the default focus outline for a cleaner look */
}

/* ========================================
   TABS
   ======================================== */
.tabs {
  display: flex;
  justify-content: center;
  gap: 2rem;
  background: linear-gradient(
    to bottom,
    rgba(65, 65, 65),
    rgba(63, 63, 63),
    rgba(36, 36, 36)
  );
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  margin: 0 auto 2rem auto;

  /* Sticky effect */
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;     
  z-index: 1000;
}

.tab-button {
  padding: 1rem 2rem;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: #d3d3d3;
  position: relative;
  transition: color 0.2s ease;
}

.tab-button.active {
  color: #ff4800;
}

.tab-button.active::after {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background: #ff4800;
  position: absolute;
  bottom: -1px;
  left: 0;
}

/* for smooth transitions */
.tab-pane {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.tab-pane h2, h3, p {
  display: flex;
  text-wrap: justify;
  word-spacing: 0.05em;

}

.tab-pane.active {
  opacity: 1;
  max-height: 2000px; /* large enough to fit content */
}




/* ========================================
   TAB CONTENT
   ======================================== */
.tab-content {
  max-width: 1100px;
  width: calc(100% - 4rem);  /* So very botched :,( */
  margin: 0 auto;
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f); /* subtle gradient for depth */
  color: white;
  padding: 2.5rem;
  border-radius: 16px;

  /* 3D shadow effect */
  box-shadow: 
    0 4px 6px rgba(0, 0, 0, 0.5),   /* main dark shadow */
    0 8px 20px rgba(0, 0, 0, 0.4),  /* deeper shadow for depth */
    inset 0 1px 2px rgba(255, 255, 255, 0.05); /* subtle inner highlight */
  
  /* Optional: slight glow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tab-content:hover {
  transform: translateY(-4px); /* lifts content slightly */
  box-shadow: 
    0 8px 12px rgba(0, 0, 0, 0.6),
    0 16px 30px rgba(0, 0, 0, 0.5),
    inset 0 1px 3px rgba(255, 255, 255, 0.08);
}


.tab-content > div {
  display: none;
}

.tab-content > div.active {
  display: block;
}

.tab-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.tab-content h3 {
  margin-top: 2rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.feature-list li::before {
  content: "✓";
  color: #007aff;
  font-weight: bold;
  position: absolute;
  left: 0;
}


/* ========================================
   WEB TO MOBILE ADJUSTMENTS
   ======================================== */

.squashing-content {
  display: flex;
  align-items: stretch;       /* make both children equal height */
  justify-content: space-between;
  gap: 2rem;                  /* breathing space */
  flex-wrap: wrap;            /* allow wrapping when narrow */
  margin: 2rem 0;
}

/* text */
.squashing-content p {
  flex: 1 1 50%;              /* take half the width on desktop, shrink if needed */
  font-size: 1.25rem;
  line-height: 1.6;
  display: flex;
  align-items: center;        /* vertically center inside block */
}

/* image wrapper */
.squashing-content > div {
  flex: 1 1 50%;              /* also take half the width */
  display: flex;
  justify-content: center;
  align-items: center;
}

.squashing-content img {
  max-width: 100%;
  height: auto;
  object-fit: contain;        /* keeps proportions clean */
  max-height: 400px;          /* don’t let it explode too tall */
}


/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */


@media (max-width:1000px) {
  .hero-footer {
    padding-bottom: 6rem;
  }
}



@media (max-width: 590px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    gap: 0.75rem;
    width: 360px;
  }




  .tabs {
    gap: 0rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
  }

  .tab-button {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }

  .tab-content {
    width: auto; /* I hate how this works but it works! */
    padding: 1.5rem;
    margin-top: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
