/* GENERAL */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: white;
}

/* VIDEO BACKGROUND */
.background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.45;
}

.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  z-index: -1;
}

/* BANNER */
.banner {
  text-align: center;
  padding: 25px 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.banner h1 {
  font-size: 42px;
  margin: 0;
}

.banner p {
  margin: 5px 0 0;
  font-size: 18px;
  opacity: 0.9;
}

/* NAVBAR */
.navbar {
  background-color: rgba(0,0,0,0.6);
  overflow: hidden;
  backdrop-filter: blur(4px);
}

.navbar a {
  float: left;
  display: block;
  color: #fff;
  padding: 14px 20px;
  text-decoration: none;
  font-weight: 600;
}

.navbar a:hover {
  background-color: #ffffff;
  color: black;
}

.navbar a.active {
  background-color: #bfbfbf;
  color: black;
}

/* SHOP TITLE */
.shop-title {
  text-align: center;
  margin-top: 30px;
  font-size: 28px;
  text-shadow: 0px 2px 4px black;
}

/* GALLERY BOXES */
.gallery {
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: rgba(0,0,0,0.45);
  padding: 10px;
  transition: 0.3s;
}

.gallery:hover {
  transform: scale(1.03);
  border-color: #fff;
}

.gallery img {
  width: 100%;
  border-radius: 6px;
}

.desc {
  text-align: center;
  padding: 10px 0;
  font-size: 16px;
}

.price {
  color: #ffd700;
  font-weight: bold;
}

/* GRID */
* {
  box-sizing: border-box;
}

.responsive {
  float: left;
  width: 24.999%;
  padding: 12px;
}

@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.999%;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px 0;
  background-color: rgba(0,0,0,0.6);
  margin-top: 20px;
}


/* HERO SECTION */
.hero-section {
  text-align: center;
  color: white;
  padding: 140px 20px 100px; /* bigger top padding for hero */
  position: relative;
  z-index: 1;
}

/* Welcome text animation */
.hero-section h2 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 3px 3px 8px rgba(0,0,0,0.6);
  animation: fadeInDown 1.5s ease-out;
}

.hero-section p {
  font-size: 22px;
  margin-bottom: 40px;
  opacity: 0.9;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
  animation: fadeInUp 1.5s ease-out;
}

/* SHOP NOW BUTTON - RED VERSION */
.hero-button {
  display: inline-block;
  background: linear-gradient(135deg, #FF4C4C, #FF1A1A); /* red gradient */
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 18px 45px;
  border-radius: 50px;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

/* Hover effect stays the same */
.hero-button:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
}


/* Hover effect for button */
.hero-button:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
}

/* Optional animated gradient effect */
.hero-button::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255,255,255,0.1);
  transform: rotate(45deg);
  transition: all 0.5s ease;
}

.hero-button:hover::before {
  top: -20%;
  left: -20%;
}

/* Fade animations for welcome text */
@keyframes fadeInDown {
  0% {opacity: 0; transform: translateY(-40px);}
  100% {opacity: 1; transform: translateY(0);}
}

@keyframes fadeInUp {
  0% {opacity: 0; transform: translateY(40px);}
  100% {opacity: 1; transform: translateY(0);}
}


/* CONTENT SECTION */
.content-section {
  max-width: 800px;
  margin: 50px auto;
  padding: 0 20px;
  text-align: center;
  color: white;
}

.content-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  text-shadow: 0px 2px 6px black;
}

.content-section p {
  font-size: 18px;
  margin-bottom: 30px;
}

/* LOCATION BOX */
.location-box {
  background: rgba(0,0,0,0.45);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
  transition: transform 0.3s;
}

.location-box:hover {
  transform: scale(1.03);
}

.location-box h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.location-box p {
  margin: 5px 0;
}

/* MAP */
.location-box iframe {
  border-radius: 8px;
  margin: 15px 0;
}

/* DIRECTIONS BUTTON */
.directions-button {
  display: inline-block;
  background-color: #FF4C4C;
  color: white;
  font-weight: bold;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s, transform 0.3s;
}

.directions-button:hover {
  background-color: #e03b3b;
  transform: scale(1.05);
}


.content-section {
  max-width: 900px;
  margin: 50px auto;
  padding: 20px;
  color: #000000; /* Black paragraphs */
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0.5px;
}

.content-section h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #FF4C4C; /* Red headings for bold impact */
}

.content-section p {
  font-size: 18px;
  margin-bottom: 25px;
}

.content-section ul {
  text-align: left;
  list-style-type: square;
  padding-left: 20px;
  margin: 20px auto;
  max-width: 600px;
  color: #000000; /* Black list items */
  font-weight: 600;
}

.content-section ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

.content-section span.highlight {
  color: #FF4C4C; /* Optional red highlights */
  font-weight: bold;
}



/* Contact Page Styles */
.content-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
  color: #000;
}

.contact-form, .contact-info {
  flex: 1 1 400px;
  max-width: 500px;
  background-color: rgba(255,255,255,0.85);
  padding: 25px;
  border-radius: 10px;
}

.contact-form h2, .contact-info h2 {
  color: #FF4C4C;
  text-align: center;
  margin-bottom: 20px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.contact-form input[type="submit"] {
  background-color: #FF4C4C;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.3s;
}

.contact-form input[type="submit"]:hover {
  transform: scale(1.05);
}

.contact-info p {
  margin-bottom: 15px;
  line-height: 1.5;
  color: #333;
}

/* Responsive */
@media only screen and (max-width: 900px) {
  .content-container {
    flex-direction: column;
    align-items: center;
  }
}
