/* premium-calendar.css — elegancki, spójny styl */
:root {
  --gold: #C8A85A;
  --navy: #1F2A44;
  --ink: #1E2430;
  --muted: #6B7280;
  --paper: #FAF8F5;
  --white: #FFFF;
  --line: #E6E1D8;
  --shadow: 0 6px 18px rgba(0, 0, 0, .06);
  --radius: 12px;
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

img {
  max-width: 100%;
  display: block
}

button {
  font: inherit
}

/* Podstawa */
html,
body {
  height: auto;
  /* min-height: 100%; */
  overflow-y: auto;
}

body {
  font-family: Lato, Inter, system-ui, -apple-system, Segoe UI, Roboto, "Noto Sans", Arial, sans-serif;
  color: #1E2430BA;
  background: var(--paper);
  line-height: 1.6;
}

/* Nagłówki serif */
h1,
h2,
h3,
h4 {
  font-family: Lato, "Playfair Display", Georgia, "Times New Roman", serif;
  color: var(--navy);
}

h1 {
  font-size: 46px;
  line-height: 1.15
}

h2 {
  font-size: 30px
}

h3 {
  font-size: 22px
}

/* Layout */
.containerr {
  max-width: 1200px;
  margin: 5px auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.container {
  display: flex;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.left-column,
.center-column,
.right-column {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  text-align: center;
  max-width: 400px;
}

.left-column h1 {
  text-align: center;
  position: relative;
  margin-bottom: 16px;
  font-size: 40px;
}

.left-column h1::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 12px auto 0;
}

.left-column p {
  color: var(--muted);
  margin: 10px 0
}

/* Przyciski */
.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px
}

.btn-manage {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 18px;
  border-radius: 7px;
  border: 1px solid transparent;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  text-decoration: none;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease, color .12s ease, border-color .12s ease;
  background: #aaa;
  color: #fff;
  font-family: Lato;
}

.btn-manage:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(31, 42, 68, .15);
  text-decoration: none;
}

/* Usunięcie przycisku lista rezerwowa z lewej kolumny */
.btn-waiting-list.left-column-btn {
  display: none;
}

/* Kalendarz */
.center-column {
  flex: 1.6
}

.calendar {
  width: 100%
}

.calendar .month {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #aaa;
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 16px 18px;
  margin: -24px -24px 0 -24px;
  font-size: 16px;
}

#month-name {
  font-weight: 700;
  letter-spacing: .3px;
  color: #fff !important;
  font-size: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  z-index: 10;
  position: relative;
}

.month button {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .35);
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background-color .12s ease, border-color .12s ease, transform .12s ease;
}

.month button:hover {
  background: rgba(255, 255, 255, .12);
  transform: scale(1.03)
}

.calendar .weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 14px 0 8px;
  color: var(--muted);
  text-transform: uppercase;
  font-size: .82rem;
  letter-spacing: .06em;
}

.calendar .days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  padding: 8px 0 4px;
}

.calendar .day {
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-weight: 500;
  font-size: 14px;
  color: black;
  transition: background-color .12s ease, color .12s ease, border-color .12s ease, transform .12s ease, box-shadow .12s ease;
}

.calendar .day.other-month {
  color: #C5C7CD;
  background: #fafafa;
  border-color: #EFEDE7;
  pointer-events: none
}

.calendar .day:not(.other-month):hover {
  background: #888;
  color: #000;
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(200, 168, 90, .18);
}

.calendar .day.today {
  outline: 2px solid #000;
  outline-offset: -2px;
  font-weight: 700;
}

/* Godziny */
.right-column {
  flex: 1
}

.hours-list h3 {
  color: var(--navy);
  text-align: center;
  margin-bottom: 14px;
  font-family: "Playfair Display", Georgia, serif;
}

.hour-item {
  background: #F4F4F4;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .12s ease, transform .12s ease, box-shadow .12s ease, color .12s ease, border-color .12s ease;
  margin-bottom: 10px;
}

.hour-item:hover {
  background: #888;;
  color: #fff;
  border-color: #888;
  transform: translateX(4px);
  box-shadow: 0 8px 16px rgba(200, 168, 90, .18);
}

/* Zmniejszenie czcionki dla komunikatu o telefonach */
.hours-list .phone-info {
  font-size: 0.75rem;
  line-height: 1.4;
  margin-top: 20px;
  padding: 12px;
  background: #f9f9f9;
  border-radius: 8px;
  border: 1px solid var(--line);
text-align: center;
}

