/* Reset & Basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body {
  background-color: #fdfdfd;
  color: #111;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid #ddd;
  background-color: white;
  position: sticky;
  top: 0;
}

.logo {
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 1.2rem;
}

.search-bar input {
  width: 250px;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #111;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Hero Section */
.hero {
  background: url('https://via.placeholder.com/1200x600') center/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

.hero-text {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.cta-btn {
  background-color: black;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s;
}

.cta-btn:hover {
  background-color: #444;
}

/* Collections */
.collections {
  padding: 3rem 2rem;
  text-align: center;
}

.collections h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.collection-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.collection-card img {
  width: 100%;
  display: block;
}

.collection-card h3 {
  padding: 1rem;
  font-size: 1rem;
  font-weight: 500;
}

/* Footer */
footer {
  padding: 2rem;
  text-align: center;
  font-size: 0.85rem;
  border-top: 1px solid #ddd;
  background-color: #fafafa;
}
