/* Reset & base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  /* Inter Black */
  @font-face {
    font-family: 'InterBlack';
    src: url('../fonts/Inter-Black.woff2') format('woff2'), /* Modern Browsers */
         url('../fonts/Inter-Black.woff') format('woff'), /* Modern Browsers */
         url('../fonts/Inter-Black.ttf')  format('truetype'), /* Safari, Android, iOS */
  }

  /* Inter Bold */
  @font-face {
    font-family: 'InterBold';
    src: url('../fonts/Inter-Bold.woff2') format('woff2'), /* Modern Browsers */
         url('../fonts/Inter-Bold.woff') format('woff'), /* Modern Browsers */
         url('../fonts/Inter-Bold.ttf')  format('truetype'), /* Safari, Android, iOS */
  }

  /* Inter Light */
  @font-face {
    font-family: 'InterLight';
    src: url('../fonts/Inter-Light.woff2') format('woff2'), /* Modern Browsers */
         url('../fonts/Inter-Light.woff') format('woff'), /* Modern Browsers */
         url('../fonts/Inter-Light.ttf')  format('truetype'), /* Safari, Android, iOS */
  }
  
  body {
    font-family: InterBold;
    background-color: #fff;
    color: #000;
  }
  
  a {
    text-decoration: none;
    color: black;
  }
  
  ul {
    list-style: none;
  }
  
  /* Header */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #f4f4f4;
    border-bottom: 1px solid #ccc;
  }
  
  .logo a {
    font-family: InterBlack;
    font-size: 48px;
    font-weight: bold;
  }
  
  .title:hover {
    text-decoration: underline;
  }

  .title-container {
    position: relative;
    /* margin-top: 40px; */
    margin-bottom: 40px;
  }

  .page-title {
    font-family: InterBlack;
    font-size: 36px;
    font-weight: bold;
    /* padding-left: 40px; */
    margin-bottom: 40px;
  }

  .subheader {
    font-family: InterLight;
    font-size: 16px;
    margin-top: 10px;
  }
  
  .nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    position: relative;
  }
  
  .nav-links li {
    position: relative;
  }
  
  .nav-links a {
    font-weight: 500;
    color: #000;
  }
  
  .nav-links a:hover {
    /* background-color: #bebebe; */
    text-decoration: underline;
  }
  
  /* Dropdown */
  .dropdown-content {
    font-family: InterLight;
    display: none;
    position: absolute;
    top: 35px;
    background-color: #fff;
    border: 1px solid #ccc;
    min-width: 200px;
    z-index: 1000;
  }
  
  .dropdown-content li {
    padding: 10px;
  }
  
  .dropdown-content li a:hover {
    background-color: #eee;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* Carousel */
  .carousel {
    position: relative;
    max-width: 100vw;
    height: 85vh;
    overflow: hidden;
  }
  
  .slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
  }
  
  .slides img {
    width: 100vw;
    height: 85vh;
    object-fit: cover;
    flex-shrink: 0;
  }
  
  .carousel-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
  }
  
  .carousel-nav button {
    background-color: rgba(0,0,0,0.5);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 10px 20px;
    cursor: pointer;
  }
  
  .carousel-nav button:hover {
    background-color: rgba(0,0,0,0.7);
  }
  
  /* Footer */
  footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f4f4f4;
    padding: 30px 40px;
    border-top: 1px solid #ccc;
  }
  
  .footer-about {
    font-family: InterLight;
    width: 100%;
    height: 140px;
    padding-right: 70px;
    padding-top: 10px;
    /* background-color: white; */
    border-right: solid #000;
  }

  .footer-contact {
    width: 100%;
    height: 140px;
    margin: auto;
    text-align: center;
    /* background-color: #333; */
  }

  .footer-contact p {
    margin-top: 0px;
    font-size: 30px;
    /* font-weight: bold; */
  }
  
  .contact-btn {
    background-color: #000;
    color: white;
    padding: 10px 36px;
    position: relative;
    margin-top: 10px;
    /* bottom: -30px;
    right: 21.75%; */
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 50px;
  }
  
  .contact-btn:hover {
    background-color: #666;
  }

  .gallery {
    max-width: 84vw;
    /* text-align: center;
    justify-content: center; */
    padding-top: 40px;
    padding-bottom: 40px;
    margin: auto;
    /* background-color: red; */
  }
  
  /* Gallery Grid for Prime Day Page */
  .gallery-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28.5px;
    /* padding: 40px; */
    /* padding-top: 40px; */
  }

  .gallery-item img {
    width: 41vw;
    height: auto;
    /* display: block; */
    /* object-fit: cover; */
  }

  /* Full-width featured image */
  .gallery-item-full-width {
    grid-column: 1 / -1;
    /* width: 90vw;
    height: auto; */
    /* display: block; */
    /* object-fit: cover; */
  }

  .gallery-image-full-width {
    /* width: 93.6vw; */
    width: 84vw;
    height: auto;
    /* display: block;
    object-fit: cover; */
  }

  .gallery-item-double-height {
    grid-row-end: span 2;
  }

  .gallery-image-double-height {
    width: 41vw;
    height: auto;
  }

  .column-container {
    display: flex;
    width: 100%;
    margin-top: 28.5px;
  }

  .column {
    flex: 1; /* Equal width columns */
    display: flex;
    flex-direction: column;
    gap: 28.5px;
  }

  .column + .column {
    margin-left: 28.5px; /* space ONLY between the columns */
  }

  .column img {
    width: 100%; /* Fill the column width */
    height: auto;
    display: block;
    /* border-radius: 5px; */
  }

  /* Base styles */
  .dropdown-module {
    position: relative;
    display: inline-block;
  }

  .dropdown-trigger {
    font-family: InterBold;
    background: transparent;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0px 0px;
    color: #000;
    transition: color 0.2s ease;
  }

  .dropdown-trigger:hover {
    /* color: #666; */
    text-decoration: underline;
  }

  /* Dropdown menu */
  .dropdown-menu {
    font-family: InterLight;
    position: absolute;
    top: 100%;
    right: 0;        /* Aligns it to the right edge of parent */
    left: auto;
    margin-top: 8px;
    background-color: #fff;
    border: 1px solid #ccc;
    min-width: 220px;
    max-width: 300px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }

  .dropdown-module:hover .dropdown-menu {
    font-family: InterLight;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Dropdown items */
  .dropdown-menu li {
    border-bottom: 1px solid #eee;
  }

  .dropdown-menu li:last-child {
    border-bottom: none;
  }

  .dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: #000;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .dropdown-menu a:hover {
    background-color: #f0f0f0;
    color: #333;
  }

  /* Prevent dropdown from going off screen */
  @media (max-width: 400px) {
    .dropdown-menu {
      right: 0;
      left: auto;
    }
  }

  .footer-social {
    /* display: flex; */
    /* gap: 20px; */
    /* align-items: center; */
    margin-top: 20px;
  }

  .footer-social a {
    color: #666;
    transition: color 0.3s ease;
  }

  .footer-social a:hover {
    color: #000;
  }

  .footer-social-child {
    display: flex;
    gap: 32px;
    /* background-color: red; */
    justify-content: center; /* Centers horizontally */
    align-items: center;
    /* margin: auto; */
    /* background-color: aquamarine; */
    /* padding: 20px; */
  }

  .footer-social-child span {
    margin-top: -100px;
  }

  .social-icon {
    width: 36px;
    height: 36px;
    /* display: block; */
    margin: auto;
    /* padding: 20px; */
    vertical-align: middle;
  }

  .test1 {
    font-size: 16px;
    position: relative;
    padding-left: 5px;
    vertical-align: bottom;
    /* color: red; */
  }

  .before-after-container {
    position: relative;
    /* width: 100%;
    max-width: 600px;
    overflow: hidden;
    cursor: pointer; */
  }

  .before-after-container img {
    display: block;
    width: 100%;
    height: auto;
    transition: opacity 0.2s;
  }

  .before-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 2;
  }

  .before-after-container:hover .before-image {
    opacity: 1;
  }

  .blurb {
    display: flex;
    justify-content: center;
    /* background-color: #f4f4f4; */
    width: 84vw;
    height: 60vh;
    margin-top: 100px;
    align-items: center;
    justify-content: space-between;
    /* max-width: 900px; */
    margin: 50px auto;
    padding: 20px;
    /* background-color: #f9f9f9; */
    /* border-radius: 8px; */
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.05); */
  }

  .text-section {
    flex: 1;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Top-align text */
    text-align: left;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 4px 4px 4px 10px rgba(0,0,0,0.05);
    margin-right: -40px;
    z-index: 100;
  }

  .text-section h2 {
    font-family: InterBlack;
    margin-top: 0;
    padding-bottom: 10px;
    font-size: 28px;
    /* color: #333; */
  }

  .text-section p {
    font-family: InterLight;
    font-size: 16px;
    /* color: #555; */
    line-height: 1.8;
  }

  .text-section a {
    /* display: inline; */
    padding-top: 14px;
    font-family: InterBold;
    font-size: 16px;
    /* color: #555; */
    line-height: 1.8;
    width: fit-content;
    /* background-color: red; */
  }

  .text-section a:hover {
    text-decoration: underline;
  }

  .text-link a:hover {
    text-decoration: underline;
  }

  .image-section {
    flex-shrink: 0;
    height: 100%;
  }

  .blurb-image {
    /* display: block; */
    /* width: 25vw; */
    height: 100%;
    /* margin: auto; */
    /* padding: 10px;  */

  }

  .about-text {
    font-family: InterLight;
    font-size: 20px;
    line-height: 1.4;
  }

  @media (max-width: 768px) {
    .column-container {
      flex-direction: column;
    }
  }