:root {
  --body-bg-color: #f8fafc;
  --body-text-color: #f7eded;
  --heading-color: #ffffff;

  --footer-bg-color: #0d0d0d59;
  --link-color: #ffecd6;
  --box-color: #ffcfa8;
  --header-bg-color: #ffffff;
  --font-family: 'Garamond', 'Times New Roman', serif;
  --nav-link-color: #ffffff;
  --footer-text-color: #ffffff;
  --header-text-color: #ffffffff;
}
html {
  overflow-x: hidden;
}
body {
  background-color: var(--body-bg-color);
  color: var(--body-text-color) !important;
  font-family: var(--font-family);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
      
  background-image:
  linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.219)),
    url("/images/body-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
 
h1 {
    font-size: clamp(2rem, 4vw, 2.5rem) !important;
}
h2 {
    font-size: clamp(1.6rem, 3vw, 2rem) !important;
}
h3 {
    font-size: clamp(1.4rem, 3vw, 1.7rem) !important;
}
p {
  margin-bottom: 0.5rem !important;
}
  
section {
  padding: 15px 0;
  scroll-margin-top: 70px;
}

h2, h3 {
  color: var(--heading-color) !important;
}

.content-area a {
  color: var(--link-color) !important;
  text-decoration: none !important;
}

.content-area a:hover {
  color: var(--link-color) !important;
  opacity: 0.8;
}

  
.sidebar-search-box {
  width: 279px;
  margin-bottom: 15px;
}

.sidebar-search-box h3 {
  margin: 0 0 20px;
  font-weight: 700;
  color: var(--body-text-color) !important;
}

.sidebar-search-box form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-search-box input[type="search"] {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: #fff;
  color: var(--body-text-color);
  font-size: 0.95rem;
  font-family: var(--font-family);
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.sidebar-search-box input[type="search"]:focus {
  border-color: var(--link-color);
  box-shadow: 0 0 0 4px rgba(176, 54, 54, 0.12);
}

.sidebar-search-box input[type="search"]::placeholder {
  color: rgba(0, 0, 0, 0.45);
}

.sidebar-search-box button {
  border: none;
  border-radius: 12px;
  padding: 14px 16px;
  background: var(--box-color);
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    opacity 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 6px 18px rgba(59, 104, 91, 0.25);
}

      .sidebar-links {
  width: 279px;
  margin-bottom: 15px;
}
.sidebar-links h3 {
  margin: 0 0 20px;
  font-weight: 700;
}

.sidebar-page-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-page-list li {
  list-style: none;
}

.sidebar-page-list a {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--body-text-color);
  background: transparent;
  font-size: 0.98rem;
  font-weight: 500;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.25s ease;
}

.sidebar-page-list a:hover {
  background: rgba(176, 54, 54, 0.08);
  color: var(--link-color);
  transform: translateX(4px);
}

.sidebar-page-list a.active {
  background: var(--box-color);
  color: white;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(59, 104, 91, 0.25);
}
      .twitter-tweet {
  width: 279px !important;
}

.x {
  display: flex;
  justify-content: center;
}


.error_page {
  min-height: 70vh;
}


.footer {
  background: var(--footer-bg-color);
  color: var(--footer-text-color);
  padding: 2.5rem 0 1.75rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--header-bg-color);
}

.footer a {
  color: var(--link-color);
  text-decoration: none;
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}

.footer a:hover {
  color: var(--footer-text-color);
  opacity: 0.85;
}

.footer-divider {
  margin: 2rem 0 0;
  border-color: color-mix(in srgb, var(--link-color) 30%, transparent);
  opacity: 1;
}

.footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 2px;
  width: 100%;
  background: var(--link-color);
}
  


 .navbar {
  background-color: transparent !important;
  transition: background-color 0.4s ease, box-shadow 0.3s ease;
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;

}
.navbar.scrolled {
  background-color: var(--header-bg-color) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-section {
  padding: 125px 0 60px;
  position: relative;
  overflow: hidden;
  color: var(--header-text-color);
}

.hero-section.gradient-bg {
  background: linear-gradient(135deg, var(--hero-gradient1), var(--hero-gradient2));
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

  
@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 30px;
  }
  
}
  .navbar-light .navbar-nav .nav-link {
    color: var(--nav-link-color, #141414) !important;
  }

  .navbar-light .navbar-nav .nav-link.active {
  color: var(--link-color) !important;
  font-weight: bold;
}
  /* Mobile nav */
@media (max-width: 1199.98px) {
  .navbar-collapse {
    position: fixed;
    top: 61px;
    left: 15px;
    right: 15px;
    background-color: color-mix(in srgb, var(--header-bg-color) 65%, transparent);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 15px;
    margin: 0;
  }

  .navbar-nav {
    width: 100%;
  }

  .navbar-nav .nav-item {
    margin: 7px 0;
  }

  .navbar-nav .nav-item:hover {
    transform: translateY(-1px);
  }

  .navbar-nav .nav-link {
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 0;
  }

  .navbar-toggler {
    z-index: 10000;
    position: relative;
    border: var(--bs-border-width) solid var(--nav-link-color, #141414) !important;
  }
}


.custom-dropdown {
  border: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 220px;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 65%,
    transparent
  ) !important;
  backdrop-filter: blur(12px);
}

.custom-dropdown .dropdown-item {
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  color: var(--nav-link-color, #141414) !important;
  font-weight: 500;
  border-radius: 0;
  text-wrap: wrap;
}
.dropdown-menu {
  display: none;
}

.custom-dropdown .dropdown-item:hover {
  color: #fff;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 95%,
    transparent
  ) !important;
}
.nav-item.dropdown > .nav-link {
  display: flex;
  align-items: center;
}

.nav-item.dropdown > .nav-link .arrow {
  position: relative;
  margin-left: auto;
  border: solid var(--nav-link-color, #141414);
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.25s;
}

.dropdown.open .dropdown-menu {
  display: block;
}

@media (min-width: 1200px) {
  .nav-item.dropdown {
    position: relative;
  }
  .nav-item.dropdown > .nav-link .arrow {
    margin-left: 7px;
  }
  .custom-dropdown.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    z-index: 1000;
  }

  .nav-item.dropdown:hover > .nav-link .arrow {
    transform: rotate(-135deg);
  }
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block !important;
  }
}
@media (max-width: 1199px) {
  .nav-item.dropdown > .nav-link .arrow {
    padding: 4px;
  }
}

            
.zwolle-beer-section {
  --beer-primary: #c98532;
  --beer-primary-light: #e3a15a;
  --beer-secondary: #7c421d;
  --beer-dark: #120d09;
  --beer-dark-soft: #24160e;
  --beer-cream: #fff8ef;
  --beer-text: #fff8ef;
  --beer-muted: rgba(255, 248, 239, 0.82);
  --beer-border: rgba(242, 195, 159, 0.22);
  --beer-peach: #f2c39f;

  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 60px 0;

}

.zwolle-beer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.12;
  background-image:
    linear-gradient(
      rgba(255, 248, 239, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 248, 239, 0.05) 1px,
      transparent 1px
    );
  background-size: 48px 48px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 18%,
    #000 82%,
    transparent
  );
}

.zwolle-beer-section::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: -280px;
  left: 50%;
  z-index: -2;
  border-radius: 50%;
  transform: translateX(-50%);
  background: rgba(201, 133, 50, 0.12);
  filter: blur(28px);
  animation: beerGlowPulse 7s ease-in-out infinite;
}

.zwolle-beer-section .container {
  position: relative;
  z-index: 2;
}

.beer-section-heading {
  position: relative;
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 38px 40px;
  text-align: center;
  border: 1px solid var(--beer-border);
  border-radius: 28px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 248, 239, 0.1),
      rgba(70, 37, 19, 0.08)
    ),
    rgba(18, 10, 6, 0.44);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.beer-section-heading::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: -1;
  border: 1px solid rgba(242, 195, 159, 0.08);
  border-radius: 20px;
  pointer-events: none;
}

.beer-heading-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 8px 15px;
  color: var(--beer-peach);
  border: 1px solid rgba(242, 195, 159, 0.26);
  border-radius: 50px;
  background: rgba(201, 133, 50, 0.1);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.beer-heading-label i {
  font-size: 1rem;
  animation: beerIconSparkle 2.5s ease-in-out infinite;
}

