* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}


html {
  scroll-behavior: smooth;
}

.header {
  min-height: 72vh;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-color: #333;
  position: relative;
}

.loader {
  border: 10px solid #f3f3f3;
  /* Light grey */
  border-top: 10px solid #333;
  /* Blue */
  border-radius: 50%;
  width: 100px;
  height: 100px;
  animation: spin 2s linear infinite;
  position: absolute;
  top: 50%;
  left: 47%;
  transform: translate(-50%, -50%);
  /* Center the loader */
  z-index: 1000;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.header.loaded .loader {
  display: none;
}

.header.loaded {
  background-image: linear-gradient(rgba(4, 9, 30, 0.55), rgba(4, 9, 30, 0.4)), url(/images/startny.jpg);
}

.headerres.loaded .loader {
  display: none;
}

.headerres.loaded {
  background-image: linear-gradient(rgba(4, 9, 30, 0.55), rgba(4, 9, 30, 0.4)), url(/images/sb.jpg);
  background-size: cover;
  background-position: center;

}

/* Initial hidden state */
.slide-in {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Active state when the element slides in */
.slide-in.active {
  opacity: 1;
  transform: translateX(0);
}

.box {
  display: flex;
  margin-top: 10%;
  margin-bottom: 8%;
}

.bbox {
  width: 40%;
  text-align: left;
  font-weight: 500;
  color: #333;
  margin: 5%;
}

.bbox a {
  color: #9F4561;
}

.slider-container {
  position: relative;
  max-width: 520px;
  margin-top: 2%;
}

.slide {
  width: 100%;
  height: auto;
  display: none;
}

.slide:first-child {
  display: block;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
  background-color: rgba(0, 0, 0, 0.8);
}

.prev {
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 1);
}

@media (max-width: 768px) {

  /* Loader styles */
  .loader {
    border: 8px solid #f3f3f3;
    /* Light grey */
    border-top: 8px solid #333;
    /* Blue */
    border-radius: 50%;
    width: 90px;
    height: 90px;
    animation: spin 2s linear infinite;
    position: absolute;
    top: 50%;
    left: 38%;
    transform: translate(-50%, -50%);
    /* Center the loader */
    z-index: 1000;
  }

  body .box {
    display: block;
    margin-top: 20%;
  }

  body .bbox {
    width: 90%;
    text-align: left;
    font-weight: 500;
    color: #333;
    margin-top: 15%;
    display: block;

  }

  body .slider-container {
    position: relative;
    max-width: 320px;
    margin-top: 2%;
    margin-left: 5%;
  }
}


.headerres {
  min-height: 72vh;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-color: #333;
  position: relative;
}

.header img:hover {
  transition: 0.5s;
  transform: scale(1.08);
}

.headertxt {
  position: relative;
  text-align: center;
  margin-bottom: 5%;
  text-transform: uppercase;
  display: inline;
}

.headertxt2 {
  /*phone*/
  display: none;
}

.headertxt h1 {
  padding-top: 25vh;
  font-size: 3.5em;
  font-weight: 800;
  color: #fff;
  line-height: 1em;
}

/*reservera sidans txt*/
.headerrestxt {
  position: relative;
  text-align: center;
  margin-bottom: 5%;
  text-transform: uppercase;
  display: inline;
}

.headerrestxt h1 {
  padding-top: 25vh;
  font-size: 3.5em;
  font-weight: 800;
  color: #fff;
  line-height: 1em;
}

.headerrestxt h2 {
  color: #fff;
  font-size: 1.2rem;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}

.animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}


.spanres {
  line-height: 50px;
  color: rgba(241, 238, 13, 1);
}

.headspan {
  line-height: 100px;
  color: rgba(241, 238, 13, 1);
}

.headertxt h2 {
  color: #fff;
  font-size: 2.5rem;
  background-color: #EC353A;
  width: 40%;
  margin-left: 30%;
}

