/*-------------------------------------
  GENERAL RESET & BODY
-------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #333;
  line-height: 1.6;
}

/*-------------------------------------
  HEADER / NAVBAR
-------------------------------------*/
#header {
  transition: all 0.3s ease;
  z-index: 1000;
}

#header.scrolled {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .nav-link {
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}

#header.scrolled .nav-link {
  color: #333;
}

.navbar .nav-link:hover {
  color: #007bff;
}

/*-------------------------------------
  HERO VIDEO SECTION
-------------------------------------*/
#hero {
  position: relative;
  overflow: hidden;
}

#hero video {
  object-fit: cover;
  z-index: 1;
}

#hero .overlay {
  z-index: 2;
}

#hero .container {
  z-index: 3;
  position: relative;
}

#hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

#hero p.lead {
  font-size: 1.25rem;
}

/*-------------------------------------
  FULL-WIDTH SLIDER
-------------------------------------*/
.carousel-item {
  height: 600px;
  position: relative;
}

.carousel-item img {
  object-fit: cover;
  height: 100%;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
}

.carousel-overlay h2 {
  font-size: 2rem;
  font-weight: 700;
}

.carousel-overlay p {
  font-size: 1.1rem;
}

.carousel-overlay .btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

/*-------------------------------------
  PRODUCT GRID
-------------------------------------*/
#shop h2 {
  font-weight: 700;
  font-size: 2rem;
}

.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-card .card-title {
  font-weight: 600;
}

.product-card .card-text {
  font-size: 0.85rem;
}

/*-------------------------------------
  STAFF PICKS / INSTAGRAM GRID
-------------------------------------*/
#instagram img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

#instagram img:hover {
  transform: scale(1.05);
}

/*-------------------------------------
  ABOUT SECTION
-------------------------------------*/
#about h3 {
  font-weight: 700;
  margin-bottom: 1rem;
}

#about p {
  color: #555;
}

/*-------------------------------------
  NEWSLETTER SECTION
-------------------------------------*/
#newsletter h2 {
  font-weight: 700;
  font-size: 2rem;
}

#newsletter p {
  font-size: 1rem;
  color: #555;
}

#newsletter .form-control {
  border-radius: 0;
  padding: 0.75rem 1rem;
}

#newsletter .btn {
  border-radius: 0;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

/*-------------------------------------
  FOOTER
-------------------------------------*/
footer {
  font-family: 'Inter', sans-serif;
}

footer .navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
}

footer ul li a {
  transition: color 0.3s ease;
}

footer ul li a:hover {
  color: #007bff;
}

footer p, footer small {
  color: rgba(255,255,255,0.8);
}

footer a i {
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

footer a:hover i {
  color: #007bff;
}

/*-------------------------------------
  MEDIA QUERIES
-------------------------------------*/
@media (max-width: 768px) {
  #hero h1 {
    font-size: 2.2rem;
  }

  .carousel-overlay h2 {
    font-size: 1.5rem;
  }

  #newsletter .form-control {
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 576px) {
  #hero h1 {
    font-size: 1.8rem;
  }

  #hero p.lead {
    font-size: 1rem;
  }

  .carousel-overlay h2 {
    font-size: 1.2rem;
  }

  .carousel-overlay p {
    font-size: 0.9rem;
  }
}
