/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}

nav {
    position: fixed;
    height: 75px;
    top: 0; left: 0; right: 0;
    padding: 0px 40px;
    z-index: 1000;
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-bottom: 1px solid #333;
  }
  
.nav-logo {
    font-family: impact;
    font-size: 13px;
    letter-spacing: 0.05em;
    color: #333;
    text-decoration: none;
    height: 50px;
  }
  
  .nav-logo span { color: red; }
  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }
  
  .nav-links a {
    background: transparent;
    color: #000000;
    padding: 14px 24px;
    font-family: 'Arial Black', 'Impact', 'Franklin Gothic Heavy', sans-serif;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    outline: none;
    z-index: 2;
    background-clip: padding-box;
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 10px 0;
    border: 2px solid #000;
    clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
}

  .nav-links a::before {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid #000;
    clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
    background: transparent;
}

.nav-links a:hover::before {
    border-color: #fff;
}

.nav-links li a {
  text-decoration: none;
  }

  .nav-links a:hover {
    background-color: #000;
    color: #fff;
    border-color: #fff;
}
  
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1px;
    background: #333;
    transition: width 0.3s ease;
  }
  
  .nav-links a:hover::after { width: 100%; }
  
  .nav-cta {
    font-family: 'Arial Black', 'Impact', 'Franklin Gothic Heavy', sans-serif;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    transition: all 0.25s ease;
}

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
  .hamburger span { display: block; width: 24px; height: 1.5px; background: #333; transition: all 0.3s; }

  @media (max-width: 768px) {
    nav { padding: 0 1.5rem; }
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .mobile-menu {
      position: fixed;
      top: 72px; left: 0; right: 0;
      background: #fff;
      border-bottom: 1px solid #333;
      padding: 2rem 1.5rem;
      display: none;
      flex-direction: column;
      gap: 1.5rem;
      z-index: 999;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-family: impact;
      font-size: 14px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #333;
      text-decoration: none;
    }
  }

#hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
  }
  
.hero-title {
    font-size: clamp(16vw, 16vw, 26vw);
    line-height: 0.88;
    letter-spacing: -0.1em;
    white-space: nowrap;
    overflow: visible;
    margin-right: -8vw;
    position: relative;
    z-index: 1;
    transition: transform 0.5s;
}

.button-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    gap: 24px;
    justify-content: center;
    align-items: stretch;
    padding: 40px 30px;
    background: transparent;
    width: 100vw;
    min-width: 100%;
}

.btn {
    background: transparent;
    border: none;
    color: #000000;
    padding: 14px 24px;
    font-family: 'Arial Black', 'Impact', 'Franklin Gothic Heavy', sans-serif;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    outline: none;
    z-index: 2;
    background-clip: padding-box;
    width: 100%;
    max-width: 200px;
    text-align: center;
    margin: 10px 0;
}

