/*==============================
        GOOGLE FONTS
===============================*/

:root {

  --primary: #C89B3C;
  --secondary: #7B4F2C;
  --dark: #0E0E0E;
  --dark-light: #181818;
  --cream: #F7F2EB;
  --white: #ffffff;
  --gray: #BDBDBD;

}


/*==============================
        RESET
===============================*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {

  overflow-x: hidden;

  width: 100%;

}

body {

  font-family: 'Manrope', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;

}

h1,
h2,
h3,
h4,
h5,
h6 {

  font-family: 'Playfair Display', serif;

}

a {

  text-decoration: none;

}

ul {

  list-style: none;

}

img {

  width: 100%;
  display: block;

}

section {

  padding: 100px 0;

}

.container {

  max-width: 1320px;

}



/*==============================
            NAVBAR
===============================*/

.custom-navbar {

  padding: 18px 0;
  transition: .4s ease;
  z-index: 999;

}

.custom-navbar.scrolled {

  background: rgba(14, 14, 14, .82);

  backdrop-filter: blur(18px);

  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);

  padding: 12px 0;

}

/* Logo */

.logo {

  color: var(--white);

  font-size: 2rem;

  font-family: 'Playfair Display', serif;

  font-weight: 700;

  letter-spacing: 1px;

}

.logo span {

  color: var(--primary);

  margin: 0 3px;

}

.logo:hover {

  color: var(--white);

}

/* Nav Links */

.navbar-nav {

  gap: 10px;

}

.nav-link {

  position: relative;

  color: var(--white);

  font-size: .95rem;

  font-weight: 600;

  padding: 10px 18px !important;

  transition: .3s;

}

.nav-link:hover {

  color: var(--primary);

}

.nav-link.active {

  color: var(--primary);

}

.nav-link::after {

  content: "";

  position: absolute;

  left: 18px;

  bottom: 4px;

  width: 0;

  height: 2px;

  background: var(--primary);

  transition: .35s;

}

.nav-link:hover::after,

.nav-link.active::after {

  width: calc(100% - 36px);

}

/* Button */

.reserve-btn {

  background: var(--primary);

  color: #111;

  padding: 12px 28px;

  border-radius: 50px;

  font-weight: 700;

  transition: .35s;

}

.reserve-btn:hover {

  background: #ddb458;

  color: #111;

  transform: translateY(-3px);

}

/* Mobile Icon */

.navbar-toggler {

  color: var(--white);

  font-size: 2rem;

}

.navbar-toggler i {

  color: var(--white);

}

/*==================================
        HERO SECTION
===================================*/

.hero-section {

  position: relative;

  min-height: 100vh;

  display: flex;

  align-items: center;

  overflow: hidden;

  background: #0E0E0E;

}

.hero-overlay {

  position: absolute;

  inset: 0;

  background:
    radial-gradient(circle at 80% 40%,
      rgba(200, 155, 60, .18),
      transparent 45%);

}

.hero-content {

  position: relative;

  z-index: 2;

}

.hero-badge {

  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 10px 20px;

  border-radius: 50px;

  background: rgba(255, 255, 255, .05);

  backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, .08);

  margin-bottom: 25px;

  color: var(--primary);

}

.hero-content h1 {

  font-size: 72px;

  line-height: 1.1;

  margin-bottom: 25px;

}

.hero-content h1 span {

  color: var(--primary);

}

.hero-content p {

  color: var(--gray);

  max-width: 520px;

  font-size: 18px;

  line-height: 1.8;

  margin-bottom: 40px;

}

.hero-buttons {

  display: flex;

  gap: 20px;

  margin-bottom: 45px;

}

.hero-btn {

  background: var(--primary);

  color: #111;

  padding: 16px 34px;

  border-radius: 50px;

  font-weight: 700;

}

.hero-btn:hover {

  background: #ddb458;

}

.hero-btn-outline {

  border: 1px solid rgba(255, 255, 255, .2);

  color: white;

  padding: 16px 34px;

  border-radius: 50px;

}

.hero-btn-outline:hover {

  background: white;

  color: #111;

}

