/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
img {
  margin: 0;
  padding: 0;
  display: block;
}
:root {
  /* =========================
     Brand Colors
     ========================= */
  --color-primary: #5f8f1b;        /* Main brand / CTA (light backgrounds) */
  --color-primary-dark: #2e6117;   /* Headers, footer, nav */
  --color-secondary: #7fa4a1;      /* Accents, cards, sections */

  /* =========================
     Orange Accent (Dark Background CTA)
     ========================= */
  --color-accent-orange: #e58a2f;        /* CTA buttons on dark bg */
  --color-accent-orange-hover: #cf7a24;
  --color-accent-orange-active: #b96b1f;

  /* =========================
     Interaction States
     ========================= */
  --color-primary-hover: #4e7816;
  --color-primary-active: #406312;

  /* =========================
     Background Colors
     ========================= */
  --color-bg-main: #f4f7f5;
  --color-bg-alt: #ffffff;
  --color-bg-dark: #2e6117;
  --color-bg-accent: #7fa4a1;

  /* =========================
     Text Colors
     ========================= */
  --color-text-heading: #2e6117;
  --color-text-body: #2f3a3a;
  --color-text-muted: #6b7c7a;
  --color-text-inverse: #ffffff;

  /* =========================
     Borders & Dividers
     ========================= */
  --color-border-light: #d6e0dd;
  --color-border-default: #bfcfc9;

  /* =========================
     Status Colors
     ========================= */
  --color-success: #5f8f1b;
  --color-warning: #e58a2f;
  --color-error: #b93a2f;
  --color-info: #7fa4a1;

  /* =========================
     Shadows
     ========================= */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);

  /* =========================
     Border Radius
     ========================= */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* =========================
     Footer Colors
     ========================= */
  --color-footer-bg: #1f3d1a;          /* Deep pine green */
  --color-footer-bg-alt: #162b12;      /* Near-black green */
  --color-footer-border: #2f5a2a;      /* Subtle divider */

  --color-footer-heading: #e6efe6;     /* Light, soft white-green */
  --color-footer-text: #c3d4c3;        /* Muted light green */
  --color-footer-link: #7fa4a1;        /* Teal accent */
  --color-footer-link-hover: #e58a2f;  /* Orange highlight */
}


body {
  font-family: Arial, sans-serif;
  line-height: 16px;
  background-color: var(--color-bg-main);
  color: var(--color-text-body);
  font-size: 14px;
}

h1 {
  width: 100%;
  height: auto;
  font-size: 1.8em;
  font-weight: normal;
  line-height: 1.8em;
}

h2 {
  width: 100%;
  height: auto;
  font-size: 2.5em;
  line-height: 1.5em;
}

h3 {
  width: 100%;
  height: auto;
  font-size: 2em;
  line-height: 1.5em;
}

p {
  width: 100%;
  height: auto;
  font-size: 1.2em;
  line-height: 2em;
  margin: 10px 0 10px 0;
}

button {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-inverse);
  background: var(--color-accent-orange);
  font-size: 1.1em;
  font-weight: bold;
  border: none;
  transition: background 0.5s;
  border-radius: 50px;
  cursor: pointer;
}

button:hover {
  background: var(--color-accent-orange-hover);
}


hr {
  width: 5%;
  min-height: 5px;
  background: var(--color-accent-orange);
  border: none;
  margin: 20px 0 20px 0;
}

/* Header styles */
header {
  background-color: var(--color-primary-dark);
  color: var(--color-text-inverse);
  padding: 10px 5% 10px 5%;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 90px;
  position: sticky;
  top: 0;
  z-index: 2;
}
header .nav_bar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  }
.nav_bar .logo {
  width: 15%;
  height: 70px;
}
.logo img  {
  width: auto;
  height: 100%;
}
.nav_bar .mobile_menu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70%;
  height: 40px;
  opacity: 0;
}
.nav_bar button {
  width: 15%;
  height: 40px;
}

