/* Centered text inside container*/

:root {
  --primary-color: #bc1599;
  /* Hardcoded  */
  --secondary-color: #e9c65e;

  /* Hardcoded  */
  --ffamily: "Gill Sans MT", Arial;
  /* Hardcoded font family */
  --backgrd-color: white;
  /* Hardcoded background color */
  --about-color: white;
  /* Hardcoded Gradient */
  --gradient-back: background-image: linear-gradient(
      to right,
      #2cc7cdfe,
      #2cc7cdfe
    );
  /*accent*/
  --accent-color: #00b7b7;
}

.left-list {
  text-align: left;
  list-style-position: outside;
  padding-left: 20px;
}

.modal-header {
  background: var(--accent-color);
  color: var(--secondary-color);
  font-family: var(--fffamily);
}

#about-us {
  padding: 2em;
  /*border: 2px dashed #ccc;*/
  color: var(--about-color);
  line-height: 1.6;
  padding-left: 16%;
  padding-right: 16%;
}

body {
  width: 100%;
  height: 100%;
  color: #070000;
  text-align: center;
  background-color: var(--backgrd-color);
  font-family: var(--ffamily);
  /*font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif*/
}

/*Flexbox container for section cards*/

.flex-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  background-color: var(--backgrd-color);
  justify-content: center;
}

.flex-container > div {
  font-family: var(--ffamily);
  background-color: var(--secondary-color);
  width: 270px;
  margin: 10px;
  text-align: center;
  line-height: 75px;
  font-size: 30px;
  border-radius: 10px;
  height: 300px;
  padding: 10px;
  color: grey;
}

.flex-container-foot {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  background-color: var(--primary-color);
  justify-content: space-around;
}

.flex-container-foot > div {
  font-family: var(--ffamily);
  background-color: var(--primary-color);
  /*width: 50%;*/
  margin: 10px;
  text-align: left;
  line-height: 35px;
  font-size: 14px;
  border-radius: 10px;
  padding: 10px;
  color: rgb(24, 23, 23);
}

.flex-container-foot .deets-contact {
  text-align: center;
}

.nested-container {
  font-family: var(--ffamily);
  background-color: var(--secondary-color);
  width: 270px;
  margin: 10px;
  text-align: center;
  line-height: 75px;
  font-size: 30px;
  border-radius: 10px;
  height: 300px;
  padding: 10px;
  color: grey;
}

/* Flexbox navigation */
.main-nav {
  display: flex;
  flex-direction: row;
  justify-content: end;
  /*background-color: var(--primary-color);*/
  background-image: linear-gradient(to left, #bd3ea1, #bc1599);
  padding: 0px;
  height: auto;
  z-index: 999;
  position: sticky;
  width: 100%;
  top: 0;
  border-bottom: solid 0px rgb(223, 170, 170);
  box-shadow: 1px 0px 10px rgb(221, 145, 145);
}

/* .main-nav {
			position: sticky;
			width: 100%;
			top: 0;
		} */

.main-nav li {
  padding-top: 10px;
  list-style-type: none;
}

.main-nav li a {
  color: var(--secondary-color);
  padding: 0px 11px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
}

.main-nav ul {
  display: flex;
  justify-content: center;
  flex-direction: row;
  padding-right: 10px;
}

.main-nav li a:hover {
  background-color: #3674b6;
}

.animate-bottom {
  animation: animate-bottom 0.4s;
  color: var(--secondary-color);
}

.card-text {
  position: absolute;
  bottom: 70%;
  left: auto;
  text-align: middle;
  color: var(--backgrd-color);
  font-size: 14px;
  font-family: "monserat", Arial, Helvetica, sans-serif;
  padding: 0px;
  font-style: normal;
  background-color: var(--secondary-color);
  height: 70px;
}

.icons-style {
  border-radius: 50%;
}

.card {
  width: 100%;
  height: 80%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  margin: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -35px;
}

.deets {
  position: relative;
  top: 215px;
  left: 0;
  background: var(--secondary-color);
  z-index: 4;
  width: 100%;
  height: 0px;
  font-size: 16px;
  font-family: var(--ffamily);
  color: rgb(151, 147, 147);
  font-weight: bold;
}

.deets-contact {
  position: relative;
  left: 0;
  background: var(--secondary-color);
  z-index: 4;
  width: 100%;
  font-size: 16px;
  font-family: var(--ffamily);
  color: rgb(151, 147, 147);
  font-weight: bold;
}

.icons-style img {
  box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.3);
}

