/* Import Custom Fonts */
@font-face {
  font-family: 'YourCustomFont';
  src: url('fonts/YourCustomFont-Regular.ttf') format('truetype');
}

/* Promenade Regular — alias both names to the SAME file */
@font-face {
  font-family: "Promenade";
  src: url("/FONTS/Jen-Wagner-Promenade-Regular.woff2") format("woff2"),
       url("/FONTS/Jen-Wagner-Promenade-Regular.woff") format("woff"),
       url("/FONTS/Jen-Wagner-Promenade-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  font-synthesis: none; /* prevents fake bold/italic */
}



/* Paso Robles Regular */
@font-face {
  font-family: 'Paso Robles Regular';
  src: url('fonts/PasoRobles-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Peach Flamingo Sans (OTF + TTF for browser fallback) */
@font-face {
  font-family: 'Peach Flamingo Sans';
  src: url('FONTS/Peachflamingosans-G3aJO.otf') format('opentype'),
       url('FONTS/PeachflamingoSans-j94Z9.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Peach Flamingo Script */
@font-face {
  font-family: 'Peach Flamingo Script';
  src: url('FONTS/PeachflamingoScript-zrxdX.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Qiblah Regular */
@font-face {
  font-family: 'Qiblah';
  src: url('FONTS/Qiblah-BF6583c4f5d1831.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* Qiblah Italic */
@font-face {
  font-family: 'Qiblah Italic';
  src: url('FONTS/Qiblah-Italic-BF6583c4f550e78.otf') format('opentype');
  font-weight: normal;
  font-style: italic;
}

/* Mynabali Script Demo */
@font-face {
  font-family: 'Mynabali Script';
  src: url('FONTS/utmynabaliscriptdemo-0vbxg.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* Mynabali Serif Demo */
@font-face {
  font-family: 'Mynabali Serif';
  src: url('FONTS/utmynabaliserifdemo-wpeao.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --primary-color: #284584;    /* Logo color - Deep Blue */
  --secondary-color: #aec3d1;  /* Complementary Moderate Blue */
  --accent-color: #e7e5d8;     /* Accent Color - Soft Orange */
  --background-color: #eeede6; /* Light Gray Background */
  --text-color: #2A2D36;       /* Dark Gray for Headings */
  --body-text-color: #5F6364;  /* Medium Gray for Body Text */
  --white-color: #FFFFFF;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 400;       
  font-size: 16px;
  letter-spacing: 0px;
  line-height:1.4;
  font-optical-sizing: auto;
  font-style: normal;
  color: var(--body-text-color);
  background-color: var(--background-color);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}


/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  padding: 0px;
  background: var(--white-color);
  border-radius: 0 0 2px 2px;
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
  position: relative;
}

.logo-box {
  background-color: var(--primary-color);
  color: var(--background-color);
  padding: 20px 30px;
  font-size: 3em;
  font-weight: normal;
  font-family: "Promenade", serif;
  font-weight: normal;
  letter-spacing: 1px;
  line-height: 1.4rem;
  font-style: normal;
  position: absolute;
  top: 0;
  left: 0;
  margin-left: -60px;
  height: 95px;
  display: flex;
  align-items: center;
  border-radius: 0 0 2px 2px;
  z-index: 1010;
}

.nav-container {
  margin-left: auto;
  padding: 0 2em;
  box-sizing: border-box;
  position: relative; /* Added for positioning in media queries */
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  padding-left: 20px;
  margin-left: 20px;
}

.nav-links li {
  margin: 0 20px;
}

.nav-links a {
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;        /* Thin */
  font-size: 14px;
  letter-spacing: 2.8px;
  color:  #2A2D36;          /* From your screenshot */
  text-transform: uppercase; /* optional if you want the same spaced-out look */
}


.nav-links a:hover {
  color: var(--accent-color);
}


/* Nav Toggle for mobile */
.nav-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
}



/* Hero Section */
/* Overlapping Content */
.overlap-content {
  position: absolute;
  top: 80%; 
  left: 50%;
  transform: translateX(-50%);
  z-index: 2; 
  background-color: rgba(255, 255, 255, 0.9); 
  padding: 20px;
}

.hero {
  position: relative;
  height: 100vh;
  background: url('Resources/pics/lookout.webp') no-repeat center center/cover;
  z-index: 1;
  background-size: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 70%,   /* transparent at the top */
    #eeede6 100%            /* fade into new background */
  );
}


/* Logo on Hero */
.logo-on-hero {
  position: absolute;
  top: 43%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.3; /* Slight transparency */
  max-width: 40%; /* Adjust as needed for size */
  min-width: 300px;
  width: 100%;
  height: auto;
  z-index: 2;
}

/* Hero Content */
.hero-content {
  position: absolute; 
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%); 
  color: var(--background-color);
  text-align: center;
  z-index: 3; 
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  font-family: "Promenade", serif !important;
  font-weight: normal; 
  color: var(--background-color); 
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  padding: 10px 20px; 
}

.hero-content p {
    
  font-size: 1.2rem;
  margin-bottom: 30px;
}



.hero-content {
  position: absolute; 
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%);
  color: var(--background-color);
  text-align: center;
  z-index: 3;
}

/* Text Styling */
.hero-content h1 {
  font-size: 6rem;

  margin-bottom: 10px;
  font-family: "Promenade", serif !important;;
  font-weight: normal;
  font-size: 6rem;            /* scaled size */
  line-height: 4rem;        /* ~0.8 ratio of font-size, matches 145.6px:182px */
  letter-spacing: 0px;
  color: #ffffff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  padding: 10px 20px;
}

.hero-content p {
font-family: "Peach Flamingo Script", cursive;
color: #ffffff;
  font-size: 3rem;
  -webkit-text-stroke: 0.3px #ffffff;
  line-height: 2.4rem;       /* ~0.8 ratio of font-size, matches 36px:45px */
  letter-spacing: 0px;
  margin-top: -10px;
  margin-bottom: 30px;
}

.hero .btn { 
  color: var(--white-color);
  border: 1.8px solid var(--white-color);
  border-radius: 30px;
  padding: 12px 25px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.hero .btn:hover {
  background-color: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}



/* About Preview Section (Discover)*/
.about-preview {
  padding: 80px 0;
  background-color: var(--background-color);
  margin-bottom: 50px;

}

.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-image {
  flex: 1;
}

.about-image img {
  position: relative;
  width: 170%;
  height: auto;
  border-radius: 8px;
  left: -32%;
}

.about-text {
  flex: 1;
  position: relative;
  padding: 20px;
  right: -5%;
}


.discover-container {
  position: relative;
  display: inline-block;
}



.about-text h2 {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-family: "Promenade", serif;
  letter-spacing: 2px;
  margin-top: -20px;
  font-weight: 100;
  padding: 0;
  line-height: 45px;
  position: relative;
}

.about-text h3 {
  color: var(--text-color);
  font-family: "Peach Flamingo Script", cursive;
  font-weight: normal;
  font-size: 4rem;
  line-height: 40px;       /* ~0.8 ratio of font-size, matches 36px:45px */
  letter-spacing: 3px;
  margin-top: -10px;
  margin-bottom: 0px;
  padding: 0;
  position: relative;
}

.about-text h2,
.about-text h3 {
  line-height: 1.2;
}

.about-text p {
  font-size: 1rem;
  line-height:1.4;
  color: var(--body-text-color);
  margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
  font-weight: 400;

}

.about-text .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px; /* space between text and arrow */
  
  background: none; /* remove button background */
  border: none;     /* remove button border */
  padding: 0;       /* remove padding box */
  
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Add the arrow */
.about-text .btn::after {
  content: "➔";          /* simple right arrow */
  font-size: 1.2em;
  line-height: 1;
  transition: transform 0.3s ease;
}

/* Hover effect */
.about-text .btn:hover {
  color: var(--secondary-color);
  background: transparent;
}


.about-text .btn:hover::after {
  transform: translateX(4px); /* slide arrow on hover */
}




/* ================================
   About Us (Our Story)
   ================================ */
:root{
  /* % of the section reserved for the LEFT (plain white) side */
  --about-left: 50%;      /* change to 50%, 60%, etc., to adjust the split */
}

.about-us-preview {
  position: relative;
  overflow: visible;
}




/* Two-layer background:
   1) left panel = solid white
   2) right panel = stripes image, pinned to the right
   NOTE: keep the % in BOTH places in sync with --about-left
*/
.about-us-background {
  padding: 40px 0;
  background-color: #aec3d1;
  background-image:
    linear-gradient(to right, var(--secondary-color) 0 var(--about-left), transparent var(--about-left)),
    url("Resources/pics/striped-background-right.png");
  background-repeat: no-repeat, no-repeat;
  background-position: left top, right top;
  /* right pane width = 100% - left pane width */
  background-size: 100% 100%, calc(100% - var(--about-left)) 100%;
}

/* CONTENT ROW */
.about-us-content {
  display: flex;
  align-items: center;
  gap: clamp(40px, 8vw, 100px);
  position: relative;
  z-index: 1;                                  /* above the bg layers */
  padding-left: clamp(80px, 10vw, 180px);
  padding-right: clamp(40px, 6vw, 100px);
}

/* LEFT: TEXT COLUMN (stays on white) */
.about-us-text {
  flex: 1 1 520px;
  max-width: 680px;
  color: var(--text-color);
}

/* Headings & copy */
.about-us-text h3 {
  color: var(--text-color);
  font-family: "Peach Flamingo Script", cursive;
  font-weight: normal;
  font-size: 4rem;
  letter-spacing: 2px;
  line-height: 1.2;
  margin: -10px 0 0;
}
.about-us-text h2 {
  font-size: 5rem;
  font-family: "Promenade", serif;
  font-weight: 100;
  letter-spacing: 2px;
  color: var(--primary-color);
  line-height: 1.2;
  margin: -30px 0 10px;
}
.about-us-text p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22.4px;
  margin-bottom: 30px;
  color: var(--text-color);
  max-width: 600px;
}

/* Link-style button with arrow */
.about-us-text .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.about-us-text .btn::after {
  content: "➔";
  font-size: 1.2em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.about-us-text .btn:hover { 
  color: var(--accent-color);
  background: transparent;
}
.about-us-text .btn:hover::after { 
  transform: translateX(4px); 
}

/* RIGHT: Polaroid */
.polaroid {
  flex: 0 1 380px;
  max-width: 440px;
  margin: 0 auto;   /* centers it horizontally */
  background: #fff;
  padding: 16px 16px 38px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow:
    0 22px 60px rgba(0,0,0,0.18),
    0 6px 18px rgba(0,0,0,0.08);
  transform: rotate(2deg);
  transform-origin: 50% 50%;
  position: relative;                           /* needed for mobile ::before stripes */
}

.polaroid img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
}

.polaroid:hover {
  transform: rotate(2.4deg) translateY(-2px);
  box-shadow:
    0 26px 70px rgba(0,0,0,0.2),
    0 8px 20px rgba(0,0,0,0.1);
}

/* ================================
   Responsive (stacked)
   ================================ */
@media (max-width: 900px) {
  .about-us-content {
    flex-direction: column;
    gap: 24px;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    align-items: stretch;  /* text stays left */
    text-align: left;         /* left align text */
  }

  .about-us-background {
    /* stripes only (no left/right split on mobile) */
    background-image: url("Resources/pics/striped-background-right.png");
    
    background-repeat: no-repeat;
    background-position: center top;
    /* make them a bit taller so the polaroid always has stripes behind it */
    background-size: 100% 130%;
    padding-bottom: 60px; /* prevents cutoff at the bottom */
  }

.about-us-text {
  background-color: var(--secondary-color);
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  padding: 40px 22px 35px; /* reduced bottom padding */
  margin: -45px 0 18px 0; /* pulls blue up to cover top of stripes */
  box-sizing: border-box;
  z-index: 2; /* ensure it sits above the stripes */
}


  .polaroid {
    margin-top: clamp(20px, 4vw, 40px);
    transform: rotate(1deg);
    max-width: 90%;
    z-index: 1;
  }

    .about-us-text h2 {
    font-size: 4rem;     /* slightly smaller than your desktop size */
    letter-spacing: 1.5px; /* optional: tighten spacing for better fit */
    line-height: 1.1;
  }

    .about-us-text h3 {
    font-size: 3rem;
    padding-bottom: 10px;
  }

}







/* Listings Section */
.listings {
  position: relative;
  padding: 80px 0;
  background-color: var(--background-color);
  margin-bottom: 50px;
}

.listings-text {
  position: relative;
  text-align: center;
  margin-bottom: 60px;
}



.listings-text h3 {
  color: var(--text-color);
  font-family: "Peach Flamingo Script", cursive;
  font-weight: normal;
  font-size: 4rem;
  line-height: 40px;       /* ~0.8 ratio of font-size, matches 36px:45px */
  letter-spacing: 3px;
  margin-top: -10px;
  margin-bottom: 0px;
  position: relative;
  z-index: 1;
}

.listings-text h2 {
  font-size: 5rem;
  margin-top: -10px;
  margin-bottom: 10px;
  font-family: "Promenade", serif;
  font-weight: 100;
  letter-spacing: 2px;
  color: var(--primary-color);
  line-height: 1.2;
  z-index: 1;
}

.listings-text a {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2.8px;
  color: var(--primary-color);
  text-decoration: none;

}

.listings-text a:hover {
  color: var(--secondary-color);
  background: transparent;
}

/* Grid Layout for Listings */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.listing-item {
  background-color: var(--white-color);
  border-radius: px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.listing-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}

.listing-images {
  display: flex;
  height: 250px;
  position: relative; 
}

.listing-images img {
  width: 50%;
  height: auto; 
}

.listing-price {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 10px 15px;
  border-radius: 2px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--primary-color);
  text-decoration: none;
  z-index: 2; 
}

.listing-details {
  padding: 18px 20px 22px;
  top: -5px; 
}

.listing-details h3 {
  font-family: "Promenade", serif;
  color: var(--primary-color);
  font-weight: 400;
  font-size: 2.5rem;
  margin-top: 6px;
  margin-bottom: 0px;
  letter-spacing: 1px;
  line-height: 1.1;
  top: -5px;
}

.listing-details p {
  margin-top: 6px;
  margin-bottom: 8px;
  color: var(--body-text-color);
  line-height: 1.7;
}

.listing-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.listing-features span {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: var(--body-text-color);
}

.listing-features i {
  margin-right: 8px;
  color: var(--primary-color);
}

/* Listing "View Details" Button */
.listing-details .btn {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  padding: 12px 25px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-block;
}
.listing-details .btn:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background: transparent;
  transform: translateY(-2px);
}




/* ================================
   CONTACT SECTION
   ================================ */
.contact-preview {
  position: relative;
  z-index: 1;
  background-color: transparent;
}

.contact-background {
  background: url("Resources/pics/sand.webp") no-repeat center center / cover;
  padding: 60px 0 140px; /* slightly less top padding to pull it up */
  position: relative;
  text-align: center;
  transform: none; /* moved section upward slightly */
  z-index: 1;
  overflow: hidden; /* keeps content contained during transform */
  background-attachment: fixed;
}

.contact-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

/* HEADING */
.contact-heading {
  position: relative;
  z-index: 2;
  font-family: "Promenade", serif;
  font-weight: 100;
  font-size: clamp(50px, 12vw, 110px);
  letter-spacing: 3px;
  color: var(--accent-color);
  margin-bottom: 80px; /* more space between heading and boxes */
  margin-top: 10px;
}

/* BOX CONTAINER */
.contact-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* BOXES */
.contact-box {
  border: 1px solid var(--accent-color);
  flex: 1 1 300px;
  max-width: 350px;
  box-sizing: border-box;
  color: var(--accent-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 30px;
  text-align: center;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.contact-box:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  transform: translateY(-4px);
}

/* BOX CONTENT */
.contact-box h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.contact-box p {
  font-size: 1rem;
  line-height: 1.4;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.contact-box a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-box a:hover {
  color: var(--secondary-color);
}

/* BUTTON */
.contact-box .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: 16px; /* space above button */
}

.contact-box .btn::after {
  content: "➔";
  font-size: 1.2em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.contact-box .btn:hover { 
  color: var(--secondary-color);
  background: transparent;
}

.contact-box .btn:hover::after { 
  transform: translateX(4px); 
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-background {
    background: url("Resources/pics/sand.webp") no-repeat center center / cover;
    padding: 80px 20px 120px; /* gives more vertical space for mobile */
    transform: none; /* prevent mobile overlap */
  }

  .contact-heading {
    font-size: 5rem;     /* slightly smaller than your desktop size */
    letter-spacing: 1.5px; /* optional: tighten spacing for better fit */
    line-height: 1.1;
    margin-top: -20px;
    margin-bottom: 50px;
  }

  .contact-content {
    flex-direction: column;
    align-items: center;
  }

  .contact-box {
    width: 90%;
    max-width: 400px;
  }
}

/* ================================
   TESTIMONIAL SECTION
   ================================ */
.testimonial-section {
  background-color: var(--secondary-color); /* soft blue */
  padding: 50px 20px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.testimonial-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 40px;
  box-sizing: border-box;
}

/* reduce spacing between border and section edge */
.testimonial-section::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid var(--primary-color);
  pointer-events: none; /* ensure it doesn’t interfere with content */
  z-index: 1;
}

.testimonial-container {
  position: relative;
  z-index: 2;
}

/* TEXT */

.testimonial-heading {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.testimonial-text {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto 40px;
}

p.testimonial-name {
  font-family: "Peach Flamingo Script", cursive;
  font-size: 3rem;
  color: var(--text-color);
  margin: 0;
}

/* === Testimonial Slider Extension === */
.testimonial-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hide all testimonials by default */
.testimonial-content {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease;
  max-width: 700px;
  margin: 0 40px;
}

/* Active testimonial visible */
.testimonial-content.active {
  display: block;
  opacity: 1;
}

/* Navigation Buttons */
.testimonial-btn {
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 2rem;
  cursor: pointer;
  padding: 10px;
  transition: color 0.3s ease, transform 0.2s ease;
  z-index: 3; /* keep above border */
}

.testimonial-btn:hover {
  color: var(--accent-color);
  transform: scale(1.1);
}

/* Button positioning */
.testimonial-btn.prev {
  position: absolute;
  left: -60px; /* Move slightly outside the testimonial area */
  top: 50%;
  transform: translateY(-50%);
}

.testimonial-btn.next {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
}

/* Keep everything aligned nicely */
.testimonial-content h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 30px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .testimonial-btn.prev {
    left: 10px;
  }

  .testimonial-btn.next {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .testimonial-container {
    padding: 60px 20px;
  }


  .testimonial-text {
    font-size: 0.95rem;
  }

  .testimonial-name {
    font-size: 1.8rem;
  }

  .testimonial-wrapper {
    flex-direction: column;
  }

  .testimonial-btn {
    position: static;
    margin: 10px;
  }
}




/* Footer Styles */
footer {
  background: url('Resources/pics/footer.webp') no-repeat center center; /* Set the background image */
  background-size: cover; /* Scale the image to cover the entire footer */
  color: var(--background-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  text-align: center;
  padding: 140px 0; /* Adjust the overall padding of the footer */
  position: relative; /* Set relative positioning to use absolute positioning inside */
  z-index: 3;
  margin-top: -30px; /* adjust overlap height */
}

.footer-container {
  margin-top: 100px; /* Add space from the top of the footer */
}

.footer-logo img {
  height: 50px;
}

.footer-links {
  margin-top: 20px;
}

.footer-links a {
  color: var(--white-color);
  margin-right: 15px;
  text-decoration: none;
  margin-top: 20px;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-social a {
  color: var(--white-color);
  margin-right: 15px;
  font-size: 1.5rem;
}

.footer-social a:hover {
  color: var(--secondary-color);
}

footer p {
  position: absolute; /* Use absolute positioning */
  bottom: 20px; /* Adjust this value to move the paragraph up or down */
  left: 50%; /* Center the paragraph horizontally */
  transform: translateX(-50%); /* Correct horizontal centering */
  font-size: 0.9rem;
  color: var(--white-color);
  font-weight: normal;
  text-shadow: #2A2D36;
}

/* Media Queries */

/* Below 1340px - Enable hamburger menu */
@media (max-width: 1340px) {
  /* Show the hamburger icon */
  .nav-toggle {
      display: block;
  }

  /* Hide navigation links */
  .nav-links {
      display: none;
      flex-direction: column;
      background: var(--white-color);
      position: absolute;
      top: 100%;
      right: 0;
      width: 200px;
      border-left: 1px solid #ccc;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  /* Show navigation when active */
  .nav-links.active {
      display: flex;
  }

  /* Adjust navigation links */
  .nav-links li {
      margin: 15px 0;
      text-align: right;
      padding-right: 20px;
  }

  .logo-box {
      margin-left: 0;    /* Remove negative margin */
      left: 0px;        /* Move the logo box inward */
       font-family: "Promenade", serif;
        font-weight: normal;
        font-size: 2em;
        letter-spacing: 1px;
  }
}

@media (max-width: 1111px) {
  .hero-content h1 {
    font-size: 2.5rem; /* Adjust to a smaller size */
  }
  .hero-content {
    width: 90%; /* Make the container a bit wider */
  }
}

/* Media Query for max-width: 900px */
@media (max-width: 900px) {


  .contact-text {
    background-color: var(--primary-color);
    /* Keep flex properties as they are to maintain the left alignment */
    margin-top: -100px;
    padding: 40px 20px;
  }

  .contact-text h4 {
    color: var(--accent-color);
  }
  
  .contact-text h3,
  .contact-text h2,
  .contact-text p,
  .contact-text a {
    color: var(--background-color);
    /* Keep text aligned to the left */
  }

  .contact-text .social-link a {
    color: var(--background-color);
    font-size: 1rem;
    text-decoration: none;
  }

  .contact-image {
    width: 100%;
    min-height: 300px;
  }

  /* Adjust pseudo-element positioning if necessary */
  .contact-text::before {
    left: 15%;
    transform: translateX(-50%) scaleX(1.5);
  }

  /* Keep the button aligned to the left */
  .contact-text .btn {
    align-self: flex-start;
  }
}

/* Media Query for max-width: 550px */
@media (max-width: 550px) {
  .contact-content {
    flex-direction: column;
    align-items: center; /* Center all children horizontally */
  }

  .contact-text {
    flex: none;
    max-width: 100%;
    text-align: center;
    margin-top: 0;
    padding: 40px 20px;
    margin-top: -80px;
  }

  .contact-text h4 {
    color: var(--accent-color);
  }
  
  .contact-text h3,
  .contact-text h2,
  .contact-text p,
  .contact-text a {
    color: var(--background-color);
    text-align: center;
  }

  .contact-text .social-link {
    justify-content: center;
  }

  .contact-text .social-link a {
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    color: var(--background-color);
    font-size: 1rem;
    text-decoration: none;
  }

  .contact-image {
    flex: none;
    width: 100%;
    min-height: 300px;
  }

  .contact-text::before {
    left: 50%;
    transform: translateX(-50%) scaleX(1.5);
  }

  /* Center the button */
  .contact-text .btn {
    align-self: center;
  }
}


/* Responsive Styles */
@media (max-width: 780px) {
  .about-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Reorder elements */
  .about-text {
    order: 1;
    padding: 20px;
    right: 0;
  }

  .about-image {
    order: 2;
    margin: 20px 0;
  }

  /* Adjust pseudo-element positioning */
  .about-text::before {
    left: 50%;
    transform: translateX(-50%) scaleX(1.5);
  }

  .about-image img {
    width: 100%;
    height: auto;
    left: 0;
  }
}


@media (max-width: 520px) {
  .logo-on-hero {
    width: 50%; /* Make the logo smaller */
    height: auto; /* Maintain aspect ratio */
  }
  .hero-content h1 {
    font-size: 1.8rem; /* Make the main heading smaller */
  }
}