#h2wel {
  text-align: center;
  color: #FFFF00;
  font-size: 4em;
  font-weight: 500;
  font-style: italic;
}

#h2wel1 {
  text-align: center;
  color: #FFFF00;
  font-size: 5em;
  font-weight: 500;
}

#h1res1 {
  margin-bottom: 2%;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar.scroll {
  background-color: #9F4561;
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hamburger {
  display: none;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #101010;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu li {
  list-style: none;
  display: inline-block;
  padding: 2px 22px;
  position: relative;
  text-align: center;
  z-index: 15;
}

.nav-menu li a {
  display: inline-block;
  color: #fff;
  padding: 5px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 400;
  z-index: 12;
  transition: transform 0.2s ease;
}

.nav-item {
  margin-left: 5rem;
}

.nav-link {
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  padding: 5px;
  font-size: 17px;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.nav-link:hover {
  transform: translateY(8px);
  transition: 0.2s;
}

.nav-logo {
  font-size: 2.1rem;
  font-weight: 500;
  color: #482ff7;
}

.nav-logo img {
  width: 170px;
  transition: 0.2s;
  margin-top: 2%;
  margin-left: 5%;
}


.infocontent {
  width: 100%;
  padding: 30px 0;
}

.icontent {
  width: 50%;
  margin: auto;
  padding: 40px;
  text-align: left;
  background-color: #fff;
  border-radius: 10px;
}

.list {
  width: 100%;
  margin: auto;
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: left;
  border-radius: 10px;
}

.icontent h2 {
  color: #070607cc;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.icontent p {
  text-align: left;
  color: #333;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 20px;
}

.icontent ul {
  list-style-type: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.icontent ul li {
  font-weight: 500;
  line-height: 1.6;
  color: #070607cc;
  margin-bottom: 10px;
  text-align: left;
  border-bottom: 1px solid #333;
}

#uthyrning {
  color: #9F4561;
  font-weight: 500;
}

.icontent p strong {
  font-weight: 500;
  color: #9F4561;
}

.hero-btn {
  display: inline-block;
  text-decoration: none;
  background: #9F4561;
  border: 1px solid #9F4561;
  color: #fff;
  padding: 12px 34px;
  margin-top: 20px;
  font-size: 1rem;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 300ms ease-in-out;
  border-radius: 5px;
}

.hero-btn:hover {
  color: #fff;
  background: #7b324a;
  box-shadow: 0 0 20px rgba(15, 22, 38, 0.4);
  letter-spacing: 3px;
}

.hero-btn:visited {
  color: #fff;
}



.foodmenu {
  width: 100%;
  text-align: center;
  margin: auto;
  color: #000;
  padding-top: 5%;
  margin-bottom: 2%;
  background-color: rgba(245, 245, 220, 1);
  background-size: cover;
  background-repeat: no-repeat;
}

#menyer {
  padding-top: 5%;
  padding-bottom: 10%;
  font-weight: 300;
  color: #fff;
  font-size: 2rem;
}

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

#pizzamenues ul {
  text-align: center;
  list-style: none;
  line-height: 38px;
}

#pizzamenues li {
  padding-bottom: 5%;
  border-top: 1px solid #fff;
  text-align: left;
  padding-left: 10%;
  font-weight: 300;
}

#pizzamenues h3 {
  text-align: center;
  color: #fff;
  font-weight: 300;
  padding-bottom: 5%;
  text-decoration: underline;
  text-underline-offset: 5px;
  font-size: 1.5em;
}

.meny {
  font-size: large;
  font-weight: 500;
}

#kebabp {
  padding-top: 15%;
  padding-bottom: 5%;
  font-weight: 300;
  font-size: 1.5em;
  text-decoration: underline;
  text-underline-offset: 5px;
  color: #fff;
}