/* Add hover effect on icons in cards */
.icons-style img:hover {
  transform: scale(1.2);
  transition: 0.7s ease;
}

/* Container holding the brand image and the floating text */
.floating-box-test {
  position: relative;
  text-align: center;
  color: white;
  top: -36px;
}

.myfontL {
  color: var(--secondary-color);
  font-size: 40px;
  text-align: center;
  font-family: "Anisette Std", Arial, Helvetica, sans-serif;
  letter-spacing: 0px;
}

.myfontS {
  color: var(--secondary-color);
  font-size: 25px;
  text-align: center;
  font-family: "Anisette Std", Arial, Helvetica, sans-serif;
  letter-spacing: 5px;
}

.adds address {
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  font-family: "monseratto", Arial, Helvetica, sans-serif;
  padding-top: 24px;
}

.active {
  background-color: #a2c4e7;
}

#textheader {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0px;
}

.textline {
  font-size: 14px;
  align-items: center;
  padding: 0px;
  line-height: normal;
  color: black;
  font-style: normal;
}

.phoneemoj::before {
  content: "\1f4de";
  margin-right: 5px;
}

.centered-logo {
  position: absolute;
  top: 4%;
  left: 20%;
  padding: 0px;
  font-family: var(--ffamily);
  transform: translate(-50%, -40%);
  /*background-color: rgba(0, 0, 0, 0.23);*/
  transform: rotate(-9deg);
  display: inline-flex;
  z-index: 1000;
}

.centered-logo-store {
  position: absolute;
  top: 4%;
  left: 20%;
  padding: 0px;
  font-family: var(--ffamily);
  /*background-color: rgba(0, 0, 0, 0.23);*/
  transform: rotate(-9deg);
  z-index: 1000;
}

.head-container {
  display: flex;
  justify-content: space-around;
}

/* TABLE STYLES */

table {
  border-collapse: collapse;
  width: 100%;
  margin: 1px auto;
  background-color: #3674b6;
}

th,
td {
  border: 1px solid #ddd;
  padding: 3px;
  text-align: center;
}

th {
  background-color: #f4f4f4;
  color: grey;
}

img {
  max-width: 100%;
  height: auto;
}

.add-to-basket {
  padding: 5px;
  margin: 5px;
  border-radius: 5px;
  border: 1px solid var(--primary-color);
}

.footer-flex-box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  background-color: var(--primary-color);
  justify-content: center;
}

.form-container-foot {
  margin: 3px auto;
  padding: 20px;
  background-color: rgb(198, 198, 204);
  border-radius: 10px;
  width: 100%;
}

.form-container-foot label {
  text-align: left;
  background-color: rgb(198, 198, 204);
  width: 100%;
  display: inline-block;
  padding-bottom: 10px;
  color: black;
}

.card-foot {
  width: 400px;
  height: 150px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  margin: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -35px;
}