.hours-list .phone-info h3 {
  font-size: 0.8rem;
  margin-bottom: 8px;
font-weight: normal;
}

/* Wyróżnienie komunikatu o braku wolnych godzin */
.no-available-message {
  background:  #F4F4F4;
  border: 1px solid var(--line);
  color: var(--navy);
  padding: 16px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  margin: 16px 0;
}

/* Przycisk rozwijający listę rezerwową */
.waiting-list-toggle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 14px 20px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease, color .12s ease, border-color .12s ease;
/*  background: var(--gold); 
  color: #fff; 
  border: 1px solid transparent; */
  background: #FFFBF0;
  border: 1px solid var(--gold);
  color: var(--navy);

  margin: 16px 0;
}

.waiting-list-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(200, 168, 90, .18);
}

/* Ukryta sekcja listy rezerwowej */
.waiting-list-section.collapsed {
  display: none;
}

.waiting-list-section.expanded {
  display: block;
  margin-top: 16px;
}

.waiting-list-section h4 {
  color: var(--navy);
  margin-bottom: 10px
}

.waiting-list-form {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.waiting-list-form input,
.waiting-list-form select {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  transition: border-color .12s ease, box-shadow .12s ease;
}

.waiting-list-form input:focus,
.waiting-list-form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 168, 90, .18);
}

/* Lista rezerwowa box */
.waiting-list-section {
  margin-top: 22px;
  padding: 18px;
  background: #FFF8E8;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
}

.waiting-list-section h4 {
  color: var(--navy);
  margin-bottom: 10px
}

.waiting-list-form {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.waiting-list-form input,
.waiting-list-form select {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  transition: border-color .12s ease, box-shadow .12s ease;
}

.waiting-list-form input:focus,
.waiting-list-form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 168, 90, .18);
}

/* Przycisk Lista rezerwowa w waiting-list-section */
.waiting-list-form .btn-waiting-list {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease, color .12s ease, border-color .12s ease;
  background: var(--gold);
  color: #fff;
}

.waiting-list-form .btn-waiting-list:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(200, 168, 90, .18);
}

/* Formularz rezerwacji */
.form-container {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  max-width: 720px;
  margin-inline: auto;
}

.form-container h3 {
  color: var(--navy);
  text-align: center;
  margin-bottom: 12px
}

.form-container label {
  display: block;
  margin-top: 14px;
  margin-bottom: 6px;
  color: var(--ink);
  font-weight: 600;
}

.form-container input[type="text"],
.form-container input[type="tel"],
.form-container input[type="email"],
.form-container input[type="date"],
.form-container select {
  width: 100%;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  transition: border-color .12s ease, box-shadow .12s ease;
}

.form-container input:focus,
.form-container select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 168, 90, .18);
}

/* Zwiększenie rozmiaru checkboxa i zmniejszenie czcionki tekstu zgody */
.form-container input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 12px;
  transform: translateY(2px);
  cursor: pointer;
}

.form-container .privacy-agreement {
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--muted);
  margin-top: 16px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.form-container .privacy-agreement h3 {
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0;
  color: var(--muted);
  text-align: left;
}

.form-container button[type="submit"] {
  
  margin-top: 18px;
  padding: 12px 18px;
  border-radius: 7px;
  border: 1px solid transparent;
  background: #aaa;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease;
}

.form-container button[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(200, 168, 90, .2)
}

/* Karty zarządzania wizytą */
.manage-container {
  max-width: 880px;
  margin: 32px auto;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.search-form-container,
.appointments-list-container,
.edit-form-container,
.success-message {
  padding: 22px;
  background: #F4F4F4;
  border-radius: var(--radius);
  margin-bottom: 18px;
  border: 1px solid var(--line);
}

.search-form-container h2,
.appointments-list-container h2,
.edit-form-container h2,
.success-message h2 {
  color: var(--navy);
  text-align: center;
  margin-bottom: 12px;
  font-family: "Playfair Display", Georgia, serif;
}

#search-appointment-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 420px;
  margin: 0 auto
}

#search-appointment-form input {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px
}

#search-appointment-form button {
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  cursor: pointer
}

