/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

header {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Background Video */
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/*---------------------------------- navbar section--------------------------------------- */

.hamburger {
display: none;
cursor: pointer;
font-size: 24px;
color: #fff;
}

.content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 100px;
  /*  */
  position: absolute;
  top: 1px;
  padding: 20px;
  left: 50%;   
  transform: translateX(-50%);
  z-index: 5;
  width: 100%;
  background-color: #3b0073;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1rem;
  justify-content: space-between;
  /*  */
  position: relative;
  /* background-color: #441775; */
}

.navbar a {
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  font-weight: 600;
  text-transform: uppercase;
  /*  */
  position: relative;
  /* justify-content: space-between; */
}

.navbar a:hover {
  color: #ffcc00;
  text-decoration: underline 3px;
  text-underline-offset: 20px;
  transition: ease-in-out 0.3s;
}

.navbar .dropdown {
  position: relative;
}
.navbar .dropdown-content {
  display: none;
  animation: fadeIn 0.5s ease 5s forwards;
  position: absolute;
  top: 50PX;
  width: 100vw; 
  line-height: 1rem;
  z-index: 1000;
  padding: 1rem 0;
  animation: fadeIn 0.5s ease 2s forwards;
}
.navbar .dropdown-content a {
  display: block;
  padding: 0.5rem 1rem;
  color: #ffcc00;
  white-space: nowrap;
  text-align: left;
}

.dropdown:hover .dropdown-content {
  display: block;
  animation: fadeIn 0.5s ease 2s forwards;
  color: #1886ed;

}

.dropdown::before {
  content: '';
  position: fixed; 
  top: 0;
  left: 0;
  width: 100vw;
  height: 200px;
  background-color:#5b0d93;   /*color*/
  z-index: -1; 
  opacity: 0;
  transition: opacity 0.5s ease; 
}

.dropdown:hover::before {
      opacity: 1; 
}

/* Logo */
.logo img {
  height: 75px;
  position: relative;
  left: 40%;
  bottom: 5px;
}

/* Search Button */
.search {
  position: relative;
  right: 100px;
}

.search-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: color 0.3s;
}

@media (max-width: 768px) {
  .content {
      flex-direction: row; 
      gap: 250px;
      justify-content:center;
      padding: 10px 30px;  
  }
  
  .logo img {
      height: 60px; 
      left: 5%;
      
  }

  .hamburger {
      display: block; 
  }

  .navbar{
    display: none;
  }
  .search{
  display: none;
  }
  .hero-text {
      left: 5%;
      max-width: 90%;
      text-align: center; 
  }

  .hero-text .heading {
      font-size: 48px; 
  }

  .hero-button {
      margin: 0 auto;    
  }
}

@media (max-width: 480px) {
.content{
  flex-direction:column;
  padding: 10px;
  justify-content: center;
}
  .hero-text .heading {
      font-size: 36px;
  }

  .logo{
    left: 50%;
  }

  .hero-button {
      font-size: 14px;
      padding: 10px 20px;
      align-items: center;
  }
}




