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

body {
  font-family: "Poppins", sans-serif;
  color: #fdf5e6;
  background-color: #1a0b0b;
  overflow-x: hidden;
}

/* Background Video */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
  filter: brightness(0.3);
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.7);
  padding: 15px 40px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  backdrop-filter: blur(8px);
}

.logo {
  font-size: 1.5rem;
  color: #d4af37;
  font-weight: bold;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.navbar a {
  text-decoration: none;
  color: #fdf5e6;
  font-weight: 500;
  transition: 0.3s;
}

.navbar a:hover {
  color: #d4af37;
}

/* Hero */
.hero {
  text-align: center;
  padding: 180px 20px 100px;
}

.hero h1 {
  font-size: 3rem;
  color: #d4af37;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #d4af37;
  color: #1a0b0b;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #b48b2e;
}

/* Wines */
.wines {
  padding: 80px 20px;
  text-align: center;
  background: rgba(0,0,0,0.5);
}

.wine-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 30px;
}

.wine-card {
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  width: 250px;
  padding: 20px;
  transition: transform 0.3s;
}

.wine-card img {
  width: 100%;
  border-radius: 10px;
}

.wine-card:hover {
  transform: scale(1.05);
}

/* Gallery */
.gallery {
  padding: 80px 20px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* About */
.about {
  padding: 80px 20px;
  text-align: center;
  background: rgba(0,0,0,0.6);
}

.about h2 {
  color: #d4af37;
  margin-bottom: 20px;
}

.about p {
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
}

/* Contact */
.contact {
  padding: 80px 20px;
  text-align: center;
}

.contact h2 {
  color: #d4af37;
  margin-bottom: 20px;
}

.contact .btn {
  margin-top: 15px;
}

.social-icons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons img {
  width: 35px;
  height: 35px;
  transition: 0.3s;
}

.social-icons img:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* Footer */
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 10px;
  }
}
