
h1, h2 {
  color: #0078D7;
}

h1 {
  font-size: 28px;
  margin-bottom: 10px;
}
h2 {
  font-size: 20px;
  margin-top: 30px;
}

p {
  line-height: 1.6;
  margin: 12px 0;
}
     
h3 {
  color:  #0078D7;
  font-size: 20px;
  font-weight: 18px;
}

/* Sticky header */
.fixed-custom {
  position: sticky;
  top: 0;
  left: 0;   
  width: 100%;
  z-index: 9998;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(4px);
  margin: 0;           /* remove any default margins */
  padding: 0;          /* remove extra padding */
}

.navbar-collapse
{
color:white;
z-index: 9999;

}

.nav-link{
  color:white;
  font-weight: bold;
}

.container {
  max-width: 1920px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 40px;
  margin-left: auto;
  padding: 5px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.carousel {
  overflow: hidden; /* prevent scrollbar flicker */
}
.carousel-inner img {
  height: 800px;       /* adjust to desired height */
  object-fit: cover;   /* crop instead of squish */
}

/* Medium screens (tablets) */
@media (max-width: 992px) {
  .carousel-inner img {
    height: 350px;
  }
}

/* Small screens (phones) */
@media (max-width: 576px) {
  .carousel-inner img {
    height: 250px;
  }
  .overlay-content h1 {
    font-size: 1.2rem;    /* scale down overlay text */
  }
  .overlay-content .btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
}

.overlay-content {
  width: 100%;
  height: 100vh;
}

/* Headline styling */
.overlay-content h1 {
  font-size: clamp(1.8rem, 5vw, 4rem); 
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

/* Paragraph styling */
.overlay-content p {
  color: #f0f0f0;
  font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  margin-top: 0.5rem;
}

 .modern-btn {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 114, 255, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modern-btn:hover {
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  box-shadow: 0 6px 16px rgba(0, 114, 255, 0.4);
  transform: translateY(-2px);
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .overlay-content {
    padding: 1rem;
    width: 95%;
  }

  .overlay-content h1 {
    font-size: 2rem;
  }

  .overlay-content p {
    font-size: 1rem;
  }
}


.info-section {
  background-color:#e8edf3;
  border-left: 5px solid #0078D7;
  padding: 20px;
  margin: 30px 0;
  border-radius: 6px;
  text-align:center;
}


.info-section h2 {
  color: #0078D7;
  text-align:center;
}


.benefits-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  padding: 30px;
  background-color: #f6fbf9;
  color:  #0078D7;  
}

.benefit {
  flex: 1 1 250px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}

.benefit:hover {
  transform: translateY(-5px);
}

.benefit h3 {
  color:  #0078D7;
  margin-top: 0;
}


.visa-section {
  background: #eef6fb;
  padding: 40px 20px;
}

.visa-section h2 {
  text-align: center;
  color: #204e6d;
  margin-bottom: 30px;
}

.visa-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1800px;
  margin: auto;
}

.visa-card {
  flex: 1 1 280px;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

.visa-card:hover {
  transform: translateY(-5px);
}

.visa-card h3 {
  margin-top: 0;
  color: #0078D7;
}

@media (max-width: 768px) {
  .visa-columns {
    flex-direction: column;
    align-items: center;
  }
}

/* SECTION BASE */
.advice-section {
  background-color: #fefefe;
  padding: 50px 20px;
}

/* HEADER */
.advice-section h2 {
  text-align: center;
  font-size: 24px;
  color:  #0078D7;
  margin-bottom: 40px;
}

/* FLEX CONTAINER */
.advice-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1800px;
  margin: 0 auto;
}

/* INDIVIDUAL CARDS */
.advice-card {
  flex: 1 1 250px;
  max-width: 350px;
  background-color: #e8edf3;
  border-left: 5px solid  #0078D7;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.advice-card:hover {
  transform: translateY(-5px);
}

.advice-card h3 {
  margin-top: 0;
  color:  #0078D7;
  font-size: 1.2rem;
}

.advice-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

/* RESPONSIVE TWEAKS */
@media (max-width: 768px) {
  .advice-card {
    flex: 1 1 100%;
    max-width: 90%;
  }

  .advice-section h2 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .advice-section {
    padding: 30px 15px;
  }

  .advice-card p {
    font-size: 0.9rem;
  }
}

.cancellationcontainer{
  max-width: 800px;
  margin: 10px auto;
}
.tabs {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.tab {
    margin-bottom: 20px;
}
.tab h3 {
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

.tab-button {
  padding: 10px 20px;
  cursor: pointer;
  border: 1px solid #ccc;
  background: #f9f9f9;
  margin-right: 5px;
  border-radius: 8px;
}
.tab-button.active {
  background: #007BFF;
  color: white;
  border-color: #007BFF;
}
.tab-content {
  border: 1px solid #ccc;
  padding: 15px;
}


.tour-info-section {
  display: flex;
  padding: 40px 20px;
  margin: 30px 0;
  text-align:center;
  display: inline-block;
  color: #204e6d;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
}

.tour-section img{
height: auto;
width: 100%;
object-fit: cover;
}

.list-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
.list-item {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Ensures everything aligns to the left */
  margin-bottom: 15px;
  font-size: 1.1em;
}

.list-item i {
  margin-right: 2px;
  font-size: 1.3em;
  color: #c0392b; /* Optional: adds a rich accent */
  min-width: 24px;
  text-align: center;
}

.about-section {
  padding: 60px 20px;
  background: linear-gradient(to right, #e6f2ff, #f0f8ff);
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.about-section h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.about-section p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.highlight {
  font-weight: 600;
  color: #007bff;
}
.list-group-item i {
  margin-right: 2px;
  font-size: 1.3em;
  color: #c0392b; /* Optional: adds a rich accent */
  min-width: 24px;
  text-align: center;
}


.tab-nav {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 2px solid #ccc;
}

.tab-nav li {
  padding: 10px 20px;
  cursor: pointer;
  border: 1px solid #ccc;
  border-bottom: none;
  margin-right: 5px;
  background-color: #f9f9f9;
  transition: background-color 0.3s;
}

.tab-nav li.active {
  background-color: #fff;
  font-weight: bold;
  border-top: 2px solid #0078D7;
  border-left: 2px solid #0078D7;
  border-right: 2px solid #0078D7;
}

.tab-panel {
  display: none;
  padding: 15px;
  border: 2px solid #ccc;
  background-color: #fff;
}

.tab-panel.active {
  display: block;
}

.tab-content.active {
  display: block;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 600;
}

.product .card-title {
  font-size: 2rem;
  font-weight: 600;
}


.card-text {
  font-size: 0.95rem;
  color:  #0078D7;
}


.map-wrapper {
  width: 100%;
  overflow: visible;
}
  #map {
    height: 400px;
    width: 100%;
    margin-top: 20px;
  }

  @media (max-width: 600px) {
    #map {
      height: 300px; /* Slightly smaller for mobile */
    }
  }
  .highlight {
    font-weight: 600;
    color:  #0078D7;
  }
 table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 16px;
    }
    th, td {
      padding: 12px;
      border: 1px solid #ddd;
      text-align: left;
    }
    th {
      background-color: #eef6f4;
    }
.note {
      font-size: 14px;
      color: #666;
      margin-top: 20px;
    }
    .contact {
      background: #f1f1f1;
      padding: 12px;
      border-radius: 8px;
      margin-top: 20px;
    }

    .termscontainer {
      max-width: 800px;
      margin: 0 auto;
      padding: 10px 20px;
      background: #fff;
    }
  
  .post{
    text-align:center;
  }


.experiences-section h2{
  color:  #0078D7;
  font-size: 30px;
  font-weight: 18px;
}

  .poster-container {
      background-color: white;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      padding: 2rem;
      margin-top: 1rem;
    }

    .poster-container h2 {
      font-size: 2.5rem;
      font-weight: bold;
      text-transform: uppercase;
      color: #0056b3;
    }

/* Reset and base styles */
html, body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  background-color: #f9f9f9;
  scroll-behavior: smooth;
  overflow-x: hidden; /* prevent horizontal scroll */
 
}

 .hero-section {
    position: relative;
    width: 100%;
    height: 70vh;
    font-family: 'Georgia', serif;
  }

  .hero-video,
  .video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center;
    z-index: 1;
    overflow: hidden;
  }