/* HERO SECTION */
.gifts-hero {
  height: auto;
  width: 100%;
  background-image: url("assets/Hero-BG.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 100px;
}

.gifts-hero h1 {
  font-size: 72px;
  color: #d1a856;
  letter-spacing: 0.06ch;
  animation: fadeInUp;
  animation-duration: 2s;
}

.hero-head {
  text-align: center;
  margin: 0 100px;
  width: auto;
}

.gifts-hero p {
  color: white;
  font-size: 24px;
  letter-spacing: 0.01ch;
  animation: fadeInUp;
  animation-duration: 3s;
}

.golden {
  height: 48px;
  width: 333px;
  padding: 20px 16px;
  margin: 50px 15px;
  font-size: 18px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: #4a0982;
  background: linear-gradient(to right, #d4af37, #f3e5ab, #d4af37, #f3e5ab);
  transition: background-position 0.7s ease, transform 0.2s;
  background-position: right;
  letter-spacing: 0.2ch;
  background-size: 200%;
}

.gifts-hero button {
  animation: fadeInUp;
  animation-duration: 4s;
}

.golden:hover {
  cursor: pointer;
  background-position: left;
}

/* Media Queries */

/* Mobile (0px - 583px) */
@media (max-width: 583px) {
  .gifts-hero {
    height: auto;
    padding-top: 50px;
    padding-bottom: 40px;
  }

  .gifts-hero h1 {
    font-size: 28px;
    text-align: center;
    margin: 10px 0;
  }

  .hero-head {
    margin: 0 20px;
    width: auto;
  }

  .gifts-hero p {
    font-size: 16px;
    text-align: center;
    margin: 10px 0;
  }

  .golden {
    width: 90%;
    font-size: 16px;
    margin: 20px auto;
  }
}

/* Tablets (584px - 933px) */
@media (min-width: 584px) and (max-width: 933px) {
  .gifts-hero {
    height: 450px;
    padding-top: 80px;
  }

  .gifts-hero h1 {
    font-size: 45px;
    text-align: center;
    margin: 20px 0;
  }

  .hero-head {
    margin: 0 40px;
    width: auto;
  }

  .gifts-hero p {
    font-size: 18px;
    text-align: center;
    margin: 10px 0;
  }

  .golden {
    width: 80%;
    font-size: 16px;
    margin: 20px auto;
  }
}

/* Desktops (934px and above) */
@media (min-width: 934px) {
  .gifts-hero {
    height: 520px;
    padding-top: 100px;
  }

  .gifts-hero h1 {
    font-size: 72px;
    text-align: center;
    margin: 10px 0;
  }

  .hero-head {
    margin: 0 100px;
    width: 900px;
  }

  .gifts-hero p {
    font-size: 24px;
    text-align: center;
    margin: 20px 0;
  }

  .golden {
    width: 333px;
    font-size: 18px;
    margin: 50px 15px;
  }
}



/* MID SECTION */

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

/* Second Section Header */
.second-head {
  width: 100%;
  text-align: center;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #4a0982;
}

.head-text {
  font-size: 52px;
  width: 525px;
  margin: 50px;
}

.head-para {
  font-size: 16px;
  width: 525px;
  margin-top: 10px;
  font-family: "Franklin Gothic";
  letter-spacing: 0.01ch;
}

/* Section 2 Mid */
.second-mid {
  width: 100%;
  max-width: 1232px;
  height: 592px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.sub-sec {
  margin: 100px 0;
}

.sub-sec h1 {
  font-size: 34px;
  color: #4a0982;
  margin: 10px 70px;
}

.sub-sec p {
  font-size: 16px;
  font-family: "Franklin Gothic";
  margin: 10px 70px;
}

.purple-button {
  height: 48px;
  width: 240px;
  padding: 20px 0px;
  margin: 40px 70px;
  font-size: 18px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: white;
  background: #4a0982;
  transition: background-color 1.2s ease, transform 0.2s;
  letter-spacing: 0.2ch;
}

.purple-button:hover {
  cursor: pointer;
  background: rgba(90, 52, 125, 0.7);
}

/* Cards Section */
.cards-head {
  margin: auto;
  text-align: center;
  width: 1000px;
  padding: 50px 120px;
}

.cards-head h1 {
  font-size: 52px;
  color: #4a0982;
}

.cards-head p {
  font-size: 16px;
  font-family: "Franklin Gothic";
  padding: 10px 150px;
  letter-spacing: 0.01ch;
}

.cards {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

#card {
  height: 342px;
  margin: 10px;
  background-color: #4a0982;
  box-shadow: 4px 8px 20px rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  transition: transform 0.5s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

#card:hover {
  transform: scale(1.05);
  box-shadow: 6px 12px 30px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

#card div {
  display: flex;
  height: 120px;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

#card h1 {
  text-align: center;
  font-size: 19px;
  color: white;
}

/* Animated Cards */
.animated-cards {
  margin-top: 100px;
  background-color: #4a0982;
  padding: 50px 0;
}

.animated-cards h1 {
  margin: auto;
  text-align: center;
  font-size: 52px;
  color: white;
}

.anim-main {
  display: flex;
  justify-content: center;
  margin: 70px 20px;
}

.card {
  width: 530px;
  height: 610px;
  border-radius: 15px;
  margin: 30px;
  box-shadow: 4px 8px 20px rgba(0, 0, 0, 0.3);
}

.card1 {
  background: url("assets/animated-card1.webp");
  background-size: 110%;
  background-position: center;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 20px 40px;
  transition: background-size 0.5s ease-in-out;
}

.card1:hover {
  background-size: 130%;
  cursor: pointer;
}

.card2 {
  background-image: url("assets/animated-card2.webp");
  background-size: 110%;
  background-position: center;
  margin-top: 90px;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 20px 40px;
  transition: background-size 0.5s ease-in-out;
}

.card2:hover {
  background-size: 130%;
  cursor: pointer;
}

.anim-text {
  text-align: center;
  padding: 10px 15px;
}

.recipesSpan {
  color: white;
  font-size: 24px;
  padding: 2px 0;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
  letter-spacing: 0.1ch;
  margin: 10px;
}

.anim-text h2 {
  font-size: 34px;
  letter-spacing: 0.01ch;
  color: #d1a752;
  margin: 10px;
}

.anim-text p {
  font-size: 16px;
  color: white;
  font-family: "Franklin Gothic";
  letter-spacing: 0.01ch;
  margin: 10px;
}

.anim {
  margin: auto;
  width: 240px;

  /* Animation */
  animation: slideInUp;
  animation-duration: 2s;
}

/* Responsive Adjustments */

/* Mobile (0px - 583px) */
@media (max-width: 583px) {
  .second-head {
    padding: 20px;
  }

  .head-text {
    font-size: 32px;
    width: 90%;
    margin: 20px;
  }

  .head-para {
    font-size: 14px;
    width: 90%;
  }

  .second-mid {
    flex-direction: column;
    justify-content: center;
    height: auto;
    padding: 20px;
  }

  .sub-sec {
    margin: 40px 0;
  }

  .sub-sec h1 {
    font-size: 28px;
    margin: 10px 20px;
  }

  .sub-sec p {
    font-size: 14px;
    margin: 10px 20px;
  }

  .purple-button {
    width: 80%;
    font-size: 16px;
    margin: 20px auto;
  }

  .cards-head {
    width: 100%;
    padding: 20px;
  }

  .cards-head h1 {
    font-size: 32px;
  }

  .cards-head p {
    font-size: 14px;
    padding: 0 20px;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
    margin: 10px 0;
    height: auto;
  }

  .anim-main {
    flex-direction: column;
    margin: 20px 0;
  }

  .card {
    width: 80%;
    margin: 20px 0;
    height: auto;
  }
}

/* Tablets (584px - 933px) */
@media (min-width: 584px) and (max-width: 933px) {
  .second-head {
    padding: 30px;
  }

  .head-text {
    font-size: 40px;
    width: 90%;
  }

  .head-para {
    font-size: 16px;
    width: 90%;
  }

  .second-mid {
    flex-direction: column;
    height: auto;
  }

  .sub-sec h1 {
    font-size: 30px;
    margin: 10px 30px;
  }

  .sub-sec p {
    font-size: 16px;
    margin: 10px 30px;
  }

  .purple-button {
    width: 80%;
    font-size: 16px;
  }

  .cards-head {
    width: 90%;
    padding: 20px;
  }

  .cards-head h1 {
    font-size: 40px;
  }

  .cards-head p {
    font-size: 16px;
    padding: 0 20px;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 80%;
    margin: 20px 0;
  }

  .anim-main {
    flex-direction: column;
  }

  .card {
    width: 90%;
    margin: 20px 0;
    height: auto;
  }
}

/* Desktops (934px and above) */
@media (min-width: 934px) {
  .second-head {
    padding: 50px;
  }

  .head-text {
    font-size: 52px;
    width: 525px;
    margin: 50px;
  }

  .head-para {
    font-size: 16px;
    width: 525px;
  }

  .second-mid {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }

  .sub-sec h1 {
    font-size: 34px;
  }

  .sub-sec p {
    font-size: 16px;
  }

  .purple-button {
    width: 240px;
  }

  .cards-head {
    width: 1000px;
    padding: 50px 120px;
  }

  .cards-head h1 {
    font-size: 52px;
  }

  .cards-head p {
    font-size: 16px;
    padding: 10px 150px;
  }

  .cards {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }

  .card {
    width: 530px;
    margin: 30px;
    height: 610px;
  }

  .anim-main {
    display: flex;
    justify-content: center;
    margin: 70px 20px;
  }

  .card {
    width: 530px;
    height: 610px;
    margin: 30px;
  }
}
/* For screen width between 933px and 1027px */
@media (min-width: 933px) and (max-width: 1027px) {
  /* Section Header */
  .second-head {
    padding: 40px;
  }

  .head-text {
    font-size: 48px;  /* Slightly smaller than desktop */
    width: 90%;
  }

  .head-para {
    font-size: 16px;
    width: 90%;
  }

  /* Second Mid Section */
  .second-mid {
    flex-direction: row;
    justify-content: space-between;
    height: auto;
  }

  .sub-sec {
    margin: 60px 0;
  }

  .sub-sec h1 {
    font-size: 30px;
    margin: 10px 40px;
  }

  .sub-sec p {
    font-size: 16px;
    margin: 10px 40px;
  }

  .purple-button {
    width: 240px;
    font-size: 16px;
    margin: 20px auto;
  }

  /* Cards Section */
  .cards-head {
    width: 100%;
    padding: 20px 80px;
  }

  .cards-head h1 {
    font-size: 48px;
  }

  .cards-head p {
    font-size: 16px;
    padding: 0 20px;
  }

  /* Cards */
  .cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
  }

  #card {
    width: 280px;  /* Smaller width than larger screens */
    height: 300px;
    margin: 10px;
    background-color: #4a0982;
    box-shadow: 4px 8px 20px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    transition: transform 0.5s ease, box-shadow 0.3s ease;
    overflow: hidden;
  }

  #card:hover {
    transform: scale(1.05);
    box-shadow: 6px 12px 30px rgba(0, 0, 0, 0.4);
    cursor: pointer;
  }

  #card div {
    display: flex;
    height: 120px;
    align-items: center;
    justify-content: center;
    object-fit: cover;
  }

  #card h1 {
    text-align: center;
    font-size: 19px;
    color: white;
  }

  /* Animated Cards Section */
  .animated-cards {
    margin-top: 80px;
    background-color: #4a0982;
    padding: 40px 0;
  }

  .animated-cards h1 {
    margin: auto;
    text-align: center;
    font-size: 48px;
    color: white;
  }

  .anim-main {
    display: flex;
    justify-content: center;
    margin: 60px 20px;
  }

  .card {
    width: 430px;
    height: 510px;
    margin: 20px;
    box-shadow: 4px 8px 20px rgba(0, 0, 0, 0.3);
  }

  .card1, .card2 {
    background-size: 110%;
    background-position: center;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 20px 40px;
    transition: background-size 0.5s ease-in-out;
  }

  .card1:hover, .card2:hover {
    background-size: 130%;
    cursor: pointer;
  }

  .anim-text {
    text-align: center;
    padding: 10px 15px;
  }

  .recipesSpan {
    color: white;
    font-size: 24px;
    padding: 2px 0;
    border-top: 2px solid white;
    border-bottom: 2px solid white;
    letter-spacing: 0.1ch;
    margin: 10px;
  }

  .anim-text h2 {
    font-size: 30px;
    letter-spacing: 0.01ch;
    color: #d1a752;
    margin: 10px;
  }

  .anim-text p {
    font-size: 16px;
    color: white;
    font-family: "Franklin Gothic";
    letter-spacing: 0.01ch;
    margin: 10px;
  }

  .anim {
    margin: auto;
    width: 240px;
  }

  .card {
    animation: slideInUp;
    animation-duration: 2s;
  }
}
/* For screen width between 0px and 305px */
/* For screen width below 305px */
/* For screen width below 305px */
@media (max-width: 305px) {

  /* Section Header */
  .second-head {
    padding: 5px;
    text-align: center;
  }

  .head-text {
    font-size: 14px;  /* Reduced font size */
    width: 90%;
    margin: 5px 0;
  }

  .head-para {
    font-size: 8px;  /* Reduced font size */
    width: 90%;
    margin-top: 5px;
    letter-spacing: 0.5px;
  }

  /* Second Mid Section */
  .second-mid {
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 5px;
  }

  .sub-sec {
    margin: 10px 0;
    width: 90%;
  }

  .sub-sec h1 {
    font-size: 14px;  /* Reduced font size */
    margin: 5px 0;
  }

  .sub-sec p {
    font-size: 8px;  /* Reduced font size */
    margin: 5px 0;
  }

  .purple-button {
    width: 90%;  /* Full width */
    font-size: 10px;  /* Reduced font size */
    margin: 5px 0;
    padding: 5px 0;
  }

  /* Cards Section */
  .cards-head {
    width: 100%;
    padding: 5px 0;
  }

  .cards-head h1 {
    font-size: 14px;  /* Smaller header */
  }

  .cards-head p {
    font-size: 8px;  /* Reduced font size */
    padding: 0 5px;
  }

  /* Cards */
  .cards {
    display: block; /* Stack cards vertically */
    justify-content: center;
    align-items: center;
  }

  #card {
    width: 90%;  /* Full width */
    height: 180px;  /* Smaller height */
    margin: 5px auto;
    background-color: #4a0982;
    box-shadow: 4px 8px 20px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    transition: transform 0.5s ease, box-shadow 0.3s ease;
    overflow: hidden;
  }

  #card:hover {
    transform: scale(1.05);
    box-shadow: 6px 12px 30px rgba(0, 0, 0, 0.4);
    cursor: pointer;
  }

  #card div {
    display: flex;
    height: 50px;
    align-items: center;
    justify-content: center;
    object-fit: cover;
  }

  #card h1 {
    text-align: center;
    font-size: 12px;  /* Smaller text */
    color: white;
  }

  /* Animated Cards Section */
  .animated-cards {
    margin-top: 20px;
    background-color: #4a0982;
    padding: 20px 0;
  }

  .animated-cards h1 {
    margin: auto;
    text-align: center;
    font-size: 18px;  /* Smaller header */
    color: white;
  }

  .anim-main {
    display: block;
    margin: 20px 0;
  }

  .card {
    width: 90%;  /* Full width */
    height: 230px;  /* Reduced height */
    margin: 5px 0;
    box-shadow: 4px 8px 20px rgba(0, 0, 0, 0.3);
  }

  .card1, .card2 {
    background-size: 120%;
    background-position: center;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 10px;
    transition: background-size 0.5s ease-in-out;
  }

  .card1:hover, .card2:hover {
    background-size: 130%;
    cursor: pointer;
  }

  .anim-text {
    text-align: center;
    padding: 5px 10px;
  }

  .recipesSpan {
    color: white;
    font-size: 10px;  /* Reduced font size */
    padding: 2px 0;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    letter-spacing: 0.1ch;
    margin: 5px;
  }

  .anim-text h2 {
    font-size: 14px;  /* Reduced heading size */
    letter-spacing: 0.01ch;
    color: #d1a752;
    margin: 5px;
  }

  .anim-text p {
    font-size: 8px;  /* Reduced font size */
    color: white;
    font-family: "Franklin Gothic";
    letter-spacing: 0.01ch;
    margin: 5px;
  }

  .anim {
    margin: auto;
    width: 120px;  /* Adjusted width for mobile */
  }

  .card {
    animation: slideInUp;
    animation-duration: 2s;
  }
}

