
html,
body {
  height: 100%;
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #3e2e1e;
  background-color: #fff8f1;
  line-height: 1.6;
}
a {
  color: #3e2e1e;
  text-decoration: none;
}
.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  padding: 1em;
}
/* Header */
header {
  background: #e6cfc2;
  text-align: center;
  padding: 2em 1em;
}
.logo {
  height: 200px;
  width: auto;
  margin-right: 10px;
}
.header-container h1 {
  margin: 0 0 1em 0;
  font-size: 2.5em;
}
nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 1.5em;
  flex-wrap: wrap;
  justify-content: center;
}
nav li {
  display: inline;
}
nav a {
  padding: 0.5em 1em;
  background-color: #d8b9a0;
  border-radius: 5px;
  transition: background-color 0.3s;
}
nav a:hover {
  background-color: #c9a88d;
}
/* Intro section background and text */
.intro {
  background: #f5e6dc; 
  text-align: center;
  padding: 3em 1em;
  color: #3e2e1e; 
  font-family: Arial, sans-serif;
}
/* Headings & paragraph */
.intro h2 {
  margin-bottom: 0.5em;
  font-size: 2em;
  font-weight: bold;
}
.intro p {
  font-style: italic;
  color: #5c4b3a;
  margin-bottom: 2em;
}
/* Owl carousel container */
.video-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 800px;
}
/* Items opacity and scaling */
.video-section .item {
  width: 670px;        
  height: 500px;       
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(61, 46, 30, 0.2);
  background-color: #f5e6dc;
  border: 5px solid #d8b9a0;
  opacity: 0.4;
  transition: 0.4s ease all;
  transform: scale(.5);
}
/* Make sure both video and image scale properly */
.video-section video,
.video-section img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 0;
}
.video-section .owl-item.active .item {
  opacity: 1;
  transform: scale(1);
  border-color: #c9a88d; 
}
.video-section video {
  width: auto;
  height: auto;
  border-radius: 12px;
  display: block;
}
.video-section {
  position: relative;
}
/* Owl Nav Container */
.video-section .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}
/* Shared button styles */
.video-section .owl-nav button {
  position: absolute;
  background-color: #d8b9a0;
  border-radius: 50%;
  color: #3e2e1e;
  font-size: 2em;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  transition: background-color 0.3s;
  cursor: pointer;
}
.video-section .owl-nav button:hover {
  background-color: #c9a88d !important;
}
.video-section .owl-nav .owl-prev {
  left: 10px;
}
.video-section .owl-nav .owl-next {
  right: 10px;
}
/* Meet Nat Section */
.meet-nat-section {
  background-color: #fff8f1;
  padding: 3em 1em;
}
.meet-nat-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2em;
}
.nat-photo img.framed-photo {
  width: 250px;
  border: 8px solid #d8b9a0;
  padding: 8px;
  background-color: #fffaf7;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}
.nat-text {
  max-width: 600px;
  text-align: center;
}
.nat-text h3 {
  text-align: center;
  font-size: 1.8em;
  margin-bottom: 0.5em;
  color: #3e2e1e;
}
.nat-description {
  font-style: italic;
  color: #3e2e1e;
  line-height: 1.6;
}
/* Services Section */
.services {
  background-color: #f9f3ef;
}
.services ul {
  list-style: square inside;
  padding-left: 1em;
}
.about{
  padding: 2em 0;
  background-color: #fffaf7;
}
/* Footer */
footer {
  background: #3e2e1e;
  color: #fff8f1;
  text-align: center;
  padding: 1em 0;
}
/* Contact/Follow Section*/
.contact-follow {
  color: #3e2e1e;
  background-color: #755745;
  padding: 2em 0;
}
.contact-grid {
  display: flex;
  flex-direction: row;
  gap: 2em;
}
.contact,
.follow {
  flex: 1;
}
.follow {
  text-align: center;
}
.instagram-icon {
  width: 40px;
  height: 40px;
  margin-top: 0.5em;
}
/* Services Page */
.services-page {
  background-color: #fffaf7;
  padding: 3em 1em;
}
.services-page h2 {
  margin-top: 2em;
  color: #3e2e1e;
  border-bottom: 2px solid #d8b9a0;
  padding-bottom: 0.5em;
}
.service {
  margin-bottom: 1.5em;
}
.service h4 {
  color: #3e2e1e;
  margin-bottom: 0.3em;
}
.service p {
  margin: 0;
  font-style: italic;
  color: #5c4b3a;
}
/* Contact Page */
.maternity-banner {
  background-color: #d8b9a0;
  color: #3e2e1e;
  text-align: center;
  padding: 0.5em 1em;
  font-weight: bold;
  font-size: 1em;
  font-family: Arial, sans-serif;
}
.contact-section {
  background-color: #fffaf7;
  padding: 3em 1em;
  display: flex;
  justify-content: center;
}
.contact-form-container {
  background: #fff;
  border: 2px solid #d8b9a0;
  border-radius: 12px;
  padding: 2em;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.contact-form-container h2 {
  text-align: center;
  margin-bottom: 1em;
  color: #3e2e1e;
}
.contact-form-container form {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.contact-form-container input,
.contact-form-container textarea {
  padding: 0.8em;
  border: 1px solid #d8b9a0;
  border-radius: 8px;
  font-size: 1em;
}
.contact-form-container button {
  padding: 0.8em;
  background-color: #d8b9a0;
  color: #3e2e1e;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact-form-container button:hover {
  background-color: #c7a789;
}
.creator-link {
  color: white;
  text-decoration: none;
}
.creator-link:hover {
  text-decoration: underline;
}
/* Mobile */
@media (max-width: 1000px) {
  .video-section .item {
    margin: 0 10px;
    transform: scale(0.9);
  }
}
@media (max-width: 699px) {
  .contact-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .contact,
  .follow {
    width: 100%;
  }
  .meet-nat-grid {
    flex-direction: column;
    text-align: center;
  }
  .nat-text {
    text-align: center;
  }
  .logo {
    height: 160px;
  }
  .video-section .item {
    width: 100%;
    height: 300px;
  }
  .video-section video,
  .video-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .intro h2 {
    font-size: 1.5em;
  }
  .intro p {
    font-size: 1em;
  }
  .contact-form-container {
    padding: 1em;
  }
  footer {
    font-size: 0.9em;
  }
  nav ul {
    flex-direction: row;
    gap: 2.2em;
  }
  nav a {
    display: inline-block;
    width: 100%;
    text-align: center;
  }
  
}