/* Base reset */
* {
    box-sizing: border-box;
  }
  
  html, body {
    margin: 0;
    padding: 0;
    font-family: Quattrocento, Bellefair, serif;
    background: #ffffff;
    color: #111;
  }
  
  h1, h2, h3 {
    margin: 0;
    font-weight: normal;
    text-transform: uppercase;
  }
  
  main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem;
    text-align: center;
  }
  
  /* Header & logo */
  header {
    padding-top: 5px;
    text-align: center;
  }
  
  .logo-line {
    position: relative;
    text-align: center;
    margin: 1rem 0;
  }
  
  .logo-line span {
    font-size: 3rem;             
    font-family: Quattrocento, Bellefair, serif;
    text-transform: uppercase;
    color: black;
    background: white;            /* hides the line behind the text */
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
  }
  
  /* the line */
  .logo-line::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: black;
    transform: translateY(-50%);
  }
  




  #logo {
    width: 200px;
    height: 160px;
    margin: 0 auto;
    font-size: 50px;
    background: white;
  }
  
  #logo a {
    text-decoration: none;
    color: black;
  }
  
  /* Navigation */
  nav {
    margin-bottom: 5px;
  }
  
  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  nav li {
    display: inline-block;
    padding: 5px 20px;
  }
  
  nav a {
    color: rgb(109, 110, 113);
    text-transform: uppercase;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.4s;
  }
  
  nav a:hover {
    color: rgb(79, 195, 247);
  }
  
  .header-divider {
    width: 90%;
    height: 3px;
    margin: 15px auto;
    background-color: black;
  }
  
  /* Hero banners */
  .banner {
    width: 100%;
    height: 400px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  #hero-banner {
    background-image: url("../images/a_cozy_place_by_flaviobolla-d7t2qcp.jpg");
  }
  
  /* Banner text */
  #banner-text-container {
    margin-left: auto;
    margin-right: 5%;
    color: white;
    font-size: 4rem;
    white-space: nowrap;
    text-shadow: 1px 1px 5px #000;
  }
  
  #banner-text-container p {
    margin: 0;
  }
  
  /* Buttons */
  .mud-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  
  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }
  
  .play-btn {
    background-color: #007bff;
  }
  
  .walkthrough-btn {
    background-color: #ff0000;
    padding-left: 45px;
    position: relative;
  }
  
  .walkthrough-btn .triangle {
    width: 0;
    height: 0;
    border-left: 16px solid #fff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    position: absolute;
    left: 15px;
  }
  
  /* Text blocks */
  .text-description {
    max-width: 768px;
    margin: 0 auto 2rem;
    padding: 0 5px;
  }

  /* carousel stuff here */

  .carousel-intro {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 2rem auto 1rem auto;
    color: #333;
    max-width: 700px;
  }

  .testimonial-carousel {
    max-width: 700px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: #ffffff;
    border: 2px solid #ccc;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    overflow: hidden;          /* VERY IMPORTANT */
    position: relative;
  }
  
  .testimonial-track {
    display: flex;
    transition: transform 0.6s ease;
  }
  
  .testimonial {
    min-width: 100%;
    text-align: center;
  }
  
  .testimonial p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #111;
    margin-bottom: 1rem;
  }
  
  .testimonial span {
    display: block;
    font-weight: bold;
    color: #444;
  }
  
  /* section divider styling */

  .section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 0;
    gap: 0.5rem; /* space between elements */
  }
  
  .section-divider .sword-left,
  .section-divider .sword-right {
    font-size: 1.5rem;
    line-height: 1;
  }
  
  .section-divider .line {
    flex-grow: 1;
    height: 2px;
    background-color: #555; /* dark grey line */
  }
  
  .section-divider .divider-symbols {
    margin: 0 0.5rem; /* space around symbols */
    font-size: 1.4rem;
    line-height: 1;
    color: #555;
    white-space: nowrap;
  }
  
 
  
  



  .home-start,
  .home-features {
    max-width: 800px;
    margin: 3rem auto;
    padding: 1rem;
    text-align: center;
  }
  
  .start-links {
    list-style: none;
    padding: 0;
  }
  
  .start-links li {
    margin: 1rem 0;
  }
  
/*section 5 styling*/

/* Section 5 perks */
.perks-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0;
}

.perk {
    display: block !important;
    margin: 0 !important;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1.05rem;
    line-height: 1.4;

    /* Remove any bullets or markers */
    list-style: none !important;
}
.perk::before,
.perk::marker {
    content: none !important;
}

.perk:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.feature-links {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1rem;
    color: #333;
}

.feature-links a {
    text-decoration: none;
    color: #007BFF;
    margin: 0 8px;
    transition: color 0.3s;
}

.feature-links a:hover {
    color: #0056b3;
    text-decoration: underline;
}




  .feature-links {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1rem;
    color: #333;
  }
  
  .feature-links a {
    text-decoration: none;
    color: #007BFF;
    margin: 0 8px;
    transition: color 0.3s;
  }
  
  .feature-links a:hover {
    color: #0056b3;
    text-decoration: underline;
  }
  
  
   
  
  
  /* Emphasis */
  .text-emphasis {
    color: rgb(177, 75, 16);
  }
  
  /* Footer */
  footer {
    background-color: rgb(21, 101, 192);
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    border-top: 3px solid black;
    font-family: Risque, Bellefair, serif;
  }
  
  .social-media-links ul {
    list-style: none;
    padding: 0;
  }
  
  .social-media-links li {
    display: inline;
  }
  
  #footer-tagline {
    font-size: 10px;
    margin-top: 1rem;
  }
  
  /* Divider */
  hr.section-divider {
    width: 60%;
    height: 2px;
    border: none;
    background-color: rgb(143, 143, 147);
    margin: 2rem auto;
  }
  
  /* Responsive */
  @media (max-width: 1280px) {
    #banner-text-container {
      font-size: 3rem;
    }
  
    .banner {
      height: 250px;
    }
  }
  
  @media (max-width: 1024px) {
    #banner-text-container {
      width: 100%;
      text-align: center;
      margin: 0 auto;
      font-size: 2rem;
    }
  
    .banner {
      height: 200px;
    }
  }
  
  @media (max-width: 500px) {
    #banner-text-container {
      font-size: 1.5rem;
    }
  
    nav li {
      display: block;
      padding: 8px 0;
    }
  
    .mud-buttons {
      flex-direction: column;
    }
  }
  

/*VIDEO GUIDE SECTION*/
  .newbie-guide {
    max-width: 800px;
    margin: 3rem auto;
    text-align: center;
  }
  
  .video-guides {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 2rem;
  }
  
  .video-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    background-color: #f9f9f9;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  
  .video-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  }
  
  .video-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
  }
  