@media (max-width: 768px) {
    .hero-video {
      display: none;
    }
    .video-fallback {
      display: block;
    }
  }


  .home-hero-section {
    position: relative;
    width: 50vh;
    height: 50vh;
    font-family: 'Georgia', serif;
  }

  .home-hero-video,
  .home-video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    z-index: 1;
    overflow: hidden;
  }
@media (max-width: 768px) {
    .home-hero-video {
      display: none;
    }
    .home-video-fallback {
      display: block;
    }
  }
  

.poster-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;          /* anchor to bottom instead of height:100% */
  left: 0;            /* anchor to left */
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
  padding: 2rem;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.0), transparent);
  color: white;
  box-sizing: border-box;
}


  .poster-overlay h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  }

  .poster-overlay .price {
    font-size: 2rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1rem;
  }

  .poster-overlay p {
    font-size: 1.2rem;
    font-style: italic;
    max-width: 500px;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
  }

  .btn-group {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .btn-group .btn {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .poster-overlay {
      align-items: center;
      text-align: center;
      padding: 1.5rem;
    }

    .poster-overlay h2 {
      font-size: 2rem;
    }

    .poster-overlay p {
      font-size: 1rem;
      max-width: 90%;
    }

    .btn-group {
      flex-direction: column;
      align-items: center;
      width: 100%;
    }

    .btn-group .btn {
      width: 100%;
      max-width: 250px;
      margin-bottom: 0.5rem;
    }
  }


.product-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 4rem 1rem;
    }

  .product-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 4rem;
    gap: 2rem;
  }