.hero-rating {

  display: inline-block;

  padding: 18px 24px;

  border-radius: 18px;

  background: rgba(255, 255, 255, .05);

  backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, .08);

}

.hero-rating h4 {

  margin: 10px 0 5px;

}

.hero-rating p {

  margin: 0;

  font-size: 15px;

}

/* IMAGE */

.hero-image {

  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;

}

.hero-image-box {

  position: relative;

  padding: 12px;

  border-radius: 35px;

  background: rgba(255, 255, 255, .05);

  backdrop-filter: blur(15px);

  border: 1px solid rgba(255, 255, 255, .08);

  box-shadow:
    0 30px 80px rgba(0, 0, 0, .45);

  overflow: hidden;

}

.hero-image-box img {

  display: block;

  width: 100%;

  max-width: 620px;

  border-radius: 25px;

}

.hero-image-box::before {

  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(135deg,
      rgba(255, 255, 255, .08),
      transparent 40%);

  pointer-events: none;

}

.hero-image-box:hover {

  transform: translateY(-8px);

  border-color: rgba(200, 155, 60, .35);

  box-shadow:
    0 40px 90px rgba(0, 0, 0, .55);

}

.hero-image-box:hover img {

  transform: scale(1.04);

}

.hero-image-box {

  position: relative;

  transform: translateZ(0);

  padding: 12px;

  border-radius: 35px;

  background: rgba(255, 255, 255, .05);

  backdrop-filter: blur(15px);

  border: 1px solid rgba(255, 255, 255, .08);

  box-shadow: 0 30px 80px rgba(0, 0, 0, .45);

  overflow: hidden;

  cursor: pointer;

  transition:
    transform .55s cubic-bezier(.22, 1, .36, 1),
    box-shadow .55s cubic-bezier(.22, 1, .36, 1),
    border-color .55s ease;

  will-change: transform;

}

.hero-image-box img {

  width: 100%;

  display: block;

  border-radius: 25px;

  transition: transform .8s cubic-bezier(.22, 1, .36, 1);

  will-change: transform;

  backface-visibility: hidden;

  transform: translateZ(0);

}

.hero-image img {

  width: 100%;
  max-width: 650px;

  border-radius: 30px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, .08);

  box-shadow:
    0 20px 60px rgba(0, 0, 0, .45);

  position: relative;

  z-index: 2;

}

.hero-glow {

  position: absolute;

  width: 420px;

  height: 420px;

  background: var(--primary);

  filter: blur(140px);

  opacity: .25;

  border-radius: 50%;

}

.floating-card {

  position: absolute;

  bottom: 40px;

  left: 30px;

  background: rgba(255, 255, 255, .08);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, .08);

  padding: 15px 22px;

  border-radius: 15px;

  z-index: 5;

}

/* Scroll */

.scroll-down {

  position: absolute;

  bottom: 25px;

  left: 50%;

  transform: translateX(-50%);

  font-size: 30px;

  color: var(--primary);

  animation: bounce 2s infinite;

}

/*=============================
        WHY US
=============================*/

.why-us {

  padding: 120px 0;

  position: relative;

  overflow: hidden;

  background: #111;

}

.section-heading {

  margin-bottom: 70px;

}

.section-heading span {

  color: var(--primary);

  font-weight: 600;

  letter-spacing: 3px;

  font-size: 14px;

}

.section-heading h2 {

  font-size: 56px;

  margin: 15px 0;

}

.section-heading p {

  color: #b8b8b8;

  max-width: 650px;

  margin: auto;

  line-height: 1.8;

}

/* Grid */

.bento-grid {

  display: grid;

  grid-template-columns: 2fr 1fr;

  gap: 25px;

}

/* Cards */

.bento-card {

  background: rgba(255, 255, 255, .04);

  border: 1px solid rgba(255, 255, 255, .08);

  backdrop-filter: blur(18px);

  border-radius: 30px;

  padding: 40px;

  transition: .45s;

  position: relative;

  overflow: hidden;

}

/* Icon */