@media (max-width: 768px) {
  body #kebabp {
    padding-top: 25%;
    padding-bottom: 10%;
    font-weight: 300;
    font-size: 1.5em;
    text-decoration: underline;
    text-underline-offset: 5px;
    color: #fff;
  }

  body #menyer {
    padding-top: 25%;
    padding-bottom: 20%;
    font-weight: 300;
    color: #fff;
    font-size: 2rem;
  }
}

.grillmeny {
  background-image: linear-gradient(rgba(4, 9, 30, 0.8), rgba(4, 9, 30, 0.8)), url(/images/burger.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
}

.pizzameny {
  background-image: linear-gradient(rgba(4, 9, 30, 0.8), rgba(4, 9, 30, 0.8)), url(/images/pizza.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-bottom: 1px solid #fff;
  color: #fff;
}

#extra {
  margin-bottom: 5%;
}

.row {
  margin-top: 4%;
  display: flex;
  justify-content: space-evenly;
}

.hours {
  flex-basis: 40%;
  border-radius: 5px;
  margin-bottom: 5%;
  padding: 20px 12px;
  box-sizing: border-box;
  transition: 0.5s;
}

.hours h2 {
  margin-bottom: 15px;
}

.hours a {
  color: #333;
  text-decoration: underline;
  text-underline-offset: 5px;
  transition: 0.2s;
}

.hours a:hover {
  color: #9F4561;
  letter-spacing: 0.5px;
  transition: 0.2s;
}

/* Parent container */
.info-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  /* Adds some space between the elements */
  margin: 20px 0;
}

/* Shared styles for both sections */
.opening-hours-container,
.ctinfo {
  flex: 1;
  /* Allows both boxes to share space equally */
  min-width: 280px;
  /* Minimum width before wrapping */
  text-align: center;
  /*background-color: #f9f9f9;*/
  padding: 20px;
  border-radius: 8px;
  /*box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);*/
}

/* Styles for contact information specifically */
.ctinfo h2 {
  color: #333;
  font-weight: 300;
  font-size: 22px;
}

.ctinfo a,
.ctinfo p {
  color: #333;
}

.ctinfo a {
  color: #666;
  text-decoration: none;
}

.ctinfo a:hover {
  text-decoration: underline;
}

.ctinfo i {
  margin-right: 5px;
}

#openh {
  color: #000;
  padding-top: 7%;
  padding-bottom: 5%;
  font-weight: 300;
  font-size: 22px;
}

.obs {
  text-align: center;
  margin: 3%;
}

/*----Footer----*/
.footer-basic {
  padding: 40px 0;
  background: #fff;
  color: #000;
}

.footer-basic h3 {
  text-align: center;
}

.footer-basic ul {
  padding: 0;
  list-style: none;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-basic li {
  padding: 0 10px;
  display: inline-table;

}

.footer-basic ul a {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
  margin-top: 15px;
}

.footer-basic ul a:hover {
  opacity: 1;
}

.footer-basic .social {
  color: #FF6700;
  text-align: center;
  padding-bottom: 25px;
}

.footer-basic .social>a {
  font-size: 24px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #ccc;
  margin: 0 8px;
  color: inherit;
  opacity: 0.75;
}

.footer-basic .social>a:hover {
  opacity: 0.9;
}

.footer-basic .copyright {
  margin-top: 15px;
  text-align: center;
  width: 90%;
  padding-left: 10%;
  font-size: 13px;
  color: #666;
  margin-bottom: 0;
  letter-spacing: 1px;
}

.usrname {
  text-align: center;
  padding-right: 10px;
  border-radius: 100%;
  display: inline-block;
  color: var(--white);
  font-size: 14px;
  font-weight: 300;

}

.name-logout {
  display: inline-block;
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  font-style: italic;
}

.logout-button {
  background-color: #92d050;
  color: #fff;
  border: none;
  padding: 10px 13px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 12px;
  transition: background-color 0.3s ease;
}

.logout-button:hover {
  background-color: #76bd3a;
}

.date-class {
  margin-bottom: 3px;
  font-size: 18px;
}

.delete-button {
  background-color: #e74c3c;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px 12px;
  margin-top: 2%;
  font-size: 14px;
  cursor: pointer;
}

.delete-button:hover {
  background-color: #c0392b;
}

.update-button {
  background-color: #92d050;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.update-button:hover {
  background-color: #76bd3a;
}

/*Startsidans lunchmeny och form*/
#lunchform {
  min-width: 350px;
  text-align: center;
  width: 80%;
  margin: 0 auto;
  background-color: rgba(245, 245, 220, 1);
  padding: 20px;
  margin-bottom: 10px;
  margin-top: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btns {
  display: block;
}

#menuform {
  min-width: 350px;
  text-align: center;
  width: 80%;
  margin: 0 auto;
  background-color: rgba(245, 245, 220, 1);
  padding: 20px;
  margin-bottom: 10px;
  margin-top: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#kebabform {
  min-width: 350px;
  text-align: center;
  width: 80%;
  margin: 0 auto;
  background-color: rgba(245, 245, 220, 1);
  padding: 20px;
  margin-bottom: 10px;
  margin-top: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#submit {
  background-color: #92d050;
  display: block;
  color: #fff;
  text-align: center;
  border: none;
  padding: 10px 20px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

#submit:hover {
  background-color: #76bd3a;
}

