@font-face {
    font-family: 'AlternateGothicNo1';
    src: url('../fonts/alternategothicno1.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
  }
  
  body {
    font-family: 'AlternateGothicNo1', sans-serif;
    margin: 0;
    background-color: black;
  }
  
  /* CSS Variables for Colors */
  :root {
    --primary-color: rgb(153,121,31);
    --secondary-color: black;
    --white: white;
    --gray: gray;
    --arrow-bg: rgba(68,68,68,0.5);
  }
  
  /* Button Styles */
  button {
    font-family: 'AlternateGothicNo1', sans-serif;
    font-size: 30px;
    padding: 10px 20px;
    border: none;
    border-radius: 7px;
    height: 60px;
    cursor: pointer;
    font-weight: lighter;
  }
  
  /* Link Styles */
  .link {
    text-decoration: none;
    cursor: pointer;
  }
  .link:hover {
    text-decoration: underline;
  }
  
  /* Header Banner */
  .banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1500;
  }
  .banner .banner-container {
    margin-top: 15px;
    margin-left: 30px;
    text-align: inherit;
  }
  @media (max-width: 767px) {
    .banner .banner-container {
      margin: 0;
      text-align: center;
    }
  }

  .first-letter {
    font-size: calc(1em + 3px);
  }
  
  /* Social Icons Container for Header */
  .header-social {
    filter: brightness(0) invert(1);
    position: absolute;
    top: 10px;
    right: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  /* Logo (height will be set dynamically) */
  .logo {}
  
  /* Background Section */
  .background {
    background: url('../images/IMG_0502.jpg') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
  }

  .background {
    box-shadow: inset 0 0 14em 8em #000;
    background: linear-gradient(
            rgba(0, 0, 0, 0.5), 
            rgba(0, 0, 0, 0.5)
          ), url('../images/pattern.jpeg');
    background-repeat: repeat;
    background-size: auto; /* This keeps the pattern at its original size */
  }


  @media (max-width: 767px) {
    .background {
        background: url('../images/pattern.jpeg');
        box-shadow: inset 0 0 14em 4em #000;
    }
  }


  
  /* Content Section */
  .content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 60px);
    text-align: center;
  }
  
  /* Headline Container */
  .headline-container {
    padding: 10px;
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  
  /* Headline Text */
  .headline-text {
    color: var(--white);
    padding: 8px;
    margin-bottom: 0px;
    line-height: 0px !important;
    letter-spacing: 1px;
    font-weight: bold;
    text-transform: uppercase;
    font-style: italic;
  }
  
  /* Subtitle Container and Text */
  .subtitle-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    transform: translateY(50px);
  }
  .subtitle-text {
    font-size: 40px;
    line-height: 30px;
    font-weight: lighter;
    color: var(--primary-color);
    padding: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-style: italic;
  }
  @media (max-width: 767px) {
    .subtitle-text {
      font-size: 30px;
      text-transform: uppercase;
    }
  }

  .minor-subtitle-text {
    font-size: 30px;
    line-height: 30px;
    font-weight: lighter;
    color: var(--primary-color);
    padding: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-style: italic;
  }
  @media (max-width: 767px) {
    .minor-subtitle-text {
      font-size: 20px;
      text-transform: uppercase;
    }
  }
  
  /* Buttons Container */
  .buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }
  .button-primary {
    background-color: var(--primary-color);
    color: black;
    border: 2px solid var(--primary-color);
    transition: background-color 0.3s;
    font-style: italic;
  }

  .button-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transition: background-color 0.3s;
    font-style: italic;
  }
  
  /* White Section */
  .white-section {
    background-color: var(--secondary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  @media (min-width: 768px) {
    .white-section {
      min-height: 65vh;
    }
  }
  
  /* Inner White Section Container (static width & flex) */
  .white-section-inner {
    width: 100%;
    flex: 1;
  }
  
  /* Carousel Container */
  .carousel-container {
    width: 90%;
    margin: auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .carousel-container.desktop {
    flex-direction: row;
    min-height: 66vh;
  }
  .carousel-container.mobile {
    flex-direction: column;
    gap: 20px;
    min-height: 100vh;
  }
  
  /* Carousel Column */
  .carousel-column {
    position: relative;
  }
  .carousel-column.desktop {
    width: 45%;
    height: 400px;
  }
  .carousel-column.mobile {
    width: 100%;
    height: 300px;
  }
  
  /* Relative container for arrows */
  .carousel-relative-container {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  /* Description Column */
  .description-column {
    color: var(--white);
    display: flex;
    padding: 20px;
  }
  .description-column.desktop {
    width: 45%;
    height: 400px;
  }
  .description-column.mobile {
    width: 100%;
    margin-top: 50px;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  
  /* Fade Image Component */
  .fade-image {
    background-size: cover;
    background-position: center;
    transition: opacity 0.5s ease-in-out;
    height: 100%;
  }
  
  /* Fade Description */
  .fade-description {
    transition: opacity 0.3s ease;
    font-family: 'AlternateGothicNo1', sans-serif;
  }
  .fade-title {
    font-family: 'AlternateGothicNo1', sans-serif;
    font-size: 45px;
    font-style: italic;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .fade-desc {
    font-size: 30px;
    font-weight: lighter;
    white-space: break-spaces;
    line-height: 40px;
    font-style: italic;
  }
  .fade-price {
    font-size: 15px;
    font-weight: bold;
  }
  
  /* Arrow Buttons */
  .arrow {
    position: absolute;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    background-color: transparent;
    border: 1px solid rgb(43, 43, 43);
    padding: 10px 2px;
    cursor: pointer;
    transition: opacity 0.3s;
    user-select: none;
  }

  .arrow img {
    padding: 10px;
  }

  .arrow.left {
    left: 10px;
  }

  .arrow.right {
    right: 10px;
  }
  
  /* Dots */
  .dots-container {
    margin-top: 30px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin: 0 10px;
    cursor: pointer;
  }
  
  /* Section Divider */
  .section-divider {
    border-top: 1px solid rgba(153,121,31,0.5);
    border-bottom: none;
    border-left: none;
    border-right: none;
    width: 40vw;
  }
  
  /* Footer */
  .footer {
    width: 100%;
    height: 150px;
    background-color: var(--secondary-color);
    padding: 10px 0;
    text-align: center;
  }
  .footer-divider {
    border-top: 0;
    border-bottom: 1px solid rgb(43, 43, 43);
    margin: 0px 40px 10px;
    border-left: 0;
    border-right: 0;
  }
  
  /* Footer Desktop */
  .footer-desktop {
    display: flex;
    flex-direction: row;
    width: 95%;
    margin: 0 auto;
    justify-content: center;
    padding-top: 15px;
    font-size: 12px;
    font-weight: lighter;
    color: var(--gray);
    font-family: Helvetica, sans-serif;
  }
  .footer-section.left {
    width: 50%;
    text-align: left;
  }
  .footer-section.right {
    width: 25%;
    text-align: left;
  }
  .footer-desktop .legal-title,
  .footer-desktop .newsletter-title {
    font-weight: bold;
    color: var(--white);
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  /* Footer Mobile */
  .footer-mobile {
    text-align: center;
    color: var(--gray);
    font-size: 12px;
    font-family: Helvetica, sans-serif;
  }
  
  /* Social Icons in Footer */
  .social-icons {
    filter: brightness(0) invert(1);
    gap: 15px;
    display: flex;
    justify-content: center;
  }
  
  /* Video Overlay */
  .video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0px;
    background-color: var(--secondary-color);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
  }
  .video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .exit-button {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1500;
    background-color: rgba(255,255,255,0.7);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  @media (max-width: 767px) {
    .exit-button {
      width: 60px;
      height: 60px;
      font-size: 28px;
    }
  }
  @media (min-width: 768px) {
    .exit-button {
      width: 40px;
      height: 40px;
      font-size: 18px;
    }
  }
  