.icon {

  width: 70px;

  height: 70px;

  border-radius: 18px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: rgba(200, 155, 60, .12);

  color: var(--primary);

  font-size: 28px;

  margin-bottom: 25px;

  transition: .4s;

}

/* Text */

.bento-card h3 {

  margin-bottom: 15px;

  font-size: 30px;

}

.bento-card p {

  color: #bdbdbd;

  line-height: 1.8;

}

/* Glow */

.bento-card::before {

  content: "";

  position: absolute;

  width: 250px;

  height: 250px;

  background: radial-gradient(circle,
      rgba(200, 155, 60, .15),
      transparent 70%);

  top: -120px;

  right: -120px;

  transition: .5s;

}

/* Hover */

.bento-card:hover {

  transform: translateY(-10px);

  border-color: rgba(200, 155, 60, .35);

  box-shadow:

    0 25px 60px rgba(0, 0, 0, .35);

}

.bento-card:hover::before {

  transform: scale(1.3);

}

.bento-card:hover .icon {

  transform: rotate(-8deg) scale(1.12);

}

/*==================================
        ABOUT SECTION
===================================*/

.about-section {

  padding: 120px 0;

  background: #0f0f0f;

}

.about-image {

  position: relative;

}

.about-image img {

  width: 100%;

  border-radius: 30px;

  transition: .5s;

  box-shadow: 0 30px 70px rgba(0, 0, 0, .35);

}

.about-image:hover img {

  transform: scale(1.03);

}

.experience-card {

  position: absolute;

  bottom: 30px;

  right: -30px;

  background: var(--primary);

  color: #111;

  padding: 25px;

  border-radius: 25px;

  text-align: center;

  min-width: 180px;

  box-shadow: 0 20px 40px rgba(0, 0, 0, .3);

}

.experience-card h2 {

  font-size: 52px;

  margin: 0;

}

.experience-card span {

  font-weight: 600;

  line-height: 1.5;

}

.section-tag {

  color: var(--primary);

  letter-spacing: 3px;

  font-size: 14px;

  font-weight: 700;

}

.about-content h2 {

  font-size: 58px;

  margin: 20px 0;

  line-height: 1.2;

}

.about-content h2 span {

  color: var(--primary);

}

.about-content p {

  color: #b5b5b5;

  line-height: 1.9;

  margin-bottom: 35px;

}

.about-features {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 20px;

  margin-bottom: 40px;

}

.feature-item {

  display: flex;

  align-items: center;

  gap: 10px;

  color: #fff;

  font-weight: 500;

}

.feature-item i {

  color: var(--primary);

}

.about-btn {

  display: inline-flex;

  align-items: center;

  gap: 12px;

  background: var(--primary);

  color: #111;

  padding: 15px 35px;

  border-radius: 50px;

  font-weight: 700;

  transition: .4s;

}

.about-btn:hover {

  transform: translateY(-5px);

  color: #111;

}

.about-btn i {

  transition: .4s;

}

.about-btn:hover i {

  transform: translateX(8px);

}

/* Stats */

.stat-card {

  background: #171717;

  border: 1px solid rgba(255, 255, 255, .08);

  border-radius: 25px;

  padding: 35px;

  text-align: center;

  transition: .4s;

}

.stat-card:hover {

  transform: translateY(-8px);

  border-color: rgba(200, 155, 60, .35);

}

.stat-card h3 {

  color: var(--primary);

  font-size: 40px;

  margin-bottom: 10px;

}

.stat-card p {

  color: #aaa;

  margin: 0;

}

/*==============================
        MENU SECTION
================================*/

.menu-section {

  padding: 120px 0;

  background: #111;

}

.menu-tabs {

  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 15px;

  margin-top: 40px;

}

.menu-tabs button {

  border: none;

  background: #1b1b1b;

  color: #fff;

  padding: 14px 30px;

  border-radius: 50px;

  transition: .4s;

}

.menu-tabs button.active,
.menu-tabs button:hover {

  background: var(--primary);

  color: #111;

}

.menu-card {

  background: #1a1a1a;

  border-radius: 25px;

  overflow: hidden;

  transition: .45s;

  border: 1px solid rgba(255, 255, 255, .08);

}