.cadbury-stories {
  text-align: center;
  padding: 2rem 1px 0px 1px;
  background-image: url('https://images.ctfassets.net/pmzhtobns06n/3VOj7B2ODRaKaqQUEwr0eJ/9de6ee9ec9edbd376d84a94ab1fbfe20/Background_Texture.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #5a2d82;
  height: 800px;
  
}

.cadbury-stories .scontent h1 {
  margin-top: 2rem;
  font-size: 46px;
  margin-bottom: 1rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cadbury-stories .scontent p {
  font-size: 1.2em;
  line-height: 1.8;
  color: #666;
}

.images {
  display: flex;
  flex-wrap: nowrap; 
  justify-content: center;
  gap: 20px;
  margin-top: 2em;
  margin-bottom: 1rem;
}

.image {
  position: relative;
  width: 300px;
  height: 300px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

#image-1 {
  margin-top: 100px;
  width: 258px;
  height: 254px;
}

#image-2 {
  margin-top: 20px;
  width: 316px;
  height: 312px;
}

#image-3 {
  margin-top: -10px;
  width: 374px;
  height: 372px;
}

#image-4 {
  margin-top: -10px;
  width: 256px;
  height: 252px;
}

#image-5 {
  margin-top: 20px;
  width: 318px;
  height: 314px;
}