.error-message {
  background: #FDE8EA;
  border: 1px solid #F7C9CF;
  color: #8A1C26;
  padding: 12px;
  border-radius: 10px;
  text-align: center
}

.appointment-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 12px;
  transition: box-shadow .12s ease
}

.appointment-card:hover {
  box-shadow: var(--shadow)
}

.appointment-actions {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.appointment-actions button {
  padding: 10px 14px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer
}

.appointment-actions button:first-child {
  background: #28a745;
  color: #fff
}

.appointment-actions .cancel-button {
  background: #dc3545;
  color: #fff
}

/* Stopka */
footer {
  background: var(--navy);
  color: #fff;
  margin-top: 40px;
  padding: 32px 0;
  position: static;
}

#footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: static;
}

.footer-content {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  margin-bottom: 16px;
}

.footer-brand h4 {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px
}

.footer-brand p {
  opacity: .85
}

.footer-contact h5 {
  color: var(--gold);
  margin-bottom: 8px
}

.footer-contact a {
  color: var(--gold);
  text-decoration: none
}

.footer-contact a:hover {
  text-decoration: underline
}

.footer-bottom {
  font-size: .95rem;
  opacity: .9
}

.footer-links {
  margin-top: 8px
}

.footer-links a {
  color: #fff;
  opacity: .8;
  text-decoration: none;
  margin: 0 10px
}

.footer-links a:hover {
  opacity: 1
}

/* ==== Header, menu, logo ==== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
}



}

#header {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

#menu1 {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

#logo {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1002;
}

#logo a,
#logo a:link,
#logo a:visited,
#logo a:hover,
#logo a:active {
  text-decoration: none !important;
  color: inherit !important;
  border: 0 !important;
}

#logo h7 {
  margin-top: 5px;
  font-size: 28px;
  font-family: "Great Vibes", cursive;
  line-height: 30px;
  color: #272727;
  font-weight: 400;
  font-style: normal;
  border: 1px solid #272727;
  padding: 6px 36px;
  border-radius: 170px / 45px;
  background: transparent;
  white-space: nowrap;
}

#nv1 {
  display: flex;
  justify-content: center;
  flex: 1;
  margin-left: 200px;
}

#nv1 ul {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
  margin: 0;
  padding: 0;
  justify-content: center;
}

#nv1 li {
  position: relative;
}

#nv1 li a {
  display: block;
  padding: 16px 18px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
  white-space: nowrap;
  text-shadow: none;
}

#nv1 li a[href*="zarezerwuj"],
#nv1 li a[href*="Zarezerwuj"],
#nv1 li a[href*="termin"],
#nv1 li a[href*="kalendarz"] {
  border: 1px solid var(--gold) !important;
  border-radius: 8px;
  font-weight: 500 !important;
  padding: 12px 20px !important;
  background: transparent !important;
  color: var(--gold) !important;
  transition: all 0.3s ease !important;
}

#nv1 li a[href*="zarezerwuj"]:hover,
#nv1 li a[href*="Zarezerwuj"]:hover,
#nv1 li a[href*="termin"]:hover,
#nv1 li a[href*="kalendarz"]:hover {
  background: var(--gold) !important;
  color: #fff !important;
  border-color: var(--gold) !important;
}

#nv1 li a:hover {
  color: var(--gold);
}

/* Aktywny link */
#nv1 li a.active {
  color: var(--gold);
  font-weight: 600;
}

.hamburger {
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger .line {
  width: 28px;
  height: 3px;
  background: #6e6e6e;
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* ==== Hero (zdjęcie główne) ==== */
#header-img {
  position: relative;
  height: 380px;
  overflow: hidden;
  z-index: 1;
  margin-top: 35px;
}

#header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ==== Układ strony i nachodzenie na Hero ==== */

/* Kontener główny */
#container1 {
  position: relative;
}

#od-menu {
  height: 0;
}

/* Kontener dla nagłówka H1 */
#center-1 {
  position: relative;
}

.center-1b.onas {
  position: absolute;
  top: -388px;
  left: 25%;
  transform: translateX(-50%);
  z-index: 5;
  width: 100%;
  max-width: 1320px;
  padding: 0 20px;
  text-align: center;
}