.menu-card:hover {

  transform: translateY(-10px);

  border-color: rgba(200, 155, 60, .35);

}

.menu-image {

  position: relative;

  overflow: hidden;

}

.menu-image img {

  width: 100%;

  height: 280px;

  object-fit: cover;

  transition: .6s;

}

.menu-card:hover img {

  transform: scale(1.08);

}

.menu-image span {

  position: absolute;

  top: 20px;

  right: 20px;

  background: var(--primary);

  color: #111;

  padding: 10px 18px;

  border-radius: 30px;

  font-weight: 700;

}

.menu-content {

  padding: 30px;

}

.menu-top {

  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-bottom: 15px;

}

.menu-top h4 {

  font-size: 28px;

}

.rating {

  color: gold;

}

.menu-content p {

  color: #aaa;

  line-height: 1.8;

  margin-bottom: 25px;

}

.menu-btn {

  display: inline-block;

  background: var(--primary);

  color: #111;

  padding: 12px 28px;

  border-radius: 40px;

  font-weight: 700;

  transition: .4s;

}

.menu-btn:hover {

  color: #111;

  transform: translateY(-3px);

}

/*==============================
    SIGNATURE DRINKS
==============================*/

.signature-section {

  padding: 120px 0;

  background: #0d0d0d;

}

.signature-card {

  display: flex;

  align-items: center;

  gap: 60px;

  margin-bottom: 80px;

}

.signature-card.reverse {

  flex-direction: row-reverse;

}

.signature-image {

  flex: 1;

  overflow: hidden;

  border-radius: 30px;

}

.signature-image img {

  width: 100%;

  transition: .7s;

}

.signature-card:hover img {

  transform: scale(1.08);

}

.signature-content {

  flex: 1;

}

.drink-tag {

  display: inline-block;

  padding: 10px 20px;

  background: rgba(201, 162, 39, .12);

  color: var(--primary);

  border-radius: 40px;

  margin-bottom: 20px;

}

.signature-content h3 {

  font-size: 48px;

  margin-bottom: 20px;

}

.signature-content p {

  color: #b8b8b8;

  line-height: 1.9;

  margin-bottom: 25px;

}

.signature-content h4 {

  color: var(--primary);

  font-size: 34px;

  margin-bottom: 30px;

}

/*==================================
        GALLERY
===================================*/

.gallery-section {

  padding: 120px 0;

  background: #111;

}

.gallery-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  grid-auto-rows: 260px;

  gap: 20px;

  margin-top: 70px;

}

.gallery-item {

  position: relative;

  overflow: hidden;

  border-radius: 25px;

  cursor: pointer;

}

.gallery-item.large {

  grid-row: span 2;

}

.gallery-item.wide {

  grid-column: span 2;

}

.gallery-item img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: .8s cubic-bezier(.22, 1, .36, 1);

}

/* Overlay */

.gallery-item::before {

  content: "";

  position: absolute;

  inset: 0;

  background:

    linear-gradient(rgba(0, 0, 0, .1),

      rgba(0, 0, 0, .55));

  opacity: 0;

  transition: .5s;

  z-index: 1;

}

/* Icon */

.gallery-item::after {

  content: "+";

  position: absolute;

  width: 70px;

  height: 70px;

  background: rgba(255, 255, 255, .15);

  backdrop-filter: blur(15px);

  border-radius: 50%;

  color: #fff;

  font-size: 42px;

  display: flex;

  align-items: center;

  justify-content: center;

  left: 50%;

  top: 50%;

  transform: translate(-50%, -50%) scale(.5);

  opacity: 0;

  transition: .5s;

  z-index: 2;

}

.gallery-item:hover img {

  transform: scale(1.12);

}

.gallery-item:hover::before {

  opacity: 1;

}

.gallery-item:hover::after {

  opacity: 1;

  transform: translate(-50%, -50%) scale(1);

}

/*==================================
        TESTIMONIAL
===================================*/

.testimonial-section {

  padding: 120px 0;

  background: #0f0f0f;

}