/* Hazelnut section */
.cadbury-stories{
  width: 100%;
  height: auto;
}
/* .hazelnut {
  position: relative;
  width: 600px;
  max-width: 234px;
  bottom: 120px;
  left: 970px;
}

.hazelnut-image {
  width: 120%;
  height: auto;
  display: flex;
} */


@media (max-width: 768px) {
  .images {
    flex-wrap: wrap; 
    justify-content: center; 
  }

  .image {
    width: 45%; 
    height: 200px; 
  }

  #image-1,
  #image-2,
  #image-3,
  #image-4,
  #image-5,
  #image-6 {
    margin-top: 10px; 
  }

  .image img {
      width: 100%; 
      height: 100%;
  }

  .hazelnut {
    bottom: 20;
    left: 0%;
    max-width: 25%; 
  }
}
/* ====================================================================================================== */
/* visit us */
/* ====================================================================================================== */
/* WHY NOT VISIT Section */
.visit-us {
  padding: 50px 20px;
  text-align: center;
  background-color: #f9f9f9;
}

.visit h1 {
  font-size: 46px;
  color: #45297c;
  margin-bottom: 30px;
  letter-spacing: 1.5px;
}

/* Cards Container */
.cards-container-end {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; 
  gap: 20px; 
  margin-top: 2rem;
}