#lunchform-header {
  font-weight: 300;
}

#lunch-list-h2 {
  text-align: center;
  font-weight: 300;
  margin-top: 3%;
  margin-bottom: 5%;
}

.field-style {
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 3px;
  width: 100%;
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

.align-none {
  margin-bottom: 20px;
}

.container-container {
  width: 100%;
  background-color: rgba(245, 245, 220, 1);
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.product-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  padding: 20px;
  position: relative;
  z-index: 5;
  text-align: center;
}

.opening-hours-container {
  text-align: center;
  /*background-color: #f9f9f9;*/
  padding: 20px;
  border-radius: 8px;
  /*box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);*/
  margin: 20px;
}

.opening-hours-title {
  color: #333;
  margin-bottom: 15px;
  font-weight: 300;
  font-size: 22px;
}

.opening-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #666;
}

.opening-hours-list li {
  padding: 5px 0;
}

.opening-hours-list li strong {
  color: #000;
  /* Red color for 'Stängt' */
}


@media(max-width: 768px) {

  body .opening-hours-container {
    padding: 15px;
  }



  body .opening-hours-list li {
    font-size: 16px;
  }

  body .info-container {
    flex-direction: column;
    align-items: center;
    /* Centers items vertically when stacked */
  }

  /* Responsive adjustments */

  body .ctinfo p {
    font-size: 16px;
  }

  body .icontent {
    width: 100%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
    text-align: left;
  }

  body .list {
    width: 100%;

    padding-top: 40px;
    padding-bottom: 40px;
    text-align: left;


    border-radius: 10px;
  }

  body .nav-menu {
    position: fixed;
    left: -100%;
    top: 5rem;
    flex-direction: column;
    padding: 20px;
    background-color: #fff;
    width: 100%;
    height: 100%;
    border-top: 1px solid gray;
    text-align: center;
    transition: 0.3s;
    box-shadow:
      0 10px 27px rgba(0, 0, 0, 0.05);
  }

  body .nav-menu li a {
    display: inline-block;
    color: #000;
  }

  body .nav-logo img {
    width: 150px;
    transition: 0.2s;
    margin-top: 2%;
  }

  body .nav-menu.active {
    left: 0;
  }

  body .nav-item {
    margin: 2rem 0;
    border-bottom: 1px solid gray;
    padding-bottom: 1%;
    box-sizing: border-box;
    width: 110%;
  }

  body .hamburger {
    display: block;
    cursor: pointer;
  }

  body .hamburger span {
    background-color: #fff;
  }

  body .hamburger.active span {
    transform: translateY(50px);
  }

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

  body .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  body .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  body .headertxt2 {
    text-align: center;
  }

  body #pizzamenues li {
    padding-bottom: 5%;
    padding-top: 5%;
  }

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

  body .hours {
    width: 90%;
    /* Adjust the width as needed for mobile */
    margin-bottom: 20px;
    /* Adds more space between the hour blocks */
  }

  body .hourcolor {
    background-color: #cacaca;
  }

  body .headertxt h1 {
    padding-top: 20vh;
    font-weight: 800;
    font-size: 2.5rem;
    margin-left: 20px;
    margin-right: 20px;
    color: #fff;
    line-height: 1em;
  }

  body .headertxt h2 {
    color: #fff;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 1.2rem;
  }

  /*reservera sidans txt */
  body .headerrestxt {
    text-align: center;
  }

  body .headerrestxt h1 {
    padding-top: 20vh;
    font-weight: 800;
    font-size: 2.5rem;
    margin-left: 20px;
    margin-right: 20px;
    color: #fff;
    line-height: 1em;
  }

  body .headerrestxt h2 {
    color: #fff;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 1.2rem;
  }

  #h2wel {
    text-align: center;
    color: #FFFF00;
    font-size: 2.5em;
    font-weight: 500;
    font-style: italic;
  }

  #h2wel1 {
    text-align: center;
    color: #FFFF00;
    font-size: 3.5em;
    font-weight: 500;
  }

  body #lunchform {
    max-width: 300px;
    width: 60%;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    margin-bottom: 10px;
    margin-top: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
}

