/*! HTML5 Boilerplate v9.0.1 | MIT License | https://html5boilerplate.com/ */
/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
  margin: 0;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
body, html {
  font-family: Arial, sans-serif;
}

/* Header */
/* Header */
.site-header {
  background-color: #ffffff;
  padding: 1em 0 1.5em;
  border-bottom: 1px solid #ccc;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1em;
}

.logo img {
  max-height: 30px;
  height: auto;
  width: auto;
  display: block;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
@media (max-width: 960px) {
  .hero-section {
    height: auto;
  }
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 960px) {
  .hero-image {
    position: relative;
    height: auto;
    width: 120%;
    left: -10%;
  }
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

.hero-content h1 {
  font-size: 4em;
  margin-bottom: 0.5em;
}

.hero-content p {
  font-size: 1.5em;
  margin-bottom: 1em;
}

.cta-button {
  padding: 0.75em 1.5em;
  font-size: 1.2em;
  color: white;
  background-color: #007BFF;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #0056b3;
}

.section .section-headline {
  font-size: 3.75em;
  margin: 0 auto 0.5em;
  /* Center the content */
  max-width: 1200px;
  /* Maximum width for readability */
  font-weight: normal;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .section .section-headline {
    font-size: 2rem;
    margin: 0.5em;
  }
}

/* Intro Section */
.intro-section {
  padding: 4em 1em;
  background-color: #ddddd0;
  text-align: center;
}
@media (max-width: 960px) {
  .intro-section {
    padding-top: 1em;
  }
}

.intro-headline {
  font-size: 3.75em;
  margin: 0 auto 0.5em;
  /* Center the content */
  max-width: 1200px;
  /* Maximum width for readability */
  font-weight: normal;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .intro-headline {
    font-size: 2.5rem;
  }
}

.intro-content {
  max-width: 1200px;
  /* Maximum width for readability */
  margin: 0 auto;
  /* Center the content */
  column-count: 2;
  column-gap: 2em;
  text-align: left;
}
.intro-content p {
  font-weight: lighter;
  font-size: 1.5rem;
  line-height: 1.6;
}
.intro-content p:first-child {
  margin-top: 0;
}

@media (max-width: 960px) {
  .intro-content {
    column-count: 1;
  }
  .intro-content p {
    font-size: 1rem;
  }
}
/* Feature Grid Section */
.feature-grid-section {
  padding: 4em 1em;
  background-color: #ffffff;
  text-align: center;
}

.feature-headline {
  font-size: 3.5em;
  font-weight: normal;
  margin-bottom: 0.5em !important;
}
@media (max-width: 768px) {
  .feature-headline {
    font-size: 2.5rem;
  }
}

.feature-intro {
  text-align: center;
  font-size: 1.5rem;
  font-style: italic;
  max-width: 960px;
  margin: 0 auto;
  margin-bottom: 1.5em;
}
@media (max-width: 960px) {
  .feature-intro {
    font-size: 1rem;
  }
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-item {
  background: #f9f9f9;
  padding: 2em;
  border-radius: 10px;
  flex: 1 1 calc(25% - 2em);
  max-width: calc(25% - 2em);
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 64px;
  font-size: 2em;
  margin-bottom: 0.5em;
  color: #007BFF;
  color: #dd225c;
}
@media (max-width: 960px) {
  .feature-icon {
    width: 48px;
    margin-bottom: 0;
  }
}

.feature-item h3 {
  font-size: 1.5em;
  margin-bottom: 0.5em;
}

.feature-item p {
  font-size: 1.25em;
  color: #666;
}
@media (max-width: 960px) {
  .feature-item p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .feature-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.leasing-options {
  background-color: rgba(221, 221, 208, 0.5);
  padding: 2em 1em 4rem;
  width: 100%;
}

.feature-headline {
  font-size: 3.5em;
  margin-bottom: 1.5em;
  font-weight: normal;
}
@media (max-width: 768px) {
  .feature-headline {
    font-size: 2.5rem;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.leasing-options h2 {
  font-size: 3.5em;
  margin-bottom: 1.5em;
  font-weight: normal;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .leasing-options h2 {
    font-size: 2.5rem;
  }
}

.circles {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.circle {
  position: relative;
  width: 40%;
  max-width: 500px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 1em;
}

.circle.yellow {
  background-color: #F7CE63;
}

.circle.pink {
  background-color: #EC4899;
}

.title {
  font-size: calc(1.2em + 2.5vw);
  font-weight: bold;
  margin-bottom: 0;
  font-family: "Helvetica Neue Condensed", "Arial Narrow", sans-serif;
  color: #222222;
  line-height: 1.2;
}

.price {
  font-size: calc(1.2em + 2vw);
  font-weight: normal;
  color: #222222;
  margin-top: 0;
}

.more-link {
  position: absolute;
  bottom: calc(10px + 1vw);
  right: calc(10px + 1vw);
  background-color: white;
  color: black;
  padding: calc(0.2em + 0.3vw) calc(0.5em + 0.3vw);
  border: 1px solid black;
  text-decoration: none;
  font-size: calc(0.9em + 0.3vw);
}

.more-link:hover {
  background-color: #ddd;
}

@media (max-width: 768px) {
  .circle {
    width: 80%;
  }
}
.tab-container {
  width: 100%;
  text-align: center;
}

.tab-buttons {
  display: inline-flex;
  margin-bottom: 20px;
}

.tab-button {
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s;
  color: white;
  /* Ensures text is visible on colored backgrounds */
  font-size: 24px;
  font-weight: bold;
  margin: 0 5px;
  /* Adds spacing between buttons */
}

.tab-button.active {
  border-bottom: 3px solid #333;
  /* Highlights the active tab */
}

.tab-content {
  display: none;
  overflow-x: scroll;
}

.feature-table-section {
  padding: 2em 1em;
  background-color: rgba(221, 221, 208, 0.2);
  text-align: center;
}

.feature-table {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 1.25rem;
}

.feature-table th,
.feature-table td {
  padding: 1em;
  border: 1px solid #ccc;
  text-align: left;
}

.feature-table th {
  background-color: #6ca0dc;
  color: white;
  font-size: 1.2em;
}
.feature-table th:first-child {
  background-color: transparent;
}

.feature-table .tier span {
  display: block;
  font-size: 0.8em;
  font-weight: normal;
}

.feature-table td {
  font-size: 1em;
}

.feature-table td a {
  color: #007BFF;
  text-decoration: none;
}

.feature-table td a:hover {
  text-decoration: underline;
}

.feature-table td em {
  font-style: italic;
  color: #333;
}

.checkmark {
  color: #4CAF50;
  font-size: 2rem;
}

@media (max-width: 768px) {
  .feature-table th,
.feature-table td {
    padding: 0.5em;
  }

  .feature-table th {
    font-size: 1em;
  }

  .feature-table td {
    font-size: 0.9em;
  }
}
.image-grid-section {
  padding: 2em 2em 4em;
  background-color: #ffffff;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.headline {
  font-size: 2em;
  margin-bottom: 1.5em;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2em;
}

.grid-item {
  width: 100%;
  overflow: hidden;
}

.grid-item img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid lightgray;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .image-grid {
    grid-template-columns: 1fr;
  }
}
.faq-section {
  padding: 2em 1em;
  max-width: 1200px;
  margin: 0 auto;
}

.intro-headline {
  font-size: 3.75em;
  margin: 0 auto 0.5em;
  max-width: 1200px;
  font-weight: normal;
  line-height: 1.2;
  text-align: center;
}
@media (max-width: 768px) {
  .intro-headline {
    font-size: 2.5rem;
  }
}

.intro-text {
  font-size: 2em;
}

.faq-accordion {
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 1em 0;
}
.faq-item summary {
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: bold;
  list-style: none;
  position: relative;
  padding-right: 1.5em;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  transition: transform 0.2s;
}
.faq-item summary:focus {
  outline: none;
}
.faq-item[open] summary::after {
  content: "-";
  transform: rotate(180deg);
}
.faq-item .faq-answer {
  padding: 0.5em 1em;
  font-size: 1.25rem;
  line-height: 1.6;
}
.faq-item .faq-answer ul {
  list-style: none;
  padding-left: 0;
}

.faq-conclusion {
  margin-top: 2em;
  text-align: left;
}
.faq-conclusion h3 {
  font-size: 2rem;
  margin-bottom: 0.5em;
  font-weight: normal;
}
.faq-conclusion ul {
  list-style: none;
  padding: 0;
}
.faq-conclusion ul li {
  margin-bottom: 0.5em;
}
.faq-conclusion p {
  font-size: 1.25rem;
  line-height: 1.6;
}

@media (max-width: 960px) {
  .faq-item summary {
    font-size: 1.25rem;
  }
  .faq-item .faq-answer {
    font-size: 0.9rem;
  }

  .faq-conclusion h3 {
    font-size: 1.75rem;
  }
  .faq-conclusion p {
    font-size: 0.9rem;
  }
}
/* Contact Form Section */
.contact-form-section {
  padding: 2em 1em;
  background-color: #ffffff;
  text-align: center;
}

.headline {
  font-size: 3.5em;
  margin-bottom: 0.5em;
  font-weight: normal;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .headline {
    font-size: 2.5rem;
  }
}

.contact-form-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group label {
  margin-bottom: 0.5em;
  font-size: 1.2em;
}

.form-group input,
.form-group textarea {
  padding: 0.75em;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
}

.submit-button {
  padding: 1em;
  background-color: #EC4899;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1.2em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: rgba(236, 72, 153, 0.83);
}

#loading {
  width: 50px;
  margin: 0 auto;
  display: none;
}

@media (max-width: 768px) {
  .contact-form {
    gap: 0.5em;
  }

  .form-group label {
    font-size: 1em;
  }

  .submit-button {
    font-size: 1em;
  }
}
footer .star {
  padding: 20px;
}

footer a {
  color: #222222;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers
 */
.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */
.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */
.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}
/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  *,
*::before,
*::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  tr,
img {
    page-break-inside: avoid;
  }

  p,
h2,
h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
h3 {
    page-break-after: avoid;
  }
}

/*# sourceMappingURL=style.css.map */
