* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: white;
  background: url('https://images.unsplash.com/photo-1603302576831-7c9c58ebbf89') no-repeat center center fixed;
  background-size: cover;
}

/* Header */
header {
  background-color: rgba(220, 38, 38, 0.9);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

.logo {
  font-family: 'Lobster', cursive;
  font-size: 32px;
  color: #fff;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: white;
  bottom: -4px;
  left: 0;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: #ffcccc;
}

/* Hero section */
.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(3px);
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-family: 'Lobster', cursive;
  font-size: 120px;
  margin-bottom: 20px;
  color: #dc2626;
  text-shadow: 0 0 3px #fff, 0 0 5px #ff1a1a;
}

.hero-content p {
  font-size: 32px;
  margin-bottom: 30px;
  color: #dc2626;
  text-shadow: 0 0 3px #fff, 0 0 5px #ff1a1a;
}

/* Contact section */
.contact-section {
  background: linear-gradient(to bottom right, #fff7f7, #ffe6e6);
  padding: 80px 20px;
  text-align: center;
}

.contact-block {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
}

.contact-block:nth-child(2) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-text {
  max-width: 600px;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-text:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}

.contact-text h2 {
  font-family: 'Lobster', cursive;
  color: #c40000;
  font-size: 36px;
  margin-bottom: 20px;
}

.contact-text p {
  font-size: 18px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* Buttons / links */
.btn {
  display: inline-block;
  background-color: #dc2626;
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  margin: 10px 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn:hover {
  background-color: #a50000;
  transform: scale(1.05);
}

/* Icons / bottle */
.bottle-img {
  width: 120px;
  height: auto;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.2));
}

.bottle-img:hover {
  transform: scale(1.1) rotate(-2deg);
}

/* Footer */
footer {
  background-color: rgba(0, 0, 0, 0.8);
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 60px;
  }

  .hero-content p {
    font-size: 20px;
  }

  .contact-block {
    flex-direction: column;
  }

  .btn {
    font-size: 14px;
    padding: 10px 16px;
  }

  .bottle-img {
    margin: 20px 0;
  }
}