/* Individual Card */
.imgCard-end {
  position: relative; 
  width: 300px; 
  height: 350px; 
  background-color: #4B0983;
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.imgCard-end:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Card Image */
.card-img-end img {
  width: 100%;
  height: 225px; 
  object-fit: cover; 
}

/* Card Text */
.text-box-end {
  padding: 15px;
  background-color: #4B0983; 
  align-items: center;
  justify-content: center;
}

.text-box-end h4 {
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
}

.imgCard-link-end {
  text-decoration: none; 
  color: inherit; 
  display: block; 
}

.imgCard-link-end:hover .imgCard-end {
  transform: scale(1.05); 
  transition: transform 0.3s ease; 
}

@media (max-width: 768px) {
  .cards-container-end {
      flex-direction: column;
      align-items: center; 
  }

  .imgCard-end {
      width: 100%; 
      max-width: 320px;
  }
}
/* ================================================================================================ */
/* -------------------------------------------pouring --------------------------------------------- */
/* ================================================================================================ */

#pouring {
  width: 100%;
  height: 300px;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: rgb(75, 9, 132);
  display: flex;
  justify-content: right; 
  align-items: center; 
}

#pouring img {
  width: 20%;
  margin-right: 50px;
}

@media (max-width: 768px) {
  #pouring {
      justify-content: center; 
      width: 100%;
      height: auto;
  }

  #pouring img {
      margin-right: 0;
      width: 100%;
  }
}