.beer-section-heading h2 {
  max-width: 760px;
  margin: 0 auto 20px;
  color: var(--beer-cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.beer-section-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--beer-muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.beer-boxes-row {
  justify-content: center;
}

.beer-boxes-row > div {
  display: flex;
}

.box-one {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  padding: 80px 36px 38px;
  border: 1px solid rgba(242, 195, 159, 0.2);
  border-radius: 24px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 248, 239, 0.1),
      rgba(70, 37, 19, 0.1)
    ),
    rgba(18, 10, 6, 0.48);
  box-shadow:
    0 24px 65px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.45s ease,
    box-shadow 0.45s ease,
    background 0.45s ease;
  animation: beerCardEntrance 0.8s ease both;
}

.beer-boxes-row > div:nth-child(2) .box-one {
  animation-delay: 0.16s;
}

.beer-boxes-row > div:nth-child(3) .box-one {
  animation-delay: 0.32s;
}

.box-one::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  top: -110px;
  right: -80px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(227, 161, 90, 0.24),
    transparent 68%
  );
  transition:
    transform 0.5s ease,
    opacity 0.5s ease;
}

.box-one::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  background: linear-gradient(
    115deg,
    transparent 20%,
    rgba(255, 248, 239, 0.11) 46%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition:
    transform 0.8s ease,
    opacity 0.3s ease;
}

.box-one:hover {
  transform: translateY(-10px);
  border-color: rgba(227, 161, 90, 0.55);
  background:
    linear-gradient(
      145deg,
      rgba(255, 248, 239, 0.14),
      rgba(124, 66, 29, 0.15)
    ),
    rgba(18, 10, 6, 0.58);
  box-shadow:
    0 32px 85px rgba(0, 0, 0, 0.48),
    0 0 42px rgba(201, 133, 50, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.box-one:hover::before {
  opacity: 1;
  transform: scale(1.25);
}

.box-one:hover::after {
  opacity: 1;
  transform: translateX(100%);
}

.box-one-icon {
  position: absolute;
  top: 28px;
  left: 36px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #24160e;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 17px;
  background: linear-gradient(
    145deg,
    #f2c39f,
    #d99454
  );
  box-shadow:
    0 12px 30px rgba(201, 133, 50, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.55);
  transform: rotate(-5deg);
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.box-one-icon::before {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border: 1px solid rgba(242, 195, 159, 0.2);
  border-radius: 21px;
  animation: beerIconRing 3s ease-in-out infinite;
}

.box-one-icon i {
  font-size: 1.45rem;
}

.box-one:hover .box-one-icon {
  transform: rotate(0deg) translateY(-4px) scale(1.06);
  box-shadow:
    0 16px 38px rgba(201, 133, 50, 0.38),
    inset 0 1px 1px rgba(255, 255, 255, 0.6);
}

.box-one-content {
  position: relative;
  z-index: 2;
}

.box-one h3 {
  position: relative;
  margin: 0 0 18px;
  padding-bottom: 17px;
  color: var(--beer-cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.box-one h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 54px;
  height: 3px;
  border-radius: 50px;
  background: linear-gradient(
    90deg,
    var(--beer-peach),
    var(--beer-primary)
  );
  transition: width 0.45s ease;
}

.box-one:hover h3::after {
  width: 90px;
}

.box-one p {
  margin: 0;
  color: var(--beer-muted);
  font-size: 1rem;
  line-height: 1.85;
}

.beer-background-decoration {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.beer-decoration-one {
  width: 320px;
  height: 320px;
  top: 8%;
  left: -170px;
  border: 1px solid rgba(227, 161, 90, 0.18);
  background: rgba(201, 133, 50, 0.07);
  animation: beerFloatOne 10s ease-in-out infinite;
}

.beer-decoration-two {
  width: 220px;
  height: 220px;
  right: -90px;
  bottom: 10%;
  border: 1px solid rgba(255, 248, 239, 0.08);
  background: rgba(255, 248, 239, 0.03);
  animation: beerFloatTwo 12s ease-in-out infinite;
}

.beer-decoration-three {
  width: 34px;
  height: 34px;
  top: 22%;
  right: 15%;
  background: var(--beer-primary);
  box-shadow:
    0 0 0 14px rgba(201, 133, 50, 0.08),
    0 0 55px rgba(201, 133, 50, 0.3);
  animation: beerSmallOrb 5s ease-in-out infinite;
}

@keyframes beerCardEntrance {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes beerGlowPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: translateX(-50%) scale(0.9);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.12);
  }
}

@keyframes beerIconSparkle {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(15deg) scale(1.15);
  }
}

@keyframes beerIconRing {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.96);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.08);
  }
}