header nav {
  width: 55%;
  height: 90px;
  position: absolute;
  top: 0;
  left: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
}

header nav ul {
  width: 100%;
  height: auto;
  display: flex;
  gap: 1%;
  list-style-type: none;
}

nav ul li {
  display: flex;
  width: auto;
  height: auto;
}

.active {
    color: var(--color-accent-orange);
}

header nav ul li a {
  color: var(--color-text-inverse);
  text-decoration: none;
  font-size: 1em;
  transition: color 0.5s;
}

header nav ul li a:hover {
  color: var(--color-accent-orange);
}

/* Main Section */
main {
  width: 100%;
  height: auto;
}
main .header_image {
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
   background-size: cover !important;
  background-repeat: no-repeat !important;
  padding: 0 5% 0 5%;
}
.header_image span {
  width: 100%;
  height: auto;
  color: var(--color-text-inverse);
  font-size: 3em;
  font-weight: bold;
  line-height: 1.2em;
  text-align: center;
}

main article {
  width: 100%;
  height: auto;
  padding: 50px 5% 50px 5%;
  display: flex;
  flex-direction: column;
}

article h1 {
  font-size: 3em;
  margin: 10px 0 20px 0;
  font-weight: bold;
}

article h2 {
  font-size: 1.7em;
  margin: 40px 0 5px 0;
}

article p {
  font-size: 1.2em;
  line-height: 1.5em;
  margin: 10px 0 10px 0;
}

article ul {
  width: 100%;
  height: auto;
  padding: 0 0 0 2%;
}

article ul li {
  width: 100%;
  height: auto;
  margin: 10px 0 10px 0;
  font-size: 1.2em;
  color: var(--color-text-body);
}

article ul li::marker {
  font-size: 1.5em;
  color: var(--color-accent-orange);
}

article details {
  border: solid 1px var(--color-border-light);
  padding: 0;
  margin: 10px 0 10px 0;
}

details summary {
  font-size: 1.5em;
  line-height: 1.5em;
  padding: 20px 2% 20px 2%;
  background: var(--color-bg-alt);
  cursor: pointer;
}

details summary::marker {
  font-family: "tourism";
  content: "\e914 \0020";
  font-size: 1.2rem;
}

details[open] summary::marker {
  font-family: "tourism";
  content: "\e90f \0020";
  font-size: 1.2rem; /* Adjust the size of the marker */
}

details .summary_data {
  padding: 10px 2% 10px 2%;
  background: var(--color-bg-alt);
}

.slide {
  width: 100%;
  height: 500px;
  position: relative;
}

.slide img {
  width: 100%;
  height: auto;
}

/* Text overlay */
.slide .text {
  position: absolute;
  left: 0;
  top: 25%;
  width: 100%;
  color: var(--color-text-inverse);
  text-align: center;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.text p {
  font-size: 1.5em;
  color: var(--color-text-inverse);
}

.text button {
  width: 15%;
  height: 40px;
}

main .gallery {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px 3%;
    padding: 20px 5% 20px 5%;
}
.gallery .gallery_item {
    width: 20%;
    height: auto;
    display: flex;
    position: relative;
}
.gallery .gallery_item:hover::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.4);
    cursor: zoom-in;
}
.gallery_item img {
    width: 100%;
    height: auto;
}
main .shadowbox {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
    z-index: 2;
    display: none;
    flex-direction: column;
    align-items: center;
}
.shadowbox .controls {
    width: 100%;
    height: auto;
    padding: 10px 2% 10px 2%;
    display: flex;
    justify-content: flex-end;
    color: var(--color-text-inverse);
    font-size: 1.2em;
}
.shadowbox img {
    width: 30%;
    height: auto;
    display: none;
}