/* ======================================================================= */
/* footer */
/* ======================================================================= */
/* ======================================================================= */
.footer {
  background-color: #fff;
  padding: 30px 20px;
  border-top: 2px solid #4a1e8c;
}

/* Top Section: Logo and Social Media */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.footer-logo img {
  max-width: 400px;
}

.footer-icon {
  display: flex;
  gap: 15px;
}

.footer-icon a {
  font-size: 30px;
  color: #4a1e8c;
  transition: color 0.3s;
}
 
/* Bottom Section */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 20px;
}

.footer-bottom .copyright {
  flex: 1;
  color: #4a1e8c; 
  font-size: 14px;
  text-align: left;
}

.footer-links {
  display: flex;
  gap: 15px;
  justify-content: flex-end; 
}

.footer-links a {
  font-size: 12px;
  text-decoration: none;
  color: #4a1e8c;
  font-weight: bold;
  transition: color 0.3s;
}
@media (max-width: 786px){
  .footer-top{
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }
  .footer-logo img{
      width: 50%;
      height: 50%;
  }

  .footer-bottom{
      flex-direction: column-reverse;
      text-align: center;
      gap: 20p;
  }

  .footer-bottom .copyright {
      text-align: center; 
      margin-bottom: 10px;
  }

  .footer-links {
      justify-content: center; 
      flex-wrap: wrap;
  }

}