.testimonialSwiper {

  margin-top: 70px;

  padding-bottom: 60px;

}

.testimonial-card {

  background: #181818;

  border: 1px solid rgba(255, 255, 255, .08);

  border-radius: 30px;

  padding: 40px;

  position: relative;

  transition: .5s;

  height: 100%;

}

.testimonial-card:hover {

  transform: translateY(-10px);

  border-color: rgba(201, 162, 39, .35);

  box-shadow: 0 25px 60px rgba(0, 0, 0, .35);

}

.quote-icon {

  width: 65px;

  height: 65px;

  border-radius: 18px;

  background: rgba(201, 162, 39, .12);

  color: var(--primary);

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 28px;

  margin-bottom: 25px;

}

.testimonial-card p {

  color: #bbb;

  line-height: 1.9;

  margin-bottom: 25px;

}

.stars {

  color: #FFD700;

  font-size: 18px;

  margin-bottom: 25px;

}

.client {

  display: flex;

  align-items: center;

  gap: 15px;

}

.client img {

  width: 70px;

  height: 70px;

  border-radius: 50%;

  object-fit: cover;

}

.client h5 {

  margin: 0;

  color: #fff;

}

.client span {

  color: #999;

}

.testimonial-card::before {

  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(135deg,

      rgba(201, 162, 39, .08),

      transparent);

  opacity: 0;

  transition: .5s;

}

.testimonial-card:hover::before {

  opacity: 1;

}

.testimonial-card:hover .quote-icon {

  transform: rotate(-10deg) scale(1.1);

  transition: .5s;

}

/*==================================
        RESERVATION
===================================*/

.reservation-section {

  padding: 120px 0;

  background: #111;

}

.reservation-content h2 {

  font-size: 58px;

  margin: 20px 0;

}

.reservation-content h2 span {

  color: var(--primary);

}

.reservation-content p {

  color: #b5b5b5;

  line-height: 1.9;

  margin-bottom: 40px;

}

.reservation-info {

  display: flex;

  flex-direction: column;

  gap: 20px;

}

.reservation-info div {

  display: flex;

  align-items: center;

  gap: 15px;

  color: #fff;

}

.reservation-info i {

  color: var(--primary);

  font-size: 20px;

}

.reservation-card {

  background: #181818;

  border-radius: 30px;

  padding: 45px;

  border: 1px solid rgba(255, 255, 255, .08);

  box-shadow: 0 25px 60px rgba(0, 0, 0, .3);

}

.form-control {

  background: #111;

  border: 1px solid rgba(255, 255, 255, .08);

  color: #fff;

  padding: 16px;

  border-radius: 15px;

}

.form-control:focus {

  background: #111;

  color: #fff;

  border-color: var(--primary);

  box-shadow: none;

}

.form-control::placeholder {

  color: #888;

}

textarea {

  resize: none;

}

.reserve-submit {

  width: 100%;

  border: none;

  background: var(--primary);

  color: #111;

  padding: 16px;

  border-radius: 50px;

  font-weight: 700;

  transition: .4s;

}

.reserve-submit:hover {

  transform: translateY(-4px);

  background: #ddb458;

}

/*==================================
            FAQ SECTION
===================================*/

.faq-section {

  padding: 120px 0;

  background: #0f0f0f;

}

.custom-faq .accordion-item {

  background: #181818;

  border: 1px solid rgba(255, 255, 255, .08);

  border-radius: 18px !important;

  margin-bottom: 20px;

  overflow: hidden;

  transition: .4s;

}

.custom-faq .accordion-item:hover {

  border-color: rgba(201, 162, 39, .4);

}

.custom-faq .accordion-button {

  background: #181818;

  color: #fff;

  font-size: 18px;

  font-weight: 600;

  padding: 25px;

  box-shadow: none;

}

.custom-faq .accordion-button:not(.collapsed) {

  background: #1f1f1f;

  color: var(--primary);

}

.custom-faq .accordion-button:focus {

  box-shadow: none;

}

.custom-faq .accordion-button::after {

  filter: invert(1);

}

.custom-faq .accordion-body {

  color: #b8b8b8;

  line-height: 1.9;

  background: #181818;

  padding: 0 25px 25px;

}