@keyframes beerFloatOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(45px, 40px, 0) rotate(12deg);
  }
}

@keyframes beerFloatTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-55px, -35px, 0) scale(1.12);
  }
}

@keyframes beerSmallOrb {
  0%,
  100% {
    opacity: 0.55;
    transform: translateY(0) scale(0.9);
  }

  50% {
    opacity: 1;
    transform: translateY(-28px) scale(1.1);
  }
}

@media (max-width: 991.98px) {
  .zwolle-beer-section {
    padding: 85px 0;
  }

  .beer-section-heading {
    margin-bottom: 42px;
  }
}

@media (max-width: 767.98px) {
  .zwolle-beer-section {
    padding: 65px 0;
  }

  .beer-section-heading {
    padding: 30px 22px;
    border-radius: 22px;
  }

  .beer-section-heading h2 {
    font-size: 2.15rem;
  }

  .box-one {
    padding: 76px 25px 30px;
    border-radius: 22px;
  }

  .box-one-icon {
    top: 24px;
    left: 25px;
  }

  .box-one p,
  .beer-section-heading p {
    font-size: 0.96rem;
    line-height: 1.75;
  }
}

@media (prefers-reduced-motion: reduce) {
  .zwolle-beer-section *,
  .zwolle-beer-section *::before,
  .zwolle-beer-section *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

  .box-one {
    transition: none;
  }
}


.styled-section {
  --beer-primary: #c98532;
  --beer-primary-light: #e3a15a;
  --beer-peach: #f2c39f;
  --beer-dark: #120d09;
  --beer-dark-soft: #24160e;
  --beer-cream: #fff8ef;
  --beer-muted: rgba(255, 248, 239, 0.82);
  --beer-border: rgba(242, 195, 159, 0.22);

  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: 1180px;
  margin: 70px auto;
  padding: 70px 55px;
  border: 1px solid var(--beer-border);
  border-radius: 30px;
  background:
    radial-gradient(
      circle at 12% 15%,
      rgba(227, 161, 90, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at 88% 82%,
      rgba(201, 133, 50, 0.14),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      rgba(255, 248, 239, 0.1),
      rgba(70, 37, 19, 0.08)
    ),
    rgba(18, 10, 6, 0.72);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.styled-section::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  top: -170px;
  right: -110px;
  z-index: -1;
  border-radius: 50%;
  border: 1px solid rgba(242, 195, 159, 0.14);
  background: rgba(201, 133, 50, 0.08);
  box-shadow:
    0 0 60px rgba(201, 133, 50, 0.12),
    inset 0 0 40px rgba(242, 195, 159, 0.05);
  animation: styledSectionFloatOne 10s ease-in-out infinite;
}

.styled-section::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  left: -110px;
  bottom: -130px;
  z-index: -1;
  border-radius: 50%;
  background: rgba(227, 161, 90, 0.08);
  box-shadow: 0 0 70px rgba(201, 133, 50, 0.12);
  filter: blur(3px);
  animation: styledSectionFloatTwo 12s ease-in-out infinite;
}

