* {
  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;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-family: 'Lobster', cursive;
  font-size: 32px;
  color: #fff;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  transition: color 0.3s ease;
  padding-bottom: 4px;
}

nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: white;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

nav a:hover,
nav a.active {
  color: #ffcccc;
}

/* Hero section */
.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
}

.hero-content h1 {
  font-family: 'Lobster', cursive;
  font-size: 120px;
  margin-bottom: 15px;
  color: #dc2626;
  text-shadow:
    0 0 4px #fff,
    0 0 8px #ff1a1a;
}

.hero-content p {
  font-size: 36px;
  color: #dc2626;
  text-shadow:
    0 0 3px #fff,
    0 0 6px #ff1a1a;
}

/* About section */
.about-section {
  background: linear-gradient(to bottom right, #fff7f7, #ffe6e6);
  padding: 80px 20px;
  text-align: center;
  max-width: 1100px;
  margin: 40px auto 80px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-block {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 80px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
}

.about-block:nth-child(2) {
  animation-delay: 0.4s;
}

.about-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;
}

.about-text:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}

.about-text h2 {
  font-family: 'Lobster', cursive;
  color: #c40000;
  font-size: 36px;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 18px;
  color: #333;
  line-height: 1.7;
}

.bottle-img {
  width: 120px;
  height: auto;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.2));
  cursor: default;
}

.bottle-img:hover {
  transform: scale(1.1) rotate(-2deg);
}

/* Animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero blur background */
.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;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 90px;
  }
  .hero-content p {
    font-size: 28px;
  }

  .about-text h2 {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  header {
    padding: 15px 20px;
  }

  nav ul {
    gap: 15px;
  }

  .hero-content h1 {
    font-size: 50px;
  }
  .hero-content p {
    font-size: 20px;
  }

  .about-section {
    padding: 40px 15px;
    margin: 20px 10px 60px;
  }

  .about-block {
    flex-direction: column;
    gap: 20px;
  }

  .bottle-img {
    width: 100px;
    margin: 0 auto;
  }

  .about-text {
    max-width: 100%;
    padding: 20px;
  }
}