/*==================================
            FOOTER
===================================*/

.footer {

  background: #0b0b0b;

  padding: 100px 0 30px;

}

.footer-logo {

  font-size: 42px;

  color: #fff;

  font-family: 'Playfair Display', serif;

  font-weight: 700;

}

.footer-logo span {

  color: var(--primary);

}

.footer-text {

  margin: 30px 0;

  color: #aaa;

  line-height: 1.9;

}

.footer h5 {

  color: #fff;

  margin-bottom: 25px;

}

.footer ul {

  padding: 0;

}

.footer ul li {

  list-style: none;

  margin-bottom: 15px;

  color: #aaa;

}

.footer ul li a {

  color: #aaa;

  transition: .3s;

}

.footer ul li a:hover {

  color: var(--primary);

  padding-left: 8px;

}

.footer ul li i {

  color: var(--primary);

  margin-right: 10px;

}

.footer-social {

  display: flex;

  gap: 15px;

}

.footer-social a {

  width: 48px;

  height: 48px;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  background: #181818;

  color: #fff;

  transition: .4s;

}

.footer-social a:hover {

  background: var(--primary);

  color: #111;

  transform: translateY(-6px);

}

.newsletter {

  display: flex;

  flex-direction: column;

  gap: 15px;

}

.newsletter input {

  height: 55px;

  background: #181818;

  border: none;

  border-radius: 12px;

  padding: 0 20px;

  color: #fff;

}

.newsletter input:focus {

  outline: none;

  border: 1px solid var(--primary);

}

.newsletter button {

  height: 55px;

  border: none;

  border-radius: 12px;

  background: var(--primary);

  color: #111;

  font-weight: 700;

  transition: .4s;

}

.newsletter button:hover {

  transform: translateY(-4px);

}

.footer hr {

  border-color: rgba(255, 255, 255, .08);

  margin: 60px 0 25px;

}

.copyright {

  display: flex;

  justify-content: space-between;

  align-items: center;

  color: #888;

}

.copyright span {

  color: var(--primary);

}

/*==================================
    FLOATING BUTTONS
===================================*/

.whatsapp-btn,
#backToTop {

  position: fixed;

  right: 25px;

  width: 58px;

  height: 58px;

  border: none;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  text-decoration: none;

  cursor: pointer;

  z-index: 999;

  transition: .4s cubic-bezier(.22, 1, .36, 1);

}

/* WhatsApp */

.whatsapp-btn {

  bottom: 25px;

  background: #25D366;

  color: #fff;

  font-size: 28px;

  box-shadow: 0 10px 30px rgba(37, 211, 102, .35);

}

.whatsapp-btn:hover {

  transform: translateY(-6px) scale(1.08);

  color: #fff;

}

/* Back To Top */

#backToTop {

  bottom: 95px;

  background: var(--primary);

  color: #111;

  font-size: 22px;

  opacity: 0;

  visibility: hidden;

  transform: translateY(20px);

  box-shadow: 0 10px 30px rgba(201, 162, 39, .35);

}

#backToTop.show {

  opacity: 1;

  visibility: visible;

  transform: translateY(0);

}

#backToTop:hover {

  transform: translateY(-6px);

}

/*==================================
            MAP SECTION
===================================*/

.map-section {

  padding: 120px 0;

  background: #111;

}

.map-wrapper {

  margin-top: 60px;

  border-radius: 30px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, .08);

  box-shadow: 0 25px 60px rgba(0, 0, 0, .35);

  transition: .4s ease;

}

.map-wrapper:hover {

  transform: translateY(-8px);

  border-color: rgba(201, 162, 39, .35);

}

.map-wrapper iframe {

  width: 100%;

  height: 500px;

  border: none;

  display: block;

}

.map-wrapper {

  position: relative;

}

.map-wrapper::before {

  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(135deg,
      rgba(201, 162, 39, .08),
      transparent);

  opacity: 0;

  transition: .5s;

  pointer-events: none;

}

.map-wrapper:hover::before {

  opacity: 1;

}