.styled-section > h2 {
  position: relative;
  max-width: 820px;
  margin: 0 0 24px;
  color: var(--beer-cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.styled-section > h2::before {
  content: "\F4D8";
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-right: 14px;
  place-items: center;
  vertical-align: middle;
  color: var(--beer-dark-soft);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  background: linear-gradient(
    145deg,
    var(--beer-peach),
    var(--beer-primary-light)
  );
  box-shadow:
    0 10px 28px rgba(201, 133, 50, 0.26),
    inset 0 1px 1px rgba(255, 255, 255, 0.5);
  font-family: "bootstrap-icons";
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1;
  animation: styledSectionIconPulse 3s ease-in-out infinite;
}

.styled-section > h2::after {
  content: "";
  display: block;
  width: 92px;
  height: 3px;
  margin-top: 22px;
  border-radius: 50px;
  background: linear-gradient(
    90deg,
    var(--beer-peach),
    var(--beer-primary)
  );
  box-shadow: 0 0 18px rgba(201, 133, 50, 0.25);
}

.styled-section > p:first-of-type {
  max-width: 900px;
  margin: 0 0 48px;
  color: var(--beer-muted);
  font-size: 1.08rem;
  line-height: 1.85;
}

.styled-section > h3 {
  position: relative;
  margin: 28px 0 0;
  padding: 32px 32px 16px 96px;
  color: var(--beer-cream);
  border-top: 1px solid rgba(242, 195, 159, 0.18);
  border-right: 1px solid rgba(242, 195, 159, 0.18);
  border-left: 1px solid rgba(242, 195, 159, 0.18);
  border-radius: 22px 22px 0 0;
  background:
    linear-gradient(
      145deg,
      rgba(255, 248, 239, 0.1),
      rgba(124, 66, 29, 0.08)
    ),
    rgba(18, 10, 6, 0.5);
  box-shadow:
    0 20px 55px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  transition:
    border-color 0.35s ease,
    background 0.35s ease,
    transform 0.35s ease;
}

.styled-section > h3::before {
  content: "\F31B";
  position: absolute;
  top: 26px;
  left: 30px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--beer-dark-soft);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 15px;
  background: linear-gradient(
    145deg,
    var(--beer-peach),
    #d99454
  );
  box-shadow:
    0 12px 30px rgba(201, 133, 50, 0.28),
    inset 0 1px 1px rgba(255, 255, 255, 0.5);
  font-family: "bootstrap-icons";
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  transform: rotate(-5deg);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.styled-section > h3:nth-of-type(2)::before {
  content: "\F2E7";
}

.styled-section > h3:nth-of-type(3)::before {
  content: "\F293";
}

.styled-section > h3::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 0;
  left: 96px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(242, 195, 159, 0.45),
    transparent
  );
}

.styled-section > h3 + p {
  position: relative;
  margin: 0 0 26px;
  padding: 0 32px 34px 96px;
  color: var(--beer-muted);
  border-right: 1px solid rgba(242, 195, 159, 0.18);
  border-bottom: 1px solid rgba(242, 195, 159, 0.18);
  border-left: 1px solid rgba(242, 195, 159, 0.18);
  border-radius: 0 0 22px 22px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 248, 239, 0.08),
      rgba(124, 66, 29, 0.06)
    ),
    rgba(18, 10, 6, 0.5);
  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.24),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 1rem;
  line-height: 1.85;
  transition:
    border-color 0.35s ease,
    background 0.35s ease,
    transform 0.35s ease;
}

.styled-section > h3:hover {
  border-color: rgba(227, 161, 90, 0.46);
  background:
    linear-gradient(
      145deg,
      rgba(255, 248, 239, 0.13),
      rgba(124, 66, 29, 0.12)
    ),
    rgba(18, 10, 6, 0.58);
  transform: translateY(-4px);
}

.styled-section > h3:hover::before {
  transform: rotate(0deg) scale(1.07);
  box-shadow:
    0 16px 36px rgba(201, 133, 50, 0.38),
    inset 0 1px 1px rgba(255, 255, 255, 0.58);
}

.styled-section > h3:hover + p {
  border-color: rgba(227, 161, 90, 0.46);
  background:
    linear-gradient(
      145deg,
      rgba(255, 248, 239, 0.11),
      rgba(124, 66, 29, 0.1)
    ),
    rgba(18, 10, 6, 0.58);
  transform: translateY(-4px);
}

@keyframes styledSectionFloatOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(-35px, 30px, 0) rotate(10deg);
  }
}

@keyframes styledSectionFloatTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(35px, -25px, 0) scale(1.12);
  }
}

@keyframes styledSectionIconPulse {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }

  50% {
    transform: scale(1.08) rotate(4deg);
  }
}

@media (max-width: 991.98px) {
  .styled-section {
    margin: 50px 0;
    padding: 55px 36px;
  }
}

