:root {
  --strapi-background: #1e2326;
  --strapi-text: #ffffff;
  --strapi-header-text: #282344;
}

.template-strapi #et-main-area {
  padding-top: 80px;
}

@media (min-width: 980px) {
  .template-strapi #et-main-area {
    padding-top: 160px;
  }
}

.template-strapi h1,
.template-strapi h2,
.template-strapi h3,
.template-strapi h4 {
  color: var(--strapi-header-text);
}

.template-strapi p {
  font-size: 18px;
  line-height: 1.7em;
}

/* Cards used in collection */
.flamingo-place-card {
  width: 100%;
  text-decoration: none;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .flamingo-place-card {
    width: calc(33% - 0.5rem);
  }
}

.flamingo-place-card-inner {
  border: 1px solid #eee;
  border-radius: 0.75rem;
  overflow: hidden;
}

.flamingo-place-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.flamingo-place {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem;
}

.flamingo-place h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.flamingo-place details {
  margin-bottom: 2rem;
}

.flamingo-place details summary {
  cursor: pointer;
}

.flamingo-place .description {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.flamingo-place .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
  margin-top: 2rem;
}

.flamingo-place .gallery img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 0.5rem;
  display: block;
}

@media (max-width: 980px) {
  .flamingo-place .gallery {
    grid-template-columns: 1fr;
  }
}


.flamingo-place .info-block {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.flamingo-place .map-embed {
  margin-bottom: 2rem;
}

.flamingo-place img.cover {
  width: 100%;
  border-radius: 1rem;
}

.not-found-main {
  padding: 2rem;
}

.not-found-main details {
  margin-top: 2rem;
}

.not-found-main summary {
  cursor: pointer;
}

.info-block a {
  color: #F76631;
  text-decoration: none;
}

.info-block a:hover {
  text-decoration: underline;
}

.flamingo-place .map-embed {
  margin-bottom: 2rem;
}

.flamingo-place .place-columns {
  display: flex;
  flex-wrap: wrap;
  column-gap: 3rem; 
  row-gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 980px) {
  .flamingo-place .place-columns {
    flex-direction: column;
  }

  .flamingo-place .place-columns .map-embed,
  .flamingo-place .place-columns .info-block {
    width: 100%;
  }
}

.flamingo-place .place-columns .info-block,
.flamingo-place .place-columns .map-embed {
  flex: 1 1 45%;
  min-width: 300px;
}

.flamingo-place .map-embed img,
.flamingo-place .map-embed iframe {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .flamingo-place .place-columns {
    flex-direction: column;
  }

  .flamingo-place .place-columns .info-block,
  .flamingo-place .place-columns .map-embed {
    flex: 1 1 100%;
  }
}


/* Shortcodes */
.flamingo-shortcode-grid {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1rem;
  row-gap: 0rem;
}

.flamingo-shortcode-grid .flamingo-place-card {
  width: calc(33%  - 0.5rem);
  text-decoration: none;
  text-align: center;
  color: inherit;
  border: 2px dotted #F76631;
  border-radius: 0.75rem;
  background-color: #ffffff;

}

.flamingo-place-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 0.75rem;
  border: 1px solid #eee;
}

.flamingo-place-card h3 {
  margin: 0.5rem 0 0;
  font-size: 1rem;
}

/* Tablet: 3 cards per row, centered */

@media (max-width:1080px) {
  .flamingo-shortcode-grid {
    justify-content: center;
    
  }

  .flamingo-shortcode-grid .flamingo-place-card {
    width: calc(33% - 0.5rem);
  }
}

/* Phone: 2 cards per row, centered */

@media (max-width: 480px) {
  .flamingo-shortcode-grid {
    justify-content: center;
  }

  .flamingo-shortcode-grid .flamingo-place-card {
    width: calc(50% - 0.5rem);
  }
}

/*top navication*/

.flamingo-breadcrumb a {
  color: #F76631;
  text-decoration: none;
}

.flamingo-breadcrumb a:hover {
  text-decoration: underline;
}