/* Nagłówek "Suknie ślubne..." */
.center-1b.onas h1 {
  display: block;
  text-align: center;
  margin: 0 auto;
  font-size: 48px;
  line-height: 1.2;
  color: #fff;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  letter-spacing: 1px;
/*  background: rgba(0, 0, 0, 0.2); */
  padding: 20px 20px;
  border-radius: 10px;
/*  backdrop-filter: blur(2px);  */
}

/* Kontener dla kart kalendarza */
.containerr {
  margin-top: 60px;
  position: relative;
  z-index: 10;
}

/* Responsywność */
@media (min-width: 1200px) {
  .containerr {
    max-width: 1320px
  }

  .container {
    gap: 28px
  }

  .left-column {
    flex: 1.2
  }

  .center-column {
    flex: 1.2
  }

  .right-column {
    flex: 1.1
  }
}

@media (max-width: 1024px) {
  .container {
    flex-direction: column
  }

  .left-column,
  .center-column,
  .right-column {
    padding: 20px
  }

  #nv1 {
    margin-left: 0;
  }

  #logo {
    position: relative;
    left: auto;
    transform: none;
    margin-bottom: 10px;
  }

  #menu1 {
    flex-direction: column;
    height: auto;
    padding: 20px 0;
  }
}

@media (max-width: 900px) {
  #nv1 ul {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  #nv1 ul.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  #nv1 li {
    width: 100%;
    text-align: center;
  }

  #nv1 li a {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
  }

  #nv1 li:last-child a {
    border-bottom: none;
  }

  .hamburger {
    display: block;
  }

  .hamburger.active .line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger.active .line:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  #menu1 {
    height: 80px;
    flex-direction: row;
    justify-content: space-between;
  }

  #logo {
    position: absolute;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 0;
  }

  #nv1 {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  #header-img {
    height: 280px;
margin-top: 50px;

  }

  .center-1b.onas {
top: -115px;
    left: 50%;

  }

  .center-1b.onas h1 {
    font-size: 36px;
  }

  #logo h7 {
    font-size: 24px;
    padding: 4px 24px;
  }

  #menu1 {
    height: 70px;
  }

  .calendar .days {
    gap: 6px
  }

  .calendar .day {
    font-size: 14px;  /* .95rem  */
  }

  .month button {
    width: 34px;
    height: 34px
  }

  #month-name {
    font-size: 1.1rem
  }

  .footer-content {
    flex-direction: column;
    text-align: center
  }

  .footer-contact {
    text-align: center
  }

  .containerr {
    margin-top: 40px;
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  #header-img {
    height: 250px;
  }

  .center-1b.onas {
    top: -125px;
  }

  .center-1b.onas h1 {
    font-size: 28px;
  }

  #logo h7 {
    font-size: 20px;
    padding: 3px 20px;
  }

  #menu1 {
    height: 60px;
  }
}


   .closed-day-message {
        background-color: #f8d7da;
        border: 2px solid #dc3545;
        border-radius: 10px;
        padding: 30px;
        text-align: center;
        margin: 20px 0;
    }
    
    .closed-day-message h3 {
        color: #721c24;
        margin-bottom: 10px;
        font-size: 24px;
    }
    
    .closed-day-message p {
        color: #721c24;
        font-size: 16px;
        margin: 0;
    }

/* ==== POPRAWKI DLA HERO TEXT NA MOBILE ==== */

@media (max-width: 768px) {

.center-1b.onas h1 {
    font-size: 32px;
    /* GŁÓWNA ZMIANA - mocniejszy cień + półprzezroczyste tło */
    background: rgba(0, 0, 0, 0.35);
    padding: 16px 20px;
    border-radius: 12px;
}

.center-1b.onas h1 {
  color: #C8A85A; /* złoty kolor */
  text-shadow: 
    2px 2px 4px rgba(0, 0, 0, 1),
    4px 4px 8px rgba(0, 0, 0, 0.9),
    0 0 20px rgba(0, 0, 0, 0.7);
}
}


@media (max-width: 480px) {
  
  #header-img {
    height: 250px;
  }
  
  .center-1b.onas {
    top: -125px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 15px;
    width: 95%;
  }
  
  .center-1b.onas h1 {
    font-size: 26px;
    padding: 14px 18px;
    /* Jeszcze mocniejszy cień dla najmniejszych ekranów */
    text-shadow: 
      2px 2px 6px rgba(0, 0, 0, 1),
      4px 4px 10px rgba(0, 0, 0, 0.8),
      0 0 25px rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.4);
  }
}