.product-image {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
}

.product-image img {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
}


  .product-image img:hover {
    transform: scale(1.02);
  }

  .product-info {
    flex: 1 1 50%;
    padding: 1rem;
  }

  .product-info h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }

  .product-info p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
  }

  .product-info .price {
    font-size: 1.5rem;
    font-weight: 500;
    color:  #0078D7;
    margin-bottom: 1.5rem;
  }

  .product-info .btn {
    padding: 0.6rem 1.2rem;
    font-weight: 500;
    border-radius: 0.4rem;
    margin-right: 1rem;
  }

  @media (max-width: 768px) {
    .product-card {
      flex-direction: column !important;
      text-align: center;
    }

    .product-info {
      padding: 0;
    }

    .product-info .btn {
      display: block;
      margin: 0.5rem auto;
    }
  }

.food-culture h5 {
  color:  #0078D7;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.5em;
  margin-top: 20px;
  margin-bottom: 20px;
}

.button-page-video {
  background: linear-gradient(135deg, #f9f9f9, #eaf4ff); /* soft gradient background */
  overflow-x: hidden;
}

.video-box {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.video-box video {
  border-radius: 1rem;
}
/* Gradient button */
.btn-gradient {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,114,255,0.4);
}

.watermark {
  position: absolute;
  bottom: 10px;
  right: 15px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}

.circle-photo-display .watermark {
  position: absolute;
  bottom: 10px;   /* adjust vertical placement */
  right: 15px;    /* adjust horizontal placement */
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7); /* semi-transparent white */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.6); /* improves readability */
  pointer-events: none; /* ensures watermark doesn’t block hover/click */
}

.tour-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Gradient heading */
.text-gradient {
  background: linear-gradient(90deg,  #0078D7,  #4785b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.itinerary-tabs {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
}

/* Hide all panels by default */
#iti .tab-panel {
  display: none;
}

/* Show only the active one */
#iti .tab-panel.active {
  display: block;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}

.gallery-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 400px; /* fixed height for the card */
  display: flex;
  flex-direction: column;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;       /* force image to fill container height */
  object-fit: cover;  /* crop nicely without distortion */
  display: block;
}
.caption {
  padding: 10px;
  text-align: center;
  font-size: 14px;
  color: #555;
}

/* Tablet view */
@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

