@font-face {
  font-family: 'Massilia';
  src: url('fonts/fonnts.com-Massilia-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Massilia';
  src: url('fonts/fonnts.com-Massilia_Light_Oblique.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Massilia';
  src: url('fonts/fonnts.com-Massilia_Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Massilia';
  src: url('fonts/fonnts.com-Massilia_Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Massilia';
  src: url('fonts/fonnts.com-Massilia_Medium_Oblique.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'Massilia';
  src: url('fonts/fonnts.com-Massilia_Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Massilia';
  src: url('fonts/fonnts.com-Massilia_Bold_Oblique.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'Massilia';
  src: url('fonts/fonnts.com-Massilia_Extra_Bold_Oblique.otf') format('opentype');
  font-weight: 800;
  font-style: italic;
}

@font-face {
  font-family: 'Massilia';
  src: url('fonts/fonnts.com-Massilia_Extra_Bold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Massilia';
  src: url('fonts/fonnts.com-Massilia_Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Massilia';
  src: url('fonts/fonnts.com-Massilia_Black_Oblique.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
}

@font-face {
  font-family: 'Massilia';
  src: url('fonts/fonnts.com-Massilia_Oblique.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}







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

body {
  font-family: 'Massilia', 'Segoe UI', Arial, sans-serif;
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FFF1BF;
  padding: 15px 40px;
  width: 100%;
  height: 102px;
  box-sizing: border-box;
}

.logo-img {
  height: 55px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 42px;
}

.main-nav a {
  text-decoration: none;
  color: #234C1F;
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 4px;
}

.main-nav a.active {
  color: #000;
  border-bottom: 2px solid #000;
}

.main-nav a:hover {
  color: #000;
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  height: 455px;
  background-image: url('images/hero-bg.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65); 
}

.hero-title {
  position: relative;
  z-index: 2;
  color: #FFF9E5;
  font-size: 72px;
  font-weight: 800;
  text-align: center;
  padding-left: 0; 
}


/* Feature rows */
.feature-row {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1240px;
  height: auto;
  min-height: 413px;
  margin: 60px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.feature-row.reverse .feature-card {
  order: 1;
  margin-left: -60px;
  margin-right: 0;
  min-height: 201.7px;
}

.feature-row.reverse .feature-image {
  order: 2;
}

.feature-image {
  flex-shrink: 0;
  flex-basis: 663px;
  z-index: 1;
  position: relative;
}


.feature-image img {
  width: 100%;
  max-width: 663px;
  height: 388px;
  object-fit: cover;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  display: block;
}

.feature-image::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 30px;
  background: rgba(0, 0, 0, 0.60);
  filter: blur(20px);
  border-radius: 50%;
  z-index: -1;
}

.feature-card {
  flex-shrink: 0;
  flex-basis: 672px;
  width: 100%;
  max-width: 672px;
  min-height: 350px;
  background-color: #FFF9E5;
  border-radius: 16px;
  padding: 5px 35px 35px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-left: -60px;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  box-sizing: border-box;
}

.feature-row.reverse .feature-card {
  margin-left: 0;
  margin-right: -60px;
  min-height: 201.7px; 
}


.feature-card h3 {
  color: #EA3B52;
  font-size: 32px;
  font-weight: 900;
  line-height: 100%;
}

.feature-card hr {
  border: none;
  border-top: 1px solid #A6BE8F;
  width: 100%;
}

.feature-card p {
  color: #EA3B52;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
}





/* Core Values */
.core-values {
  position: relative;
  width: 100%;
  margin-top: 80px;
}

.core-values-label {
  position: relative;
  z-index: 3;
  width: 380px;
  height: 93px;
  margin: 0 auto;
  background-color: #FFF9E5;
  border-top-left-radius: 45px;
  border-top-right-radius: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.core-values-label span {
  color: #EA3B52;
  font-weight: 900;
  font-size: 32px;
}

.value-row {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 13 / 3;
  overflow: hidden;
}

.value-row img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.value-row::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.35); 
  z-index: 1;
}

.value-row::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0) 100%);
  z-index: 1;
}

.value-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 60px;
  box-sizing: border-box;
  z-index: 2;
}

.value-overlay {
  max-width: 520px;
  color: #fff;
  flex-shrink: 0;
}

.value-overlay.pos-left {
  margin-right: auto;
}

.value-overlay.pos-right {
  margin-left: auto;
}

.value-overlay.pos-center-right {
  margin-left: auto;
  margin-right: 0;
}

.value-overlay h3 {
  color: #FFFFFF;
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 10px;
}

.value-overlay p {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
}

.value-overlay p strong {
  color: #FFFFFF;
  font-weight: 900;
}



.visit-us {
  text-align: center;
  margin: 100px auto 160px;
  max-width: 1133px;
  padding: 0 20px;
}

.visit-heading {
  color: #EA3B52;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 30px;
}

.visit-container {
  position: relative;
  width: 100%;
  max-width: 1133px;
  margin: 0 auto;
}

.visit-container img {
  width: 100%;
  height: 505px;
  object-fit: cover;
  border-radius: 0 40px 0 40px; 
  display: block;
}

.visit-box {
  position: absolute;
  bottom: -60px; 
  left: 50%;
  transform: translateX(-50%);
  width: 672px;
  max-width: 90%;
  min-height: 186px;
  background-color: #FFF9E5;
  border-radius: 16px;
  padding: 35px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.visit-box p {
  color: #EA3B52;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  margin: 0;
}





/* Footer */
.site-footer {
  width: 100%;
  min-height: 100px;
  background-color: #FFF1BF;
  padding: 60px 80px 30px;
  box-sizing: border-box;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-col h4 {
  color: #EA3B52;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: #EA3B52;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-col p {
  color: #e63950;
  font-size: 14px;
  margin-bottom: 12px;
}

.footer-col p strong {
  font-weight: 700;
}

/* Store location maps */
.footer-maps {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.map-label {
  color: #e63950;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}

.map-thumb {
  position: relative;
  width: 152.09px;
  height: 133.38px;
  border-radius: 18.77px;
  overflow: hidden;
}

.map-thumb iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.map-tag {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: #fff;
  color: #333;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
}

.follow-heading {
  margin-top: 10px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 32px;
  height: 32px;
  background-color: #e63950;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 900;
}

/* Divider & copyright */
.footer-divider {
  border: none;
  border-top: 1px solid rgba(230, 57, 80, 0.25);
  max-width: 1280px;
  margin: 20px auto 20px;
}

.footer-copyright {
  text-align: center;
  color: #EA3B52;
  font-size: 16px;
  font-weight: 400;
}






/* Coming Soon */
.coming-soon {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
}

.coming-soon-content {
  max-width: 560px;
}

.coming-soon-icon {
  display: inline-flex;
  width: 80px;
  height: 80px;
  align-items: center;
  justify-content: center;
  background-color: #FFF1BF;
  border-radius: 50%;
  font-size: 32px;
  color: #EA3B52;
  margin-bottom: 24px;
}

.coming-soon-content h1 {
  color: #EA3B52;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.3;
}

.coming-soon-content p {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.back-home-btn {
  display: inline-block;
  background-color: #EA3B52;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 30px;
  transition: background-color 0.2s ease;
}

.back-home-btn:hover {
  background-color: #c72e42;
}





/* ============================
   RESPONSIVE — TABLET (≤820px)
   ============================ */

   @media (max-width: 820px) {

  /* Header */
  .site-header {
    height: auto;
    flex-direction: column;
    gap: 12px;
    padding: 14px 20px;
  }

  .logo-img {
    height: 38px;
  }

  .main-nav ul {
    gap: 20px;
  }

  .main-nav a {
    font-size: 13px;
  }

  /* Hero */
  .hero {
    height: 260px;
  }

  .hero-title {
    font-size: 32px;
    padding: 0 20px;
  }

  /* Feature rows — History & Mission, made consistent + smaller */
.feature-row,
.feature-row.reverse {
  flex-direction: column;
  min-height: auto;
  margin: 40px auto;
  padding: 0 20px;
}

.feature-row .feature-image,
.feature-row.reverse .feature-image {
  order: 1;
  flex-basis: auto;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.feature-row .feature-image img,
.feature-row.reverse .feature-image img {
  max-width: 100%;
  width: 100%;
  height: 300px;
  display: block;
}

.feature-row .feature-image::after,
.feature-row.reverse .feature-image::after {
  display: none; 
}

.feature-row .feature-card,
.feature-row.reverse .feature-card {
  order: 2;
  flex-basis: auto;
  max-width:450px;
  width: 100%;
  margin: -20px auto 0;
  min-height: auto;
  padding: 20px;
  gap: 10px;
}

.feature-image {
  flex-basis: auto;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}


.feature-card {
  flex-basis: auto;
  max-width: 300px;
  margin: -100px auto 0;
  min-height: auto;
  gap: 10px;
}

.feature-card h3 {
  font-size: 18px;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.4;
}

  /* Core Values */
  .core-values-label {
    width: 220px;
    height: 60px;
  }

  .core-values-label span {
    font-size: 18px;
  }

  .value-row {
    height: 300px;
  }

  .value-content {
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    text-align: center;
  }

.value-overlay {
  max-width: 380px; 
  margin-left: auto !important;
  margin-right: auto !important;
}

  .value-overlay h3 {
    font-size: 24px;
  }

.value-overlay p {
  font-size: 16px;
  line-height: 1.4;
}

  /* Visit Us */
.visit-us {
  margin: 40px auto;
  padding: 0 20px;
  max-width: 500px;
}

.visit-heading {
  font-size: 18px;
}

.visit-container {
  max-width: 500px;
  margin: 0 auto;
}

.visit-container img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.visit-box {
  position: relative;
  max-width: 400px;
  width: 100%;
  margin: -20px auto 0;
  padding: 16px 20px;
  min-height: auto; 
  bottom: auto;
  left: auto;
  transform: none;
}

.visit-box p {
  font-size: 14px;
  line-height: 1.4;
}

  /* Footer */
  .site-footer {
    padding: 36px 24px 20px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer-col h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .footer-col a,
  .footer-col p {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .footer-maps {
    justify-content: center;
    flex-wrap: wrap;
  }

  .map-thumb {
    width: 100px;
    height: 90px;
  }

  .map-label {
    font-size: 13px;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-copyright {
    font-size: 12px;
  }

  /* Coming Soon */
  .coming-soon-content h1 {
    font-size: 22px;
  }

  .coming-soon-content p {
    font-size: 14px;
  }
}



@media (max-width: 1360px) and (min-width: 821px) {

  /* Header */
  .site-header {
    height: auto;
    flex-direction: column;
    gap: 12px;
    padding: 14px 20px;
  }

  .logo-img {
    height: 38px;
  }

  .main-nav ul {
    gap: 20px;
  }

  .main-nav a {
    font-size: 13px;
  }

  /* Hero */
  .hero {
    height: 260px;
  }

  .hero-title {
    font-size: 32px;
    padding: 0 20px;
  }

  /* Feature rows — History & Mission, made consistent + smaller */
.feature-row,
.feature-row.reverse {
  flex-direction: column;
  min-height: auto;
  margin: 40px auto;
  padding: 0 20px;
}

.feature-row .feature-image,
.feature-row.reverse .feature-image {
  order: 1;
  flex-basis: auto;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.feature-row .feature-image img,
.feature-row.reverse .feature-image img {
  max-width: 100%;
  width: 100%;
  height: 300px;
  display: block;
}

.feature-row .feature-image::after,
.feature-row.reverse .feature-image::after {
  display: none; 
}

.feature-row .feature-card,
.feature-row.reverse .feature-card {
  order: 2;
  flex-basis: auto;
  max-width:450px;
  width: 100%;
  margin: -20px auto 0;
  min-height: auto;
  padding: 20px;
  gap: 10px;
}

.feature-image {
  flex-basis: auto;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}


.feature-card {
  flex-basis: auto;
  max-width: 300px;
  margin: -100px auto 0;
  min-height: auto;
  gap: 10px;
}

.feature-card h3 {
  font-size: 18px;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.4;
}

  /* Core Values */
  .core-values-label {
    width: 220px;
    height: 60px;
  }

  .core-values-label span {
    font-size: 18px;
  }

  .value-row {
    height: 300px;
  }

  .value-content {
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    text-align: center;
  }

.value-overlay {
  max-width: 380px; 
  margin-left: auto !important;
  margin-right: auto !important;
}

  .value-overlay h3 {
    font-size: 24px;
  }

.value-overlay p {
  font-size: 16px;
  line-height: 1.4;
}

  /* Visit Us */
.visit-us {
  margin: 40px auto;
  padding: 0 20px;
  max-width: 500px;
}

.visit-heading {
  font-size: 18px;
}

.visit-container {
  max-width: 500px;
  margin: 0 auto;
}

.visit-container img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.visit-box {
  position: relative;
  max-width: 400px;
  width: 100%;
  margin: -20px auto 0;
  padding: 16px 20px;
  min-height: auto; 
  bottom: auto;
  left: auto;
  transform: none;
}

.visit-box p {
  font-size: 14px;
  line-height: 1.4;
}

  /* Footer */
  .site-footer {
    padding: 36px 24px 20px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer-col h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .footer-col a,
  .footer-col p {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .footer-maps {
    justify-content: center;
    flex-wrap: wrap;
  }

  .map-thumb {
    width: 100px;
    height: 90px;
  }

  .map-label {
    font-size: 13px;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-copyright {
    font-size: 12px;
  }

  /* Coming Soon */
  .coming-soon-content h1 {
    font-size: 22px;
  }

  .coming-soon-content p {
    font-size: 14px;
  }
}


/* ============================
   RESPONSIVE — MOBILE (≤480px)
   ============================ */
@media (max-width: 480px) {

  /* Header */
  .site-header {
    padding: 12px 16px;
    gap: 10px;
  }

  .logo-img {
    height: 32px;
  }

  .main-nav ul {
    gap: 16px;
  }

  .main-nav a {
    font-size: 12px;
  }

  /* Hero */
  .hero {
    height: 200px;
  }

  .hero-title {
    font-size: 24px;
    padding: 0 16px;
  }

  /* Feature rows — same consolidated pattern as tablet, smaller */
  .feature-row,
  .feature-row.reverse {
    flex-direction: column;
    min-height: auto;
    margin: 30px auto;
    padding: 0 16px;
  }

  .feature-row .feature-image,
  .feature-row.reverse .feature-image {
    order: 1;
    flex-basis: auto;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
  }

  .feature-row .feature-image img,
  .feature-row.reverse .feature-image img {
    max-width: 100%;
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
  }

  .feature-row .feature-image::after,
  .feature-row.reverse .feature-image::after {
    display: none;
  }

  .feature-row .feature-card,
  .feature-row.reverse .feature-card {
    order: 2;
    flex-basis: auto;
    max-width: 100%;
    width: 100%;
    margin: -15px auto 0;
    min-height: auto;
    padding: 16px;
    gap: 8px;
  }

  .feature-card h3 {
    font-size: 12px;
  }

  .feature-card p {
    font-size: 10px;
    line-height: 1.4;
  }



  /* Core Values */
  .core-values-label {
    width: 120px;
    height: 40px;
  }

  .core-values-label span {
    font-size: 12px;
  }

  .value-row {
    height: 260px;
  }

  .value-content {
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    text-align: center;
  }

  .value-overlay {
    max-width: 280px;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .value-overlay h3 {
    font-size: 18px;
  }

  .value-overlay p {
    font-size: 12px;
    line-height: 1.4;
  }

  /* Visit Us — same consolidated pattern, smaller */
  .visit-us {
    margin: 30px auto;
    padding: 0 16px;
    max-width: 100%;
  }

  .visit-heading {
    font-size: 12px;
  }

  .visit-container {
    max-width: 100%;
    margin: 0 auto;
  }

  .visit-container img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
  }

  .visit-box {
    position: relative;
    max-width: 100%;
    width: 100%;
    margin: -15px auto 0;
    padding: 14px 16px;
    min-height: auto;
    bottom: auto;
    left: auto;
    transform: none;
  }

  .visit-box p {
    font-size: 10px;
    line-height: 1.4;
  }

  /* Footer */
  .site-footer {
    padding: 30px 16px 16px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .footer-col h4 {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .footer-col a,
  .footer-col p {
    font-size: 10px;
    margin-bottom: 6px;
  }

  .footer-maps {
    align-items: center;
    gap: 16px;
  }

  .map-thumb {
    width: 120px;
    height: 100px;
  }

  .map-label {
    font-size: 10px;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-copyright {
    font-size: 11px;
  }

  /* Coming Soon */
  .coming-soon-content h1 {
    font-size: 20px;
  }

  .coming-soon-content p {
    font-size: 13px;
  }

  .back-home-btn {
    font-size: 13px;
    padding: 12px 24px;
  }
}




/* Maintenance Mode */
body.maintenance-active {
  pointer-events: none;
  user-select: none;
}

body.maintenance-active > *:not(.maintenance-banner) {
  filter: blur(10px);
}

.maintenance-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  pointer-events: auto;
  background-color: #EA3B52;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.maintenance-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
  color: #fff;
}

.maintenance-banner-content i {
  font-size: 20px;
}

.maintenance-banner-content p {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}



/* Admin return link — only visible to logged-in admins on public pages */
.admin-return-link {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #20232A;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 30px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  transition: background-color 0.15s ease, transform 0.15s ease;
}

.admin-return-link:hover {
  background-color: #EA3B52;
  transform: translateY(-2px);
}