/* Reset some basic elements */

html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
  margin: 0;
}

a {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: inherit;
}
main {
  margin-top: 10rem;
  text-align: center;
}

.about-us img.about-image {
  float: left; /* You can change this to 'right' if you want the image on the right */
  margin: 0 15px 15px 0; /* Adjust the margin to add space around the image */
  max-width: 40%; /* Adjust the width as needed */
  height: auto; /* Maintain aspect ratio */
  display: inline-block;
  vertical-align: top; /* Align the top of the image with the top of the text */
}

/* Header styles */
header {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #00171f;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  height: 7rem;
  /*   padding: 0 15px; */
  padding: 1.5rem 0;
  position: fixed;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  top: 0;
  width: 100%;
  font-family: "Playfair Display", serif;
}

.site-logo {
  transition: color 200ms cubic-bezier(0.55, 0, 0.1, 1);
  color: #f6c9ab;
  font-size: 3rem;
}

.ok-header__logo:hover {
  color: #546edb;
}

/* okayNav styles */
body.okayNav-loaded {
  overflow-x: hidden;
}
.okayNav:not(.loaded) {
  visibility: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.okayNav ul {
  /* We want two navigations - one hidden and one visible */
  float: left;
}
.okayNav a {
  /* Links general styling */
  color: #2e2e33;
  font-size: 1.4rem;
  font-weight: bold;
  position: relative;
  z-index: 1;
}
.okayNav__nav--visible {
  overflow: hidden;
  white-space: nowrap;
}
.okayNav__nav--visible li {
  display: inline-block;
}
.okayNav__nav--visible a {
  /* Link styling for the visible part of the nav */
  display: block;
  transition: color 200ms cubic-bezier(0.55, 0, 0.1, 1);
  padding: 15px 15px;
}
.okayNav__nav--visible a:hover {
  color: #546edb;
}
/* Link styling for the off-screen part of the nav */
.okayNav__nav--invisible {
  position: fixed;
  top: 70px;
  bottom: 0;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  background: #fff;
}
.okayNav__nav--invisible a {
  background: #fff;
  width: 240px;
  display: block;
  padding: 15px;
}
.okayNav__nav--invisible.nav-left {
  left: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.okayNav__nav--invisible.nav-right {
  right: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.okayNav__nav--invisible.transition-enabled {
  transition: -webkit-transform 400ms cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 400ms cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 400ms cubic-bezier(0.55, 0, 0.1, 1),
    -webkit-transform 400ms cubic-bezier(0.55, 0, 0.1, 1);
}
.okayNav__nav--invisible.nav-open {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
/* Kebab icon */
.okayNav__menu-toggle {
  position: relative;
  transition: -webkit-transform 400ms cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 400ms cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 400ms cubic-bezier(0.55, 0, 0.1, 1),
    -webkit-transform 400ms cubic-bezier(0.55, 0, 0.1, 1);
  cursor: pointer;
  width: 40px;
  height: 20px;
  float: left;
  z-index: 1;
  top: 15px;
}
.okayNav__menu-toggle.okay-invisible {
  position: absolute;
  opacity: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}
.okayNav__menu-toggle span {
  display: block;
  position: absolute;
  margin: auto;
  height: 4px;
  width: 4px;
  background: #2e2e33;
  border-radius: 50%;
  left: 0;
  right: 0;
  pointer-events: none;
}
.okayNav__menu-toggle span:nth-child(1) {
  top: 0;
}
.okayNav__menu-toggle span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.okayNav__menu-toggle span:nth-child(3) {
  bottom: 0;
}
.okayNav__menu-toggle.icon--active {
  /* Kebab icon when off-screen nav is open */
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.okayNav__menu-toggle.icon--active span {
  background: #546edb;
}

/* header {
  background: #00171f;
  margin: 0;
  font-size: 1.5rem;
  font-family: "Playfair Display", serif;
  color: #f6c9ab;
  padding: 1.5rem 0;
  text-align: center;
}

header .logo {
  font-size: 2.5rem;
  font-weight: bold;
  font-family: "Playfair Display", serif;
  text-align: center;
}

header nav ul {
  list-style: center;
}

header nav ul li {
  display: inline;
  margin: 0 1rem;
} */

/* ul {
    margin: 0;
    padding: 0;
    list-style: none;
  } */

/* header nav ul li a {
    color: #fff;
    text-decoration: none;
  } */

/* header nav ul li a.menu-link {
    float: right;
    display: block;
    padding: 1em;
    color: #fff;
    text-decoration: none;
  } */

/* a:focus,
  button:focus {
    outline: 2px dashed #ff6347;
    outline-offset: 4px;
  } */

/* a.menu-link {
  
    display: block;
    padding: 1em;
    text-decoration: none;
    font-size: 1.75rem;
    color: #f6c9ab;
  } */

/* 
  nav[role="navigation"] {
    clear: both;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  } */

/* .js nav[role="navigation"] {
    overflow: hidden;
    max-height: 0;
  } */
/* nav[role="navigation"].active {
    max-height: 15em;
  } */

/* nav[role="navigation"] ul {
    margin: 0;
    padding: 0;
    border-top: 1px solid #808080;
  }
  nav[role="navigation"] li a {
    display: block;
    padding: 0.8em;
    border-bottom: 1px solid #808080;
    color: #f6c9ab;
  } */

/* ul {
  margin: 0;
  padding: 0;
  list-style: none;
} */

.hero {
  /* background: url("hero.jpg") no-repeat center center/cover; */
  color: #00171f;
  padding: 0rem 0;
  text-align: center;
  font-family: "Playfair Display", serif;
}

.hero h1 {
  font-size: 2.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 6rem;
}

.cta-button {
  background: #ff6347;
  color: #fff;
  padding: 0.7rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  width: 18rem;
}

.cta-button:hover {
  background: #ff4500;
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.close-button {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-button:hover,
.close-button:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.modal form label {
  display: block;
  margin: 15px 0 5px;
}

.modal form input,
.modal form textarea,
.modal form button {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
}

/* Form input and button styles */
.modal form label {
  display: block;
  margin: 15px 0 5px;
  font-weight: bold;
}

.modal form input,
.modal form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  box-sizing: border-box;
}

.modal form input:focus,
.modal form textarea:focus {
  outline: none;
  border-color: #ff6347;
  box-shadow: 0 0 5px rgba(255, 99, 71, 0.5);
}

.modal form button {
  background: #ff6347;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.modal form button:hover {
  background: #ff4500;
}

.about-us {
  margin: auto;
  text-align: justify;
  width: 60%;
}
.services-overview {
  width: 60%;
  margin: auto;
}
.testimonials,
.blog-posts {
  padding: 2rem;
  text-align: center;
  font-family: "Playfair Display", serif;
}

.about-us img {
  max-width: 100%;
  height: auto;
  margin-top: 5rem;
}

.services-overview .service {
  display: inline-block;
  width: 30%;
  margin: 1%;
  background: #fff;
  padding: 1rem;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.services-overview .service img {
  max-width: 100%;
  height: auto;
  border-bottom: 1px solid #ddd;
  margin-bottom: 1rem;
}

.services-overview .service h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.testimonials p {
  margin-bottom: 1rem;
}

.blog-posts article {
  background: #fff;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

footer {
  background: #00171f;
  color: #f6c9ab;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}

/* Social media icons */
footer a i.fab {
  margin: 0 10px;
  color: #ff4500; /* Change to your preferred color */
  text-decoration: none;
  font-size: 2.5rem; /* Increase the font size */
  transition: color 0.3s;
}

footer a i.fab:hover,
footer a i.fab:visited {
  color: #ff6347; /* Change to your preferred hover color */
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-overview .service {
    width: 50%;
    margin-bottom: 1rem;
  }

  .site-logo {
    transition: color 200ms cubic-bezier(0.55, 0, 0.1, 1);
    color: #f6c9ab;
    font-size: 1.5rem;
  }

  .cta-button {
    background: #ff6347;
    color: #fff;
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1rem;
  }

  .cta-button:hover {
    background: #ff4500;
  }
}

@media screen and (min-width: 48.25em) {
  a.menu-link {
    float: left;
    display: box;
  }
  .js nav[role="navigation"] {
    max-height: none;
  }
  nav[role="navigation"] ul {
    margin: 0 0 0 -0.25em;
    border: 0;
    width: 3em;
  }

  nav[role="navigation"] li {
    display: inline-block;
    margin: 0 0.25em;
  }
  nav[role="navigation"] li a {
    border: 0;
    text-decoration: none;
  }
}
/* nav mnu nds */