@media (max-width: 767.98px) {
  .styled-section {
    margin: 35px 0;
    padding: 42px 20px;
    border-radius: 24px;
  }

  .styled-section > h2 {
    font-size: 2.1rem;
  }

  .styled-section > h2::before {
    display: grid;
    margin: 0 0 18px;
  }

  .styled-section > p:first-of-type {
    margin-bottom: 36px;
    font-size: 1rem;
    line-height: 1.75;
  }

  .styled-section > h3 {
    padding: 92px 24px 15px;
    border-radius: 20px 20px 0 0;
  }

  .styled-section > h3::before {
    top: 24px;
    left: 24px;
  }

  .styled-section > h3::after {
    right: 24px;
    left: 24px;
  }

  .styled-section > h3 + p {
    padding: 0 24px 28px;
    border-radius: 0 0 20px 20px;
    font-size: 0.96rem;
    line-height: 1.75;
  }
}

@media (prefers-reduced-motion: reduce) {
  .styled-section,
  .styled-section::before,
  .styled-section::after,
  .styled-section *,
  .styled-section *::before,
  .styled-section *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition: none !important;
  }
}

.newsletter {
  --newsletter-bg: #17100b;
  --newsletter-bg-soft: #28180f;
  --newsletter-accent: #d99454;
  --newsletter-accent-light: #f2c39f;
  --newsletter-text: #fff8ef;
  --newsletter-muted: rgba(255, 248, 239, 0.75);
  --newsletter-border: rgba(242, 195, 159, 0.22);

  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--newsletter-border);
  border-radius: 24px;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(7px);
}

.newsletter::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  top: -85px;
  right: -65px;
  border: 1px solid rgba(242, 195, 159, 0.16);
  border-radius: 50%;
  background: rgba(217, 148, 84, 0.06);
  pointer-events: none;
  animation: newsletterFloat 8s ease-in-out infinite;
}

.newsletter::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  left: -45px;
  bottom: -45px;
  border-radius: 50%;
  background: rgba(242, 195, 159, 0.06);
  filter: blur(2px);
  pointer-events: none;
}

.newsletter-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  place-items: center;
  color: #24160e;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 17px;
  background: linear-gradient(
    145deg,
    var(--newsletter-accent-light),
    var(--newsletter-accent)
  );
  box-shadow:
    0 12px 28px rgba(217, 148, 84, 0.28),
    inset 0 1px 1px rgba(255, 255, 255, 0.55);
  transform: rotate(-5deg);
}

.newsletter-icon i {
  font-size: 1.4rem;
}

.newsletter-label {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 10px;
  color: var(--newsletter-accent-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.newsletter h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: var(--newsletter-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.2;
}

.newsletter > p {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  color: var(--newsletter-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.newsletter-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.newsletter-form .form-control {
  min-height: 52px;
  padding: 12px 16px;
  color: var(--newsletter-text);
  border: 1px solid rgba(242, 195, 159, 0.2);
  border-radius: 14px;
  outline: none;
  background: rgba(255, 248, 239, 0.07);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 24px rgba(0, 0, 0, 0.14);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 248, 239, 0.5);
}

.newsletter-form .form-control:focus {
  color: var(--newsletter-text);
  border-color: rgba(242, 195, 159, 0.55);
  background: rgba(255, 248, 239, 0.1);
  box-shadow:
    0 0 0 4px rgba(217, 148, 84, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.newsletter-btn {
  min-height: 52px;
  color: #24160e;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    var(--newsletter-accent-light),
    var(--newsletter-accent)
  );
  box-shadow:
    0 12px 28px rgba(217, 148, 84, 0.24),
    inset 0 1px 1px rgba(255, 255, 255, 0.45);
  font-weight: 700;
  cursor: not-allowed;
  opacity: 0.72;
}

.newsletter-btn i {
  margin-right: 7px;
}

.newsletter-btn:disabled {
  pointer-events: none;
}

.newsletter small {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 14px;
  color: rgba(255, 248, 239, 0.52);
  font-size: 0.78rem;
  line-height: 1.5;
}

@keyframes newsletterFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(-14px, 16px, 0) rotate(8deg);
  }
}

@media (max-width: 767.98px) {
  .newsletter {
    padding: 24px;
    border-radius: 20px;
  }

  .newsletter h3 {
    font-size: 1.45rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .newsletter::before {
    animation: none;
  }
}



  .tw-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  
  .twitter-tweet {
    max-width: 100%;
    margin: 0 auto;
  }
  