/* Variables for easier color management */
/* Define font face for Playfair Display */
@font-face {
  font-family: "Playfair Display";
  src: url("/assets/fonts/PD-static/PlayfairDisplay-Regular.ttf") format("truetype");
  /* Add other formats if available */
  font-weight: normal;
  font-style: normal;
}
/* Apply fonts to elements */
body {
  font-family: "Playfair Display", Arial, sans-serif;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", Arial, sans-serif;
  /* Fallback to Arial or sans-serif if 'Playfair Display' fails to load */
}

p {
  font-family: "Playfair Display", Arial, sans-serif;
  /* Fallback to Arial or sans-serif */
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0);
  transition: top 0.3s;
}
header nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  /* Media query for screens 768px and smaller */
}
header nav .logo {
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
}
header nav .nav-links-regular {
  list-style: none;
  display: flex;
  flex: 1;
  justify-content: space-between;
}
header nav .nav-links-regular li {
  flex: 1;
  text-align: center;
}
header nav .nav-links-regular li a {
  color: black;
  text-decoration: none;
  font-size: 1rem;
}
header nav .nav-links-regular li a:hover {
  color: #f5f5f5;
}
header nav .hamburger-menu {
  display: none; /* Hide by default */
}
@media screen and (max-width: 768px) {
  header nav .hamburger-menu {
    display: block; /* Show the hamburger menu */
    cursor: pointer;
    position: fixed;
    top: 60px;
    left: 50px;
    font-size: 22px;
    color: rgb(0 72 105);
  }
  header nav .nav-links-regular {
    display: none; /* Hide the regular nav-links */
  }
}

.nav-img-link {
  display: flex;
  justify-content: center;
}
.nav-img-link img {
  width: 70%;
  min-width: 230px;
}

.slide-menu.open {
  left: 0; /* Slide menu into view */
}

.close-icon.open {
  display: block;
  margin-left: 90%;
  cursor: pointer;
  color: #fff;
  font-size: 30px;
}

.close-icon {
  display: none;
}

.slide-menu {
  position: fixed;
  top: 0;
  left: -250px; /* Initially off screen */
  width: 250px;
  height: 100%;
  background-color: #333;
  z-index: 900;
  transition: left 0.3s ease;
  padding-top: 60px; /* Adjust for top padding */
  /* Media query for screens 768px and smaller */
}
.slide-menu .nav-links {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.slide-menu .nav-links li {
  padding: 15px 20px;
  border-bottom: 1px solid #555;
}
.slide-menu .nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}
.slide-menu .nav-links li a:hover {
  color: rgba(108, 208, 255, 0.5);
}
.slide-menu .nav-img-link img {
  display: block;
  margin: 0 auto;
  padding: 20px;
  max-width: 80%;
}
@media screen and (max-width: 768px) {
  .slide-menu .slide-menu {
    width: 80%;
    left: -80%; /* Off screen initially */
  }
}