/* Mobile view */
@media (max-width: 480px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}
.holidays-list h4{
   color: #0078D7;
}
.badge {
  display: inline-block;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(135deg, #6177f5, #95adf1);
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.shoppingcart-card {
  border-radius: 12px;
  max-width: 800px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 40px;
  margin-left: auto;
  padding: 5px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.form-control {
  border-radius: 8px;
}

/* Card container */
.homecard {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

/* Image scales responsively */
.homecard img {
  width: 100%;
  height: auto;
  display: block;
}

.homecard:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}
.homecard:hover img {
  transform: scale(1.05);
}
/* Overlay sits on top of image */
.homeoverlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.3);
  color: #fff;
  padding: 16px;
  text-align: left;
}
.homecard:hover .overlay {
  opacity: 1;
}

/* Title link styling */
.homeoverlay h3 a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
}
.homeoverlay h3 a:hover { text-decoration: underline; }


/* Responsive adjustments */
@media (max-width: 768px) {
  .homeoverlay {
    padding: 12px;
    font-size: 0.9rem;
  }
  .homeoverlay h3 a {
    font-size: 1rem;
  }
}

.promo-banner {
  width: 100%;
  background: linear-gradient(135deg, #00AEEF, #0072CE); /* tropical blue gradient */
  color: #fff;
  font-weight: bold;
  overflow: hidden;
}

.promo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 1.5em; /* height of one line */
  position: relative;
  min-height: 3em; /* flexible height for mobile */
}

.promo-text span {
  position: absolute;
  opacity: 0;
  animation: textLoop 16s infinite;
}

.promo-text span:nth-child(1) { animation-delay: 0s; }
.promo-text span:nth-child(2) { animation-delay: 4s; }
.promo-text span:nth-child(3) { animation-delay: 8s; }
.promo-text span:nth-child(4) { animation-delay: 12s; }

@keyframes textLoop {
  0%   { opacity: 0; }
  10%  { opacity: 1; }
  25%  { opacity: 1; }
  35%  { opacity: 0; }
  100% { opacity: 0; }
}

.promo-text a {
  color: #fff;
  text-decoration: none;
}
.promo-text a:hover {
  text-decoration: underline;
}

/* Media queries for smaller screens */
@media (max-width: 768px) {
  .promo-text a {
    font-size: 0.9rem;
  }
  .logo-img {
    max-height: 24px;
  }
}

@media (max-width: 480px) {
  .promo-text a {
    font-size: 0.8rem;
  }
  .logo-img {
    max-height: 20px;
    margin-right: 5px;
  }
}
.blog-post {
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }


.ad-banner {
	width: 50vh;
	background: rgb(134, 136, 240);
	height:5em;
	overflow: hidden;
	display: flex;
	justify-content: flex-start;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
	cursor: pointer;
	border-radius: .3em;
	
	&:hover {
		transform: scale(1.05);
		box-shadow: 0 5px 15px 10px rgba(0, 0, 0, 0.55);
	}
}

.shopping-image {
	height: auto;
	width: 20em/ 2;
	
	img {
		height: 5em;
		width: 20em / 2;
		object-fit: cover;
		border-radius: 0 2em 2em 0 / 0 3em 3em 0;
		box-shadow: 3px 5px 1px 3px darken(rgb(141, 150, 230), 20%);
	}
}

.home-ad {
  height: auto;
  position: relative;
  overflow: hidden;
}

.home-ad img {
  height: auto;
  transition: all 0.4s ease; /* smooth animation */
  border-radius: 8px;        /* optional: rounded corners */
}

.home-ad img:hover {
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  box-shadow: 0 12px 24px rgba(0, 114, 255, 0.5);
  transform: scale(1.05) rotate(1deg); /* zoom + slight tilt */
  filter: brightness(1.1) saturate(1.2); /* pop the colors */
  cursor: pointer; /* shows it's clickable */
}

@media (max-width: 768px) {
  .homeoverlay h3 {
    font-size: 1.2rem;   /* smaller text on tablets */
  }
}

@media (max-width: 480px) {
  .homeoverlay h3 {
    font-size: 1rem;     /* even smaller text on phones */
  }
}
.homepage-price{
  color: #B8860B;
}