input {
  width: 100%;
  background-color: #ffffff;
  color: white;
  padding: 14px 0px;
  margin: 2px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.mediame {
  position: absolute;
  top: inherit;
  left: 50%;
  transform: translate(-50%, 70%);
  z-index: 3;
  display: flex;
}

.mediame li {
  list-style: none;
  margin: 0%;
  padding-left: 0em;
  padding-right: 0em;
}

.mediame li a {
  position: relative;
  display: block;
  width: 80px;
  height: 80px;
}

/* Responsive layout - makes branded logo smaller when size of screen is reduced */
@media (max-width: 490px) {
  .main-nav ul {
    flex-direction: column;
    justify-content: space-around;
    transition: 1s;
  }
}

/* Responsive layout - makes branded logo smaller when size of screen is reduced */
@media (max-width: 390px) {
  .centered-logo {
    position: absolute;
    top: 21%;
    left: 9%;
    width: 50%;
    transform: rotate(-15deg);
    transition: 1s;
  }
}

/* Responsive layout - makes branded logo smaller when size of screen is reduced */
@media (max-width: 840px) {
  .centered-logo {
    position: absolute;
    top: 21%;
    left: 10%;
    width: 35%;
    transform: rotate(-15deg);
    transition: 1s;
  }
}

/* Responsive layout - makes branded logo smaller when size of screen is reduced */
@media (max-width: 390px) {
  .centered-logo-store {
    position: absolute;
    top: 21%;
    left: 9%;
    width: 50%;
    transform: rotate(-15deg);
    transition: 1s;
  }
}

/* Responsive layout - makes branded logo smaller when size of screen is reduced */
@media (max-width: 840px) {
  .centered-logo-store {
    display: flex;
    justify-content: space-around;
    top: 9%;
    right: 100%;
    width: 250px;
    transform: rotate(-15deg);
    transition: 1s;
  }
}

.section {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.7;
}

.title {
  text-align: center;
  font-size: 2.5rem;
  color: #00796b;
  margin-bottom: 25px;
  font-weight: 700;
}

.intro {
  font-size: 1.2rem;
  margin-bottom: 25px;
  text-align: justify;
  color: #444;
}

.highlight {
  font-size: 1.2rem;
  font-weight: 600;
  color: #00695c;
  margin-bottom: 20px;
  text-align: center;
}

.paragraph {
  font-size: 1.9rem;
  margin-bottom: 25px;
  text-align: center;
  color: #f0875eff;
}

/* Explorer Cards (instead of bullet list) */
.explorers {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  justify-content: center;
  cursor: pointer;
}

.explorerCard {
  flex: 1 1 220px;
  background-color: #00b7b7;
  border-radius: 12px;
  padding: 18px 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex; /* NEW */
  flex-direction: column; /* NEW */
}

.explorerCard h3 {
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-size: 1.2rem;
  white-space: nowrap;
}

.explorerCard p {
  margin: 20px 0; /* equal space above and below */
  line-height: 1.5;
  color: #5e4b5a;
  font-size: 1rem;
}

.explorerCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.cardFooter {
  margin-top: auto;
  margin-bottom: 20px;
  display: block;
}

.cardHeader {
  margin-top: none;
  margin-bottom: 20px;
  display: block;
}

.image-style {
  width: 250px;
}

/* General Enquiries Form Card */
.contactCard {
  background-color: #00b7b7; /* teal theme */
  padding: 30px;
  border-radius: 16px;
  max-width: 400px;
  margin: 40px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  color: #ffffff;
  text-align: left;
}

/* Title inside the card */
.contactCard h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
  font-weight: 700;
}

/* Form layout */
.contactForm {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Inputs and textarea */
.contactForm input,
.contactForm textarea {
  padding: 12px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  background: #ffffff;
  color: #333;
}

/* Labels */
.contactForm label {
  font-weight: 600;
  margin-bottom: -10px;
}

/* Submit button */
.contactForm button {
  background-color: #ffffff;
  color: #00b7b7;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.contactForm button:hover {
  background-color: #e6fafa;
}

/* Booking Form Card */
.bookingCard {
  background-color: #00b7b7; /* teal theme */
  padding: 30px;
  border-radius: 16px;
  max-width: 400px;
  margin: 40px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  color: #ffffff;
  text-align: left;
}

/* Title inside the card */
.bookingCard h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
  font-weight: 700;
}

/* Form layout */
.bookingForm {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Inputs, selects, textareas */
.bookingForm input,
.bookingForm select,
.bookingForm textarea {
  padding: 12px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  background: #ffffff;
  color: #333;
}

/* Labels */
.bookingForm label {
  font-weight: 600;
  margin-bottom: -10px;
}

/* Submit button */
.bookingForm button {
  background-color: #ffffff;
  color: #00b7b7;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.bookingForm button:hover {
  background-color: #e6fafa;
}

.actionButtons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Base button styling */
.roundButton {
  background-color: #00b7b7;
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: 0.2s ease;

  /* Equal width on larger screens */
  flex: 0 1 180px; /* fixed-ish width, but still responsive */
  text-align: center;
}

.roundButton:hover {
  background-color: #009a9a;
  transform: translateY(-2px);
}

/* 📱 Full width on mobile */
@media (max-width: 600px) {
  .actionButtons {
    flex-direction: column;
    align-items: center;
  }

  .roundButton {
    width: 100%;
    max-width: 300px; /* keeps them neat */
    flex: none; /* override desktop flex sizing */
  }
}

/* Responsive */
@media (max-width: 768px) {
  .title {
    font-size: 1rem;
  }

  .intro,
  .paragraph {
    font-size: 1rem;
  }

  .explorers {
    flex-direction: column;
    gap: 15px;
  }

  .explorerCard {
    flex: 1 1 100%;
  }
}