.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-section .carousel {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-section .carousel .carousel-inner {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 300%;
}
.hero-section .carousel .carousel-inner .carousel-item {
  width: 100%;
  height: 100%;
  flex: 0 0 100%;
}
.hero-section .carousel .carousel-inner .carousel-item img {
  width: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-section .carousel .carousel-inner .carousel-item.active {
  display: block;
}
.hero-section .carousel .carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}
.hero-section .carousel .carousel-controls button {
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  padding: 1rem;
  cursor: pointer;
}
.hero-section .carousel .carousel-controls button:hover {
  background: rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
  .hero-section {
    height: auto;
  }
}
.header-text-section {
  padding: 7rem;
  background-color: #fff;
  text-align: center;
}
.header-text-section h1 {
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 1rem;
}
.header-text-section h2 {
  font-size: 2rem;
  color: #000000;
  margin-bottom: -1rem;
}
.header-text-section p {
  font-size: 1.2rem;
  color: #000000;
  width: 80%;
  margin: auto;
}
@media (max-width: 1200px) {
  .header-text-section {
    padding: 5rem;
  }
  .header-text-section h1 {
    font-size: 2.2rem;
  }
  .header-text-section h2 {
    font-size: 1.8rem;
  }
  .header-text-section p {
    font-size: 1.1rem;
  }
}
@media (max-width: 992px) {
  .header-text-section {
    padding: 4rem;
  }
  .header-text-section h1 {
    font-size: 2rem;
  }
  .header-text-section h2 {
    font-size: 1.6rem;
  }
  .header-text-section p {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .header-text-section {
    padding: 3rem;
  }
  .header-text-section h1 {
    font-size: 1.8rem;
  }
  .header-text-section h2 {
    font-size: 1.4rem;
  }
  .header-text-section p {
    font-size: 0.9rem;
  }
}
@media (max-width: 576px) {
  .header-text-section {
    padding: 2rem;
  }
  .header-text-section h1 {
    font-size: 1.6rem;
  }
  .header-text-section h2 {
    font-size: 1.2rem;
  }
  .header-text-section p {
    font-size: 0.8rem;
    width: 90%;
  }
}

.photo-section {
  display: flex;
  justify-content: space-around;
  padding: 2rem 0;
  background-color: #1d1d1d;
}
.photo-section .photo-card {
  position: relative;
  width: 30%;
}
.photo-section .photo-card img {
  width: 100%;
  height: auto;
}
.photo-section .photo-card .photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  opacity: 1;
  transition: opacity 0.3s;
}
.photo-section .photo-card .photo-overlay h2 {
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
}
.photo-section .photo-card .photo-overlay p {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.12em;
}
.photo-section .photo-card:hover .photo-overlay {
  opacity: 0;
}
@media (max-width: 1200px) {
  .photo-section .photo-card {
    width: 45%;
  }
  .photo-section .photo-overlay h2 {
    font-size: 1.3rem;
  }
  .photo-section .photo-overlay p {
    font-size: 0.9rem;
  }
}
@media (max-width: 992px) {
  .photo-section {
    flex-direction: column;
    align-items: center;
  }
  .photo-section .photo-card {
    width: 80%;
    margin-bottom: 2rem;
  }
  .photo-section .photo-overlay h2 {
    font-size: 1.2rem;
  }
  .photo-section .photo-overlay p {
    font-size: 0.85rem;
  }
}
@media (max-width: 768px) {
  .photo-section .photo-card {
    width: 90%;
  }
  .photo-section .photo-overlay h2 {
    font-size: 1rem;
  }
  .photo-section .photo-overlay p {
    font-size: 0.75rem;
  }
}
@media (max-width: 576px) {
  .photo-section .photo-card {
    width: 100%;
  }
  .photo-section .photo-overlay h2 {
    font-size: 0.9rem;
  }
  .photo-section .photo-overlay p {
    font-size: 0.7rem;
  }
}

.about {
  display: flex;
  padding: 2rem;
  background-color: #f5f5f5;
  margin: 0 auto;
  align-items: center; /* Center vertically */
  line-height: 2;
}
@media (max-width: 992px) {
  .about {
    flex-direction: column;
    padding: 1.5rem;
  }
}

.about-text {
  width: 60%;
}
.about-text h1 {
  font-size: 2rem;
  margin: 0;
}
.about-text p {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}
.about-text a {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background-color: #000000;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}
.about-text a:hover {
  background-color: black;
}
@media (max-width: 992px) {
  .about-text {
    width: 100%;
    text-align: center;
  }
  .about-text h1 {
    font-size: 1.8rem;
  }
  .about-text p {
    font-size: 1rem;
  }
  .about-text a {
    margin-top: 0.5rem;
    padding: 0.4rem 0.8rem;
  }
}
@media (max-width: 768px) {
  .about-text h1 {
    font-size: 1.6rem;
  }
  .about-text p {
    font-size: 0.9rem;
  }
  .about-text a {
    padding: 0.3rem 0.6rem;
  }
}
@media (max-width: 576px) {
  .about-text h1 {
    font-size: 1.4rem;
  }
  .about-text p {
    font-size: 0.8rem;
  }
  .about-text a {
    padding: 0.2rem 0.5rem;
  }
}

.about-image {
  width: 40%;
  padding-left: 2rem;
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}
.about-image img {
  width: 100%;
  -webkit-clip-path: circle(50% at 50% 50%);
          clip-path: circle(50% at 50% 50%);
  height: auto;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .about-image {
    width: 100%;
    padding-left: 0;
    margin-top: 1.5rem;
  }
  .about-image img {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .about-image img {
    width: 70%;
  }
}
@media (max-width: 576px) {
  .about-image img {
    width: 60%;
  }
}

.testimonial {
  position: relative;
  height: 60vh;
  background: url("/assets/images/hero-camera.jpg") no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}
.testimonial .testimonial-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.testimonial .testimonial-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 1rem;
}
.testimonial .testimonial-content blockquote {
  font-size: 1.5rem;
  margin: 0 0 1rem;
  font-style: italic;
  letter-spacing: 0.06em;
}
.testimonial .testimonial-content .author {
  font-size: 1.2rem;
  margin: 0 0 1rem;
  font-weight: bold;
  padding: 20px;
  letter-spacing: 0.12em;
}
.testimonial .testimonial-content .cta-button {
  padding: 0.75rem 1.5rem;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 5px;
}
.testimonial .testimonial-content .cta-button:hover {
  background-color: #f5f5f5;
}
@media (max-width: 1200px) {
  .testimonial .testimonial-content blockquote {
    font-size: 1.4rem;
  }
  .testimonial .testimonial-content .author {
    font-size: 1.1rem;
  }
  .testimonial .testimonial-content .cta-button {
    padding: 0.7rem 1.4rem;
    font-size: 0.95rem;
  }
}
@media (max-width: 992px) {
  .testimonial .testimonial-content blockquote {
    font-size: 1.3rem;
  }
  .testimonial .testimonial-content .author {
    font-size: 1rem;
  }
  .testimonial .testimonial-content .cta-button {
    padding: 0.65rem 1.3rem;
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  .testimonial .testimonial-content blockquote {
    font-size: 1.2rem;
  }
  .testimonial .testimonial-content .author {
    font-size: 0.95rem;
  }
  .testimonial .testimonial-content .cta-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
}
@media (max-width: 576px) {
  .testimonial .testimonial-content blockquote {
    font-size: 1.1rem;
  }
  .testimonial .testimonial-content .author {
    font-size: 0.9rem;
  }
  .testimonial .testimonial-content .cta-button {
    padding: 0.55rem 1.1rem;
    font-size: 0.8rem;
  }
}/*# sourceMappingURL=index.css.map */