/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: sans-serif;
    line-height: 1.5;
    color: #333;
  }

  .hero-section {
  width: 100%;
  height: 90vh;
  max-width: 100vw;
  max-height: 80vh;  
  position: relative;
  background-size: cover;
  overflow: hidden;
  margin-bottom: 0px;
  }

  .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100vw;
    max-height: 80vh;
    z-index: -1;
    object-fit: cover;
    margin-bottom: 0px;
  }

  .hero-section video{
    width: 100%;
    height: 90%;
    max-width: 100vw;
    max-height: 80vh;
    object-fit: cover;
    margin-bottom: 0px;
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    margin: 0 auto;
    margin-left: 15%;
    /* gap: 2rem; */
    padding: 2rem;
    
  }
  
  .hero-content h1 {
    font-size: 3rem;
    text-shadow: .15rem .15rem 4px black;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    justify-content: left;
    text-shadow: .15rem .15rem 4px black;
  }
  
  .hero-button {
    display: inline-block;
    padding: 1rem 1.25rem;
    background-color: #bd6405;
    color: white;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 2px;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
    /* border-radius: 8px; */
    transition: background-color 0.3s ease;
  }
  
  .hero-button:hover {
    background-color: #9a3412;
  }
  
  .navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    z-index: 10;
    background-color: white;
    /* background: repeating-linear-gradient(
    to right,
    #f09204d6,
    #f09204d6 .5px,
    #dededb 1px,
    #dededb 200px
  ); */
    padding: 1.5rem 2rem;
  }
  
  .logo {
    font-size: 1.75rem;
    font-weight: bold;
    color: #c2410c;
    text-decoration: none;
    /* text-align: left; */
    line-height: 1;
    /* margin-left: 15%; */
    /* text-shadow: 0 0 20px #9a3412; */
  }

  .nav-logo {
    justify-content: flex-start;
  }

  .nav-links {
    display: flex;
    justify-content: flex-end;
    flex-grow: 1;
    /* margin-left: 5.5%; */
  }
  
  .nav-links a {
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0 5rem;
    text-decoration: none;
    color: #504c4cde;
    text-shadow: 0px 0px 20px #504c4cde;
  }
  
  .nav-links a:hover {
    color: #c2410c;
  }

  .video-listing {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: nowrap;
    padding: 2rem;
  }

  .video-clip-section-title {
    text-align:center;
    color:#bd6405;
    font-size: 3.5vh;
    background: linear-gradient(to bottom, rgba(249, 46, 0, 0), #dededb);
  }

  .video-clip-section-description {
    text-align:center;
    background-color:#dededb;
    font-size:1.35rem;
  }

  .video-clip {
    flex: 1 1 30%;
  }

  .video-clip video {
    width: 100%;
    height: auto;
    min-width: 250px;
    /* border: 2px solid #ccc; */
    border-radius: 8px;
  }
  
  @media (max-width: 768px) {
    .video-container {
        grid-template-columns: 1fr; /* Stack in a single column */
    }
  }

  .book-listing {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas: 
    "a b c c"
    "e f g h"
    "i j k l";
    justify-content: center;
    padding-top: 3rem;
  }


  .book-listing-text {
    grid-area: b;
    justify-self: center;
    text-align: center;
  }

   .book-listing-title {
    text-align: center;
    color: #bd6405;
    font-size: 1.5vw;
  }

  .book-listing-description {
    text-align: left;
    grid-area: f;
    padding: 1rem 0 1rem 0;
  }
  
  .book-image {
    grid-area: c;
    align-self: left;
    justify-self: left;
    height: 100%;
    padding: 0 2rem 2rem 2rem;
  }

  .book-image img {
    max-width: 500PX;
    height: auto;
    width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    max-height: 100%;
    box-shadow: 20px 20px 40px 0 rgba(0, 0, 0, .4);
  }

  .buy-book-button {
    grid-area: j;
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #bd6405;
    color: white;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 2px;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
    /* border-radius: 8px; */
    transition: background-color 0.3s ease;
  }

  footer {
    font-size: smaller;
    background-color: #dededb;
    text-align: center;
  }


/* Existing styles are preserved up to here */

/* === MOBILE RESPONSIVE ENHANCEMENTS === */
@media (max-width: 768px) {
  .hero-section {
    height: 80vh;
    padding: 2rem 1rem;
  }

  .hero-content {
    margin-left: 0;
    align-items: center;
    font-size: 1.5rem;
    text-align: center;
    padding-top: 10rem;
  }

  .hero-content h1 {
    font-size: 1.55rem;
  }

  .hero-content p {
    font-size: .8rem;
    padding-top: .5rem;
  }

  .hero-button {
    padding: .5rem 1rem;
    font-size: 8px;
    letter-spacing: 1px;
  }

  .navbar {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
  }

  .nav-links {
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
  }

  .nav-links a {
    margin: 0.5rem 0;
    font-size: 1rem;
    margin-top: 1rem;
  }

  .video-clip-section-title {
    font-size: 1.4rem;
  }

  .video-clip-section-description {
    font-size: .8rem;
  }

  .video-listing {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }

  .video-clip video {
    min-width: auto;
    width: 100%;
  }

  .book-listing {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
  }

  .book-listing-text {
    text-align: center;
  }

  .book-listing-title {
    font-size: 1.5rem;
  }

  .book-listing-description {
    text-align: center;
  }

  .book-image {
    padding: 1rem 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .book-image img {
    max-width: 90%;
    height: auto;
  }

  .buy-book-button {
    display: inline-block;
    text-align: center;
    margin-top: 1rem;
  }

  footer {
    font-size: .5rem;
  }
}