
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

/* --------------------------------------------------
   PREMIUM COLORS
-------------------------------------------------- */
:root {
  --gold: #d8b26e;
  --gold-bright: #fcd996;
  --overlay-dark: rgba(0, 0, 0, 0.45);
}

/* --------------------------------------------------
   PREMIUM TYPOGRAPHY
-------------------------------------------------- */
.drinas-banner h1 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 600;
  letter-spacing: 1px;
}
.drinas-banner h2 {
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  font-weight: 300;
  letter-spacing: 0.5px;
}
.drinas-banner h3 {
  margin: 0 0 .5rem 0;
  font-size: clamp(.9rem, 1.6vw, 1.2rem);
}
.drinas-banner h4 {
  font-size: clamp(0.7rem, 1.2vw, 0.9rem);
  opacity: 0.85;
  margin: 0;
}

/* Smaller h4 inside drinas-banner-info */
.drinas-banner-info h4 {
  font-size: clamp(0.7rem, 1.2vw, 0.9rem);
}

/* --------------------------------------------------
   drinas-banner BASE
-------------------------------------------------- */
.drinas-banner {
  background-image: url("../../images/1024/0576/drinas-001-001.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  height: auto; /* default auto height */
}

/* Large screens: bigger height */
@media (min-width: 992px) {
  .drinas-banner {
    height: 400px; /* taller banner */
    min-height: 400px;
  }
}

/* Small screens: full viewport height */
@media (max-width: 991.98px) {
  .drinas-banner {
    height: 100dvh;
    min-height: 100dvh;
  }
}

/* Vignette premium effect */
.drinas-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.75) 100%);
  pointer-events: none;
}

/* --------------------------------------------------
   OVERLAY
-------------------------------------------------- */
.drinas-banner-overlay {
  background: rgba(0, 0, 0, 0.69);
  width: 100%;
  height: 100%; /* always full height */
  min-height: 100%;
  display: flex;
  align-items: center;
  padding: 0 0 4rem 0;
  position: absolute; /* overlay on top of banner */
  top: 0;
  left: 0;
  z-index: 1;
}

/* Max width wrapper */
.drinas-banner-content-wrapper {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2; /* content above overlay */
  padding: 4% 0;
}

/* --------------------------------------------------
   LOGO (dramatic elevation)
-------------------------------------------------- */
.logo-container {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 224, 150, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.logo-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160px;
  height: 160px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 224, 150, 0.5) 0%, rgba(255, 224, 150, 0.2) 50%, rgba(255, 224, 150, 0) 100%);
  filter: blur(30px);
  z-index: -1;
}

.logo-img {
  height: 90px;
  position: relative;
  z-index: 2; /* logo above glow */
}

/* Lift logo slightly */
.logo-high {
  transform: translateY(-40%); /* less than before so it stays inside drinas-banner */
}

/* --------------------------------------------------
   TITLE BLOCK
-------------------------------------------------- */
.drinas-banner-title {
  color: rgba(255, 255, 255, 0.69);
  text-align: right;
  padding-right: 16px;
  animation: fadeUp 1s ease-out forwards;
}

.drinas-banner-title h1 {
  color: var(--gold-bright);
  margin: 0 !important;
  padding: 0 0 1rem 0 !important;
  line-height: 1.2rem !important;
}

.drinas-banner-title h2 {
  color: rgba(255, 255, 255, 0.69) !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1rem !important;
}

/* --------------------------------------------------
   INFO BLOCK
-------------------------------------------------- */
.drinas-banner-info {
  border-left: 4px solid var(--gold);
  color: rgba(255, 255, 255, 0.69);
  padding: 0 0 0 40px;
  animation: fadeUp 1.3s ease-out forwards;
}

/* --------------------------------------------------
   ANIMATIONS
-------------------------------------------------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --------------------------------------------------
   RESPONSIVE ADJUSTMENTS
-------------------------------------------------- */
@media (max-width: 991.98px) {

  .drinas-banner {
    padding: 0;
    height: 100dvh;
    min-height: 100dvh;
  }

  .drinas-banner-title {
    text-align: center;
    border-right: none;
    border-bottom: 2px solid var(--gold);
    padding-right: 0;
    padding-bottom: 1rem;
  }

  .drinas-banner-info {
    padding: 0 1rem;
    margin-top: 1.5rem;
    text-align: center;
    border: none;
  }

  .logo-high {
    transform: translateY(0);
  }

  .logo-img {
    height: 80px;
  }
}