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

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    overflow-y: scroll;
    position: relative;
}

#bg-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../photos\ and\ videos/5166950.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none;
}

/* Navbar Styles */
.navbar {
    background-color: #1d1c1e8f;
    padding: 1.9rem 2rem;
    position: sticky;
    top: 0;
    z-index: 10;
}

.navbar .container {
     display: flex;
  flex-direction: row;            /* instead of column */
  justify-content: space-between; /* pushes brand to left, nav to right */
  align-items: center; 
}

.navbar-brand {
  font-size: 2rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    margin-bottom: 1rem;
    align-self: flex-start;
}


.navbar-nav {
    display: flex;
  flex-direction: row;
  gap: 2rem;
  margin-left: auto; /* extra insurance that it stays on the right */
  width: auto;     
}


.nav-item a,
.nav-cart-icon {
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 3rem;
    font-size: 1.5rem;
    font-weight: bold;
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-item a:hover,
.nav-cart-icon:hover {
    color: #00bcd4;
}

/* About Section Styles */
#about-content {
    text-align: center;
    padding: 4rem 2rem;
    color: white;
}

#about-content h1 {
    color: #fff;
}

#about-content h2 {
    color: #fff;
}

/* About Section Layout */
.about-section {
    padding: 4rem 2rem;
    color: white;
}

.about-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.about-row.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 3;
    font-size: 1.25rem;
    min-width: 280px;
}

.about-image {
    flex: 1;
    min-width: 250px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

@media (max-width: 430px) {
    .navbar {
        padding: 1rem;
    }
    .navbar .container {
        flex-direction: column;
        align-items: flex-start;
    }
    .navbar-brand {
        font-size: 1rem;
    }
    .navbar-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        width: 100%;
    }
    .nav-item a,
    .nav-cart-icon {
        font-size: 1rem;
        padding: 0.5rem 1rem;
        background-color: transparent;
    }
    h1 {
        font-size: 2rem;
    }
    p {
        font-size: 0.95rem;
    }
  }
  
  
  /* iPads (portrait, up to 768px wide) */
  @media (min-width: 431px) and (max-width: 768px) {
    .checkout-container {
      flex-direction: column;
      padding: 2rem;
    }
  
    .form-section,
    .summary-section {
      width: 100%;
      margin-bottom: 2rem;
    }
  
    h1, h2 {
      font-size: 2rem;
    }
  
    .checkout-button {
      font-size: 1.25rem;
    }

     .navbar .container {
        flex-direction: column;
        align-items: flex-start;
    }
    .navbar-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    .nav-item a,
    .nav-cart-icon {
        padding: 1rem 1.5rem;
        font-size: 1.2rem;
        background-color: transparent;
    }
    .navbar-brand {
        font-size: 1.25rem;
    }
  }

@media (max-width: 1200px) {
  .navbar {
    padding: 1rem;
  }

  .navbar-brand {
    font-size: 1rem;
  }

  .nav-item a {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    background-color: transparent;
  }

  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 0.95rem;
  }
}

@media (max-width: 1024px) {
  .navbar {
    padding: 1rem;
  }

  .navbar-brand {
    font-size: 1rem;
  }

  .nav-item a {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    background-color: transparent;
  }

  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 0.95rem;
  }
}