main section {
  width: 100%;
  height: auto;
  padding: 50px 5% 50px 5%;
  display: flex;
  justify-content: space-between;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.light_section {
  background-color: rgba(255,255,255,0.7) !important;
  background-blend-mode: lighten !important;
}

.dark_section h3 {
  color: var(--color-text-inverse);
}

section .column_50 {
  width: 49%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.column_50 button {
  width: 30%;
  height: 50px;
}
.column_50 img {
  width: 100%;
  height: auto;
}
.column_50 h1 {
  position: relative;
  padding: 0 0 0 3%;
}
.column_50 h1::before {
  content: "";
  width: 1%;
  height: 2em;
  position: absolute;
  background: var(--color-accent-orange);
  left: 0;
}
.alternate:nth-child(odd) {
    flex-direction: row-reverse;
}
.alternate h2 {
  font-size: 1.7em;
}
.alternate hr {
  width: 10%;
  margin: 10px 0 10px 0;
}
.alternate p {
  color: #000000;
  line-height: 1.5em;
}

section .column_100 {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.column_100 h3 {
  text-align: center;
  margin: 0 0 20px 0;
}

.column_100 p {
  margin: 0 0 20px 0;
  text-align: center;
}

.column_100 button {
  width: 20%;
  height: 50px;
  margin: 40px 0 0 0;
}
.column_100 .list_box {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
}

.column_100 .booking {
  width: 100%;
  height: auto;
  background: var(--color-bg-dark);
  padding: 20px 5% 20px 5%;
  display: flex;
  flex-direction: column;
}

.booking h2 {
  color: var(--color-accent-orange);
  font-size: 2em;
  text-align: center;
}
.booking .form_box {
  width: 100%;
  height: auto;
  display: flex;
  gap: 2%;
  margin: 10px 0 10px 0;
}
.form_box input, .form_box select {
  width: 100%;
  height: 40px;
  display: flex;
  padding: 5px 2% 5px 2%;
  border: solid 1px var(--color-border-light);
  border-radius: 5px;
  transition: border 0.5s;
}
.form_box input:focus, .form_box select:focus {
  outline: none;
  border: solid 1px var(--color-accent-orange);
}
.form_box input:disabled {
  background: var(--color-text-inverse);
}
.form_box button {
  width: 100%;
  height: 40px;
  margin: 0;
}

.package_box {
 width: 30%;
 height: auto;
 position: relative;
 display: flex;
 flex-direction: column;
 margin: 0 0 50px 0;
 box-shadow: var(--shadow-lg);
}
.package_box .package_data {
background: var(--color-bg-alt);
padding: 20px 10% 20px 10%;
}

section .column_70 {
  width: 70%;
  height: auto;
  display: flex;
  flex-direction: column;
}

.column_70 .package_icons {
  width: 100%;
  height: auto;
  display: flex;
  font-size: 1.7em;
  gap: 5%;
  margin: 20px 0 20px 0;
  color: var(--color-text-muted);
}

.column_70 .white_box {
  width: 100%;
  height: auto;
  padding: 20px 5% 20px 5%;
  margin: 20px 0 20px 0;
  display: flex;
  flex-direction: column;
  background: var(--color-bg-alt);
}

.white_box ul {
 padding: 0 0 0 3%;
}

.white_box ul li {
  width: 100%;
  height: auto;
  color: var(--color-text-body);
  font-size: 1.2em;
  line-height: 1.5em;
  padding: 5px 0 5px 0;
}

.white_box ul li::marker {
  font-family: 'tourism';
  content: '\e901\0020';
  color: var(--color-accent-orange);
  font-size: 1em;
}

.white_box article {
    position: relative;
    padding: 0 0 0 20%;
}
.white_box article[data-marker]::before {
    position: absolute;
    left: 0;
    top: 0.5em;
    content: attr(data-marker);
    font-size: 1.7em;
    font-weight: bold;
    color: var(--color-accent-orange);
}
.white_box article[data-marker]::after {
    position: absolute;
    content: "";
    left: 2em;
    top: 3.5em;
    width: 0.5%;
    height: 100px;
    background: var(--color-accent-orange);
}

article h2 {
    width: 100%;
    height: auto;
    font-size: 2em;
    padding: 0;
    margin: 0;
}

section .column_30 {
  width: 30%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.column_30 .booking_form {
  width: 95%;
  height: auto;
  background: var(--color-bg-dark);
  border-radius: 10px;
  padding: 20px 5% 20px 5%;
  display: flex;
  flex-direction: column;
}

.booking_form h2 {
  color: var(--color-accent-orange);
  font-size: 2em;
  text-align: center;
}
.booking_form .form_row {
  width: 100%;
  height: auto;
  display: flex;
  gap: 2%;
}
.booking_form input {
  width: 100%;
  height: auto;
  display: flex;
  padding: 10px 2% 10px 2%;
  margin: 10px 0 10px 0;
  border: solid 1px var(--color-border-light);
  border-radius: 5px;
  transition: border 0.5s;
}
.booking_form input:focus {
  outline: none;
  border: solid 1px var(--color-accent-orange);
}
.booking_form input:disabled {
  background: var(--color-text-inverse);
}
.booking_form button {
  width: 100%;
  height: 40px;
}

.column_30 .ad_space {
    width: 95%;
    height: 300px;
    padding: 0 5% 0 5%;
    margin: 20px 0 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}
.ad_space h3 {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    font-size: 2em;
    color: var(--color-text-inverse);
}
.ad_space h3 a {
    color: inherit;
    text-decoration: none;
}

section .contact_form {
  width: 60%;
  height: auto;
  display: flex;
  flex-direction: column;
  background: var(--color-bg-alt);
  padding: 40px 5% 40px 5%;
}

.contact_form h2 {
  font-size: 2em;
}
.contact_form hr {
  width: 10%;
  margin: 10px 0 40px 0;
}
.contact_form .form_column {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
}
.form_column input {
  width: 32%;
  height: auto;
  display: flex;
  padding: 10px 2% 10px 2%;
  border: solid 1px var(--color-border-light);
  transition: border 0.5s;
}
.contact_form textarea {
  font-family: Arial;
  width: 100%;
  height: 200px;
  resize: none;
  display: flex;
  padding: 15px 2% 15px 2%;
  margin: 20px 0 20px 0;
  border: solid 1px var(--color-border-light);
  transition: border 0.5s;
}
.form_column input:focus, .contact_form textarea:focus {
  outline: none;
  border: solid 1px var(--color-accent-orange);
}
.contact_form button {
  width: 30%;
  height: 40px;
}

.contact_details {
  width: 40%;
  height: auto;
  display: flex;
  flex-direction: column;
  padding: 40px 5% 40px 5%;
}
.contact_details .contact_box {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: solid 1px var(--color-border-light);
  padding: 10px 0 10px 0;
}
.contact_box span {
  width: 70px;
  height: 70px;
  background: var(--color-accent-orange);
  font-size: 2em;
  color: var(--color-text-inverse);
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact_box .contact_info {
  width: 75%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.contact_info h2 {
  font-size: 2.1em;
}
.contact_info p {
  line-height: 1.2em;
  margin: 0;
  font-size: 1.1em;
}
.contact_info p a {
  color: inherit;
  text-decoration: none;
  transition: color 0.5s;
}
.contact_details .contact_icons {
  width: 100%;
  height: auto;
  display: flex;
  gap: 5%;
  font-size: 1.5em;
  margin: 10px 0 10px 0;
}
.contact_details .contact_icons a {
  color: var(--color-text-body);
  text-decoration: none;
  transition: color 0.5s;
}
.contact_info p a:hover, .contact_details .contact_icons a:hover {
  color: var(--color-accent-orange);
}
.package_box[data-offer]::after {
  content: "\20B9" attr(data-offer);
  position: absolute;
  top: 45%;
  left: 0;
  width: 30%;
  background: var(--color-primary-dark);
  padding: 10px 0 10px 5%;
  font-size: 1.5em;
  color: var(--color-text-inverse);
}
.package_data .package_icons {
  width: 70%;
  height: auto;
  font-size: 1.7em;
  color: var(--color-text-muted);
  display: flex;
  justify-content: space-between;
  padding: 10px 0 10px 0;
}

.package_data button {
  width: 50%;
  height: 40px;
}

.carousel_item2 img {
  width: 100%;
  height: auto;
}

.carousel_item2 span {
  position: absolute;
  top: 80%;
  left: 0;
  width: 100%;
  height: auto;
  text-align: center;
}

.carousel_item3 span {
  position: absolute;
  top: 70%;
  left: 0;
  background: var(--color-bg-main);
  width: 50%;
  padding: 20px 0 20px 5%;
  font-size: 1.5em;
}

.carousel_item4 p {
  font-style: italic;
  line-height: 1.5em;
  text-align: left;
  position: relative;
  color: var(--color-text-body);
}

.carousel_item4 p::before {
  content: "";
  width: 0.2em;
  height: 5em;
  background: var(--color-accent-orange);
  position: absolute;
  left: -5%;
}

.carousel_item4 .stars {
  width: 50%;
  height: auto;
  font-size: 1.7em;
  display: flex;
  gap: 2%;
  color: var(--color-success);
}

.carousel_item4 h1 {
  font-size: 1.5em;
  margin: 10px 0 0 0;
  color: var(--color-text-body);
}

.carousel_item4 h2 {
  font-size: 1.2em;
  color: var(--color-text-body);
}

/* Footer Section */
footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  color: var(--color-footer-text);
}

footer .footer_top {
  width: 100%;
  height: auto;
  display: flex;
  background: var(--color-footer-bg);
  justify-content: space-between;
  align-items: flex-start;
  padding: 50px 5% 50px 5%;
}

footer .footer_top .links {
  width: 23%;
  height: auto;
  display: flex;
  flex-direction: column;
}

.links h1 {
 width: 100%;
  height: auto;
  font-size: 2em;
  color: var(--color-footer-heading);
}

.links hr {
  width: 20%;
  height: 5px;
  background: var(--color-accent-orange);
  border: none;
  margin: 20px 0 20px 0;
}

.links ul {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  gap: 5%;
}

.links ul li {
  display: flex;
  margin: 0 0 5px 0;
  line-height: 1.7em;
  color: var(--color-footer-heading);
}

#map {
  width: 100%;
  height: 150px;
  background: var(--color-footer-heading);
  display: flex;
}
#map2 {
  width: 100%;
  height: 400px;
  background: var(--color-footer-heading);
  display: flex;
  z-index: 1;
  margin: 0 0 40px 0;
}


.links ul li a {
  text-decoration: none;
  color: var(--color-footer-heading);
  transition: color 0.5s;
}

.links ul li a:hover {
  color: var(--color-footer-link-hover);
}

.links ul li a img {
  width: 70%;
  height: auto;
}

.icons {
  font-size: 1.5em;
  display: flex;
  gap: 10%;
}

footer .footer_bottom {
  width: 100%;
  height: 50px;
  display: flex;
  background: var(--color-footer-bg-alt);
  color: var(--color-footer-text);
  align-items: center;
  justify-content: space-between;
  padding: 10px 5% 10px 5%;
}

.footer_bottom .copyright, .footer_bottom .design {
  font-size: 0.9em;
}

.footer_bottom .design a {
  text-decoration: none;
  color: var(--color-footer-text);
  transition: color 0.5s;
}

.footer_bottom .design a:hover {
  color: var(--color-footer-link-hover);
}

.social_links_fixed {
  width: 40px;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: fixed;
  top: 20%;
  right: 0;
  z-index: 999;
}

.social_links_fixed span {
  width: 40px;
  height: 40px;
  background: var(--color-bg-dark);
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.5s;
}

.social_links_fixed span a {
  font-size: 1.5em;
  text-decoration: none;
  color: var(--color-bg-main);
}

.social_links_fixed span:hover {
  background: var(--color-accent-orange);
}

.model {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: var(--color-bg-alt);
    z-index: 99999999;
    display: none;
    justify-content: center;
    align-items: center;
}
.model .model_box {
    width: 50%;
    height: auto;
    min-height: 500px;
    display: flex;
    background: var(--color-accent-orange);
    border-radius: 20px;
    
}
@media (max-width: 767px) {
  h1 {
  font-size: 1.5em;
  font-weight: normal;
  line-height: 1.5em;
  }

h2 {
  font-size: 1.9em;
  line-height: 1.2em;
}

h3 {
  font-size: 2em;
  line-height: 1.5em;
}

p {
  font-size: 1.1em;
  line-height: 1.5em;
}
  hr {
  width: 10%;
  }
 .nav_bar .logo {
  width: 45%;
  order: 1;
 }

  .nav_bar button {
  width: 45%;
  order: 2;
  }

  .nav_bar .mobile_menu {
  width: 10%;
  font-size: 2em;
  opacity: 1;
  order: 3;
  }

 header nav {
    width: 100%;
    height: auto;
    background: var(--color-primary);
    padding: 20px 5% 20px 5%;
   align-items: flex-start;
   top: 90px;
  left: 0;
   display: none;
   }
  nav ul {
    flex-direction: column;
   }

  nav ul li {
   width: 100%;
   height: auto;
   padding: 10px 0 10px 0;
   font-size: 1.2em;
   font-weight: bold;
   }
  nav ul li:nth-child(even) {
   display: none;
   }
   
  

  main article {
    padding: 20px 5% 20px 5%;
  }

  article h1 {
    font-size: 2.5em;
    margin: 5px 0 10px 0;
  }
  
  details summary {
    font-size: 1.3em;
  }

  details summary::marker {
    font-size: 1.1rem;
  }

  details[open] summary::marker {
    font-size: 1.1rem;
  }

  article ul {
  padding: 0 0 0 10%;
  }

  article ul li {
  font-size: 1em;
  line-height: 1.2em;
  }

  article p {
  font-size: 1em;
  }

  .slide {
  height: 600px;
  }

  .slide img {
  height: 600px;
  object-fit: cover;
  }

 .text button {
  width: 50%;
  height: 40px;
 }

 main section {
  flex-direction: column !important;
 }

main .gallery {
    gap: 20px 0;
    justify-content: space-around;
}
.gallery .gallery_item {
    width: 45%;
}

 section .column_50 {
  width: 100%;
  margin: 0 0 20px 0;
  }

  .column_50 h1 {
   line-height: 2em;
  }

  .column_50 button {
  width: 50%;
  }

  .column_100 button {
    width: 50%;
  }
  .booking .form_box {
  flex-direction: column;
}
.form_box input, .form_box select {
    margin: 10px 0 10px 0;
}
  .package_box {
    width: 100% !important;
   }

  section .contact_form {
    width: 100%;

  }
  .contact_form hr {
    width: 20%;
   }
   
  .contact_form .form_column {
 flex-direction: column;
}
.form_column input {
  width: 100%;
  margin: 0 0 20px 0;
}
.contact_form textarea {
  margin: 0 0 20px 0;
}
  .contact_form button {
    width: 50%;
  }

  .contact_details {
    width: 100%;
  }

  section .column_70 {
    width: 100%;
   }

  .white_box ul {
    padding: 0 0 0 7%;
   }

  section .column_30 {
    width: 100%;
   }

  .booking_form button {
  width: 100%;
  height: 40px;
  margin: 10px 0 0 0;
    }
    
  footer {
   margin: 0 0 50px 0;
   }
  footer .footer_top {
   flex-direction: column;
  }

  footer .footer_top .links {
    width: 100%;
   }

  footer .footer_bottom {
    height: 70px;
    flex-direction: column;
   }

  .social_links_fixed {
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
   top: auto;
    bottom: 0;
    left: 0;
    background: var(--color-primary);
   }

   .social_links_fixed span {
    background: transparent;
   }
}