:root {
  --bluebird: hsl(211, 78%, 49%);
  --white: #ffffff;
  --btn-hover: #00b0e0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f5f5;
  color: #333;
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* Navigation bar */
.navigation-bar {
  background-color: var(--bluebird);
  padding: 1rem 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

#navigation-container {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

#navigation-container ul li a.active {
  color: var(--btn-hover);
  font-weight: bold;
}

.logo img {
  height: 64px;
}

#navigation-container ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

#navigation-container ul li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

#navigation-container ul li a:hover {
  color: #00cfff;
}

.hero {
  position: relative;
  background-image: url('./assets/images/bluebird-sky.jpg'); 
  background-size: cover;
  background-position: center;
  height: 75vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4); /* dark overlay */
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.hero-button {
  background-color: var(--bluebird);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.hero-button:hover {
  background-color: var(--btn-hover);
}

.featured-section {
  max-width: 900px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  text-align: center;
}

.featured-section h2 {
  font-size: 2.25rem;
  color: black;
  margin-bottom: 1.5rem;
}

.carousel {
  position: relative;
  overflow: hidden;
}

.carousel-track-container {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  list-style: none;
  padding: 0;
  margin: 0;
}

.carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 1rem;
  text-align: center;
}

.carousel-slide img {
  max-width: 320px;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.slide-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.slide-info p {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.slide-info .price {
  font-weight: bold;
  color: black;
  font-size: 1.25rem;
}

/* Carousel buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  background: rgba(0,0,0,0.3);
  border: none;
  color: white;
  font-size: 2.5rem;
  padding: 0 0.5rem;
  cursor: pointer;
  user-select: none;
  transform: translateY(-50%);
  border-radius: 50%;
  z-index: 10;
  transition: background 0.3s ease;
}

.carousel-btn:hover {
  background: var(--btn-hover);
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

/* Responsive */
@media (max-width: 720px) {
  .carousel-slide img {
    max-width: 100%;
  }
}

/* Contact container */
.container {
  max-width: 600px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: white;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

aside h2 {
  font-size: 1.8rem;
  color: #004466;
  margin-bottom: 1rem;
}

section ul#contact-us {
  list-style: none;
  font-size: 1.1rem;
}

#contact-us li {
  margin: 0.75rem 0;
}

#contact-us .fa {
  font-size: 1.5rem;
  color: #004466;
  margin-right: 10px;
  transition: color 0.3s ease;
}

#contact-us .fa:hover {
  color: #00cfff;
}

/* Product section */
.product-section {
  padding: 2rem;
  text-align: center;
}

.product-section h2 {
  font-size: 2rem;
  color: black;
  margin-bottom: 2rem;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}

.product-card {
  border-radius: 12px;
  padding: 2rem;
  width: 600px; /* increased from 280px */
  text-align: center;
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1.25rem;
}

.product-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.product-card p {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.product-card p.price {
  font-size: 1.25rem;
  color: black;
  font-weight: bold;
}

.buy-button {
  background-color: var(--bluebird);
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.buy-button:hover {
  background-color: var(--btn-hover);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  #navigation-container {
      flex-direction: column;
      align-items: flex-start;
  }

  #navigation-container ul {
      flex-direction: column;
      width: 100%;
      margin-top: 1rem;
  }

  .container,
  .product-grid {
      flex-direction: column;
      align-items: center;
  }
}

/*Contact page html*/
.contact-page {
  max-width: 1000px;
  min-width: 700px;
  margin: 3rem auto;
  padding: 3rem;
  background: #fff;
  border-radius: 16px;
}

.contact-page h1 {
  text-align: center;
  font-size: 2.5rem;
  color: black;
  margin-bottom: 2rem;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact-form, .contact-info {
  flex: 1 1 300px;
}

.contact-form label {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
}

.contact-form input, .contact-form textarea {
  font-size: 1rem;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  padding: 1rem;
  margin-top: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
}

.contact-form button {
  margin-top: 1.5rem;
  padding: 0.75rem 2rem;
  background: var(--bluebird);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.contact-form button:hover {
  background: var(--btn-hover);
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.gallery-hero {
  text-align: center;
  padding: 4rem 1rem;
  background-color: #f4f4f4;
}

.gallery-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.gallery-hero p {
  font-size: 1.2rem;
  color: #555;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 2rem;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.social-icons a {
  font-size: 1.8rem;
  margin-right: 15px;
  color: #004466;
  text-decoration: none;
}

.social-icons a:hover {
  color: #0088cc;
}

/*set nav inline*/
.seek {
  display: inline-block;
}

/* Style all font awesome icons */
.fa {
    padding: 20px;
    font-size: 30px;
    width: 50px;
    text-align: center;
    text-decoration: none;
  }
  
  /* Add a hover effect if you want */
  .fa:hover {
    opacity: 0.7;
  }
  
  /* Set a specific color for each brand */
  
  /* Facebook */
  .fa-instagram {
    background: #cf59d3;
    color: white;
    border-radius: 10px;
    padding: 10px;
  }
  
  /* Twitter */
.fa-twitter {
    background: #55ACEE;
    color: white;
    border-radius: 10px;
    padding: 10px;
  }

.site-footer {
    background-color: var(--bluebird);
    color: white;
    padding: 2rem 1rem 1rem;
    margin-top: 4rem;
    font-size: 0.95rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    gap: 1.5rem;
}

.footer-logo img {
    height: 64px;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00cfff;
}

.footer-social a {
    font-size: 1.5rem;
    color: white;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.85rem;
    opacity: 0.8;
}

footer {
  padding: 1rem;
  text-align: center;
  background-color: #f5f5f5;
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links, .footer-social {
        justify-content: center;
    }
}