@media only screen and (min-width: 769px) and (max-width: 1280px) {
  body .icontent {
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
    text-align: center;
  }

  body .headertxt h1 {
    padding-top: 20vh;
    font-weight: 800;
    margin-left: 20px;
    margin-right: 20px;
    color: #fff;
    line-height: 1em;
  }

  body .headertxt h2 {
    color: #fff;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 1.3rem;
  }

  /*reservera sidans txt */
  body .headerrestxt h1 {
    padding-top: 20vh;
    font-weight: 800;
    margin-left: 20px;
    margin-right: 20px;
    color: #fff;
    line-height: 1em;
  }

  body .headerrestxt h2 {
    color: #fff;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 1.3rem;
  }

  .name-logout {
    display: flex;
    align-items: center;
    margin-right: auto;

  }
}

/* Overlay */
.popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Content box */
.popup-content {
  background: #ffffff;
  max-width: 520px;
  width: 100%;
  border-radius: 16px;
  padding: 30px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  animation: popupIn 0.35s ease;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Heading */
.popup-content h2 {
  margin: 0 0 10px;
  text-align: center;
  color: #9F4561;
  font-size: 1.6rem;
}

/* Intro text */
.popup-lead {
  text-align: center;
  font-size: 1rem;
  color: #444;
  margin-bottom: 25px;
}

/* Contact section */
.popup-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Contact buttons */
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  background: #f7f3f9;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.contact-item i {
  color: #9F4561;
  font-size: 1.2rem;
}

.contact-item:hover {
  background: #9F4561;
  color: #fff;
}

.contact-item:hover i {
  color: #fff;
}

/* Close button */
.popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #666;
}

.popup-close:hover {
  color: #9F4561;
}

/* Animation */
@keyframes popupIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .popup-content {
    padding: 22px;
  }

  .popup-content h2 {
    font-size: 1.4rem;
  }
}

/* Top announcement bar */
.top-bar {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #9F4561, #c01249);
  color: #fff;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* Content */
.top-bar p {
  margin: 0;
  padding: 12px 16px;
  text-align: center;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Divider dot */
.top-bar .divider {
  opacity: 0.7;
}

/* Link */
.top-bar a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid rgba(255,255,255,0.7);
  transition: all 0.2s ease;
}

.top-bar a:hover {
  border-bottom-color: #fff;
  opacity: 0.9;
}


/* Mobile */
@media (max-width: 600px) {
  .top-bar p {
    font-size: 0.9rem;
    gap: 6px;
  }
}