@import url('https://cdn.msar.me/fonts/Tiempos/font.css');
@import url('https://fonts.cdnfonts.com/css/patrician');

/* style.css */
body {
    font-family: 'Tiemposa', sans-serif;
}

/* Add this to your CSS */
html {
  scroll-behavior: smooth;
}

.navbar-brand {
    font-weight: bold;
    letter-spacing: 1px;
}



.hero-image {
    height: 80vh;
    background: url('img/hero/hero-5.jpg') no-repeat center center;
    background-size: cover;
}

h2 {
    font-weight: 300;
}

.hero-static{
    background-color: #f7f1e9;
}

/* Additional small adjustment */
.text-black {
    color: #2e2a26;
}


/* Preloader */
#preloader {
    position: fixed;
    inset: 0;
    background-color: #f7f1e9;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader-content {
    text-align: center;
    position: relative;
}

#preloader-content h1 {
    font-family: 'Tiemposa', serif;
    font-size: 2.5rem;
    color: #2e2a26;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.loading-line {
    height: 2px;
    width: 0;
    background-color: #2e2a26;
    animation: loadingAnimation 2s ease-in-out forwards;
    margin: 0 auto;
}

@keyframes loadingAnimation {
    0% {
        width: 0;
    }
    50% {
        width: 60%;
    }
    100% {
        width: 100%;
    }
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* Hero */


.hero-overlay {
    position: relative;
    z-index: 2;
    padding: 3rem;
    width: 100%;
    height: 100%;
}

.hero-text {
     color: white;
    font-family: 'Patrician™', serif;
    text-align: left;
    position: absolute;
    bottom: 2rem;
    left: 3rem;
}



.logo {
    font-size: 1.5rem;
    font-weight: 300;
    font-family: 'Tiemposa', serif;
    color: white;
}

.hero-nav .logo {
  color: white;
  transition: color 0.3s ease;
}

.hero-nav.nav-visible .logo {
  color: #2e2a26; /* dark logo when sticky */
}

.hero-text h1 {
    font-size: 5rem;
    line-height: 1.1;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 300;
}

/*nav link color transition */
.hero-nav.nav-visible .nav-link {
  color: #2e2a26; /* dark text when sticky */
}

.hero-nav .nav-link {
    color: white;
    font-weight: 300;
    margin-left: 2rem;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.hero-nav .nav-link:hover {
    text-decoration: underline;
}


.hero-nav {
    position: fixed;
    align-self: start;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease;
    background-color: rgb(70 70 70 / 0%);
    padding: 1rem 3rem;
}

.hero-nav1 {
    position: fixed;
    align-self: start;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease;
    background-color: rgb(79 74 69);
    padding: 1rem 3rem;
}


.nav-hidden {
    transform: translateY(-100%);
}

.nav-visible {
    transform: translateY(0);
    background-color: rgba(247, 241, 233, 0.98);
    color: black;
}

/*animated and no arrow */
.dropdown-toggle::after {
    display: none; /* Remove the default Bootstrap arrow */
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 40%;
    min-width: 220px;
    background: #f7f1e9;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 0rem 0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease-in-out;
    z-index: 1050;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Tiemposa', serif;
    font-size: 1rem;
    color: #2e2a26;
    text-decoration: none;
    border-bottom: 1px solid #ddd;
}

.dropdown-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    margin-left: 10px;
    border-radius: 4px;
}


/* mobile-menu */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1101;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: white;
}

.menu-toggle .bar1 {
    width: 25px;
    height: 2px;
    background-color: #2e2a26; /* black bars */
    margin: 4px 0;
    transition: all 0.3s ease;
}


.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f7f1e9;
    transform: translateY(-100%); /* move off screen upward */
   transition: transform 0.9s ease, opacity 1.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 0rem;
    overflow-y: auto;
    z-index: 1100;
}

.mobile-menu.active {
    transform: translateX(0);
}


.close-menu {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: #2e2a26;
    cursor: pointer;
}

.mobile-logo {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    font-family: 'Tiemposa', serif;
    font-size: 1.0rem; /* smaller */
    color: #2e2a26;
    text-align: left;
    line-height: 1.2;
    margin: 0;
}

.mobile-nav .nav-link {
    font-family: 'Tiemposa', serif;
    font-size: 1.5rem;
    color: #2e2a26;
    text-decoration: none;
    margin: 1rem 0;
    border-bottom: 1px solid #d1c7b7;
    padding-bottom: 0.5rem;
    margin-top: 0rem;
    padding-top: 0rem;
}

.social-links a {
    font-size: 1rem;
    color: #2e2a26;
    margin: 0rem 0;
    text-decoration: none;
    display: block;
}

.address {
    font-size: 0.8rem;
    color: #2e2a26;
    margin-top: 1rem;
}

@media (min-width: 992px) {
    .menu-toggle {
        display: none;
    }
    .mobile-menu {
        display: none !important;
    }
}


/* About*/
.about-section {
    background-color: #f7f1e9;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.about-content {
    text-align: left;
    max-width: 800px;
}

.about-heading {
    font-family: 'Tiemposa', serif;
   font-size: 42px;
    letter-spacing: -0.01em;
    line-height: 1.2;
    font-weight: 300;
    color: #2e2a26;
}

.about-heading span {
    color: #B28D57;
}

.about-paragraph {
    font-family: 'Tiemposa', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #2e2a26;
    margin-top: 1.5rem;
}

.about-link {
    margin-top: 2rem;
}

.philosophy-link {
    position: relative;
    font-family: 'Tiemposa', serif;
    font-size: 1rem;
    text-decoration: none;
    color: #2e2a26;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding-bottom: 3px;
    overflow: hidden;
}

.philosophy-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0;
    background-color: #2e2a26;
    transition: width 0.4s ease;
}

.philosophy-link:hover::after {
    width: 100%;
}

.philosophy-link:hover {
    color: #b8860b;
}

.arrow {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.philosophy-link:hover .arrow {
    transform: translateX(4px);
}

.arrow {
    font-size: 0.9rem;
}


@media (min-width: 992px) {
    .about-content {
        margin-right: 3rem; /* smaller shift left */
    }
}

/* Project Slider*/
.project-slider-section {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.project-slider {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    text-align: center;
    z-index: 2;
    padding: 0 2rem;
}

/* Main title (center) */
.main-title {
    font-family: 'Patrician™', serif;
    font-size: 7rem;
    color: white;
    margin: 0 auto;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Show only center slide's main-title */
.swiper-slide-active .main-title {
    opacity: 1;
}

/* Faded side titles */
.prev-title,
.next-title {
    font-family: 'Patrician™', serif;
    font-size: 6rem;
    color: white;
    opacity: 0.4;
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    pointer-events: none;
    white-space: nowrap;
}

/* Left title */
.prev-title {
    left: -22%;
    text-align: left;
}

/* Right title */
.next-title {
    right: -22%;
    text-align: right;
}

/* Link button */
.slide-link {
    margin-top: 2rem;
    display: inline-block;
    font-family: 'Tiemposa', sans-serif;
    font-size: 1rem;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid white;
    padding-bottom: 3px;
    transition: color 0.3s ease, border-color 0.3s ease;
    position: relative;
    z-index: 3;
}

.slide-link:hover {
    color: #b8860b;
    border-color: #b8860b;
}

.arrow {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.slide-link:hover .arrow {
    transform: translateX(4px);
}

/* Hide link on inactive slides */
.swiper-slide:not(.swiper-slide-active) .slide-link {
    display: none;
}

/* video section */
.video-section {
    background-color: #f7f1e9;
    padding-top: 9rem;
    padding-bottom: 10rem;
}

.video-category {
    font-family: 'Tiemposa', sans-serif;
    font-size: 0.8rem;
    color: #2e2a26;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.video-title {
    font-family: 'Tiemposa', serif;
    font-size: 80px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    font-weight: 300;
    color: rgba(35, 35, 35, .7) !important;
    margin: 2rem 0;
}

.video-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.video-link {
    font-family: 'Tiemposa', sans-serif;
    font-size: 1rem;
    color: #2e2a26;
    text-decoration: none;
    border-bottom: 1px solid #2e2a26;
    padding-bottom: 3px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.video-link:hover {
    color: #b8860b;
    border-color: #b8860b;
}

.arrow {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.video-link:hover .arrow {
    transform: translateX(4px);
}

/* Fullscreen video section styles */
/*.video-fullscreen-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.video-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
    height: 120%;
    z-index: 1;
}

.background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
}

.video-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
}

.video-heading {
    font-family: 'Tiemposa', serif;
    font-size: 6rem;
    color: white;
    margin: 0;
    line-height: 1.1;
    letter-spacing: 2px;
}

.video-bottom-link {
    position: absolute;
    bottom: 2rem;
}

.view-all-link {
    font-family: 'Tiemposa', sans-serif;
    font-size: 1rem;
    text-decoration: none;
    color: white;
    border-bottom: 1px solid white;
    padding-bottom: 3px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.view-all-link:hover {
    color: #b8860b;
    border-color: #b8860b;
}

.arrow {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.view-all-link:hover .arrow {
    transform: translateX(4px);
} */

/* Swiper container height for video slider */
.video-slider-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.openViewsSwiper {
  height: 100%;
}

.openViewsSwiper .swiper-slide {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-wrapper {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  overflow: hidden;
}

.background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.video-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  padding: 0 2rem;
}

.video-heading {
  font-family: 'Tiemposa', serif;
  font-size: 6rem;
  color: white;
  margin: 0;
  line-height: 1.1;
  letter-spacing: 2px;
}


/* Ensure video-wrapper stretches in each slide */
.openViewsSwiper .video-wrapper {
  position: absolute;
  inset: 0;
  height: 120%;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}


/* Designed by section styles */
.designed-by-section {
    background: linear-gradient(to right, #f5f0e9 0%, #f7f1e9 50%, #f5f0e9 100%);
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.designed-subtitle {
    font-family: 'Tiemposa', sans-serif;
    font-size: 1.2rem;
    color: #2e2a26;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.designed-title {
    font-family: 'Tiemposa', serif;
    font-size: 48px;
    letter-spacing: -0.01em;
    color: #2e2a26;
    line-height: 1.2;
    font-weight: 300;
}

.designed-description {
    font-family: 'Tiemposa', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #2e2a26;
    margin-top: 1.5rem;
    max-width: 90%;
}

.designed-link {
    font-family: 'Tiemposa', sans-serif;
    font-size: 1rem;
    text-decoration: none;
    color: #2e2a26;
    border-bottom: 1px solid #2e2a26;
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.designed-link:hover {
    color: #b8860b;
    border-color: #b8860b;
}

.arrow {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.designed-link:hover .arrow {
    transform: translateX(4px);
}

/* Images */
.main-photo {
    width: 100%;
    height: auto;
    max-width: 450px;
    border-radius: 0;
}


/* Responsive tweaks */
@media (max-width: 768px) {
    .designed-title {
        font-size: 2rem;
    }
    .small-photo {
        width: 90px;
    }
}

/* Footer Styles */
.site-footer {
    width: 100%;
    background-color: #f7f1e9;
    padding: 4rem 3rem;
    font-family: 'Tiemposa', sans-serif;
    font-size: 0.9rem;
    color: #2e2a26;
}

.site-footer1 {
    width: 100%;
    background-color: #4F4A45;
    padding: 4rem 3rem;
    font-family: 'Tiemposa', sans-serif;
    font-size: 0.9rem;
    color: #fff;
}


.footer-container {
    max-width: 100%;
    padding: 0;
}

.footer-logo h3 {
    font-family: 'Tiemposa', serif;
    font-size: 1.5rem;
    font-weight: normal;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.footer-nav li,
.footer-contact li,
.footer-social li {
    margin-bottom: 0.8rem;
}

.footer-nav a,
.footer-contact a,
.footer-social a {
    color: #2e2a26;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav1 a,
.footer-contact1 a,
.footer-social1 a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-contact a:hover,
.footer-social a:hover {
    color: #b8860b;
}

.footer-bottom {
    margin-top: 3rem;
    font-size: 0.8rem;
    border-top: 1px solid #ddd;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    color: #2e2a26;
}

.footer-bottom1 {
    margin-top: 3rem;
    font-size: 0.8rem;
    border-top: 1px solid #ddd;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    color: #fff;
}

.footer-address {
    text-align: left;
}

.footer-rights {
    text-align: right;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .prev-title,
.next-title{
    display: none;
}

.main-title{
    font-size: 4rem;
}
}
@media (max-width: 768px) {
  .footer-container .row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-container .col-md-3 {
    width: 100%;
  }

  .footer-logo,
  .footer-nav,
  .footer-contact,
  .footer-social {
    align-items: center;
    justify-content: center;
  }

  .footer-logo h3 {
    text-align: center;
  }
}



.gallery-section {
  background-color: #f7f1e9;
  padding: 2rem 2rem;
  font-family: 'Tiemposa', serif;
}

.gallery-title {
  font-size: 3rem;
  font-weight: 500;
  color: #2e2a26;
}

.gallery-filters {
  font-family: 'Tiemposa', sans-serif;
  font-size: 0.875rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.gallery-filters button {
  border: 1px solid #ccc;
  background: transparent;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #2e2a26;
}

.gallery-toggle a {
  font-size: 0.8rem;
  margin-left: 1rem;
  text-decoration: none;
  color: #2e2a26;
}

.gallery-toggle a.active {
  font-weight: bold;
  border-bottom: 1px solid #2e2a26;
}

.project-gallery-grid {
  background-color: #f7f1e9;  
  width: 100%;
  overflow: hidden;
}

.project-item {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.project-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  transition: transform 0.8s ease;
}

.project-item:hover .project-image {
  transform: scale(1.05);
}


.project-title {
  font-size: 1.25rem;
  color: white;
  font-family: 'Tiemposa', sans-serif;
  font-weight: 500;
  text-shadow: 0 0 5px rgba(0,0,0,0.6);
}


.project-gallery-grid {
  padding: 0 0rem;
}

.project-gallery-grid .row {
  margin: 0 -0.5rem;
}

.project-gallery-grid .project-item {
  padding: 0.5rem;
}




/* Unique CSS class names */
.heroVideoSlider {
  width: 100%;
  height: 100vh;
  position: relative;
  background: #000;
  overflow: hidden;
}

.heroVideoSwiper,
.heroVideoSwiper .heroVideoSlide {
  width: 100%;
  height: 100%;
  position: relative;
}

.heroVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.heroVideoOverlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.heroVideoContent {
  position: relative;
  z-index: 3;
  height: 100%;
  width: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.heroVideoTitle {
  font-family: 'Tiemposa', serif;
  font-size: 4rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.heroVideoLink {
  font-family: 'Tiemposa', sans-serif;
  font-size: 1rem;
  padding: 0.4rem 1rem;
  color: white;
  border-bottom: 1px solid white;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.heroVideoLink:hover {
  color: #b8860b;
  border-color: #b8860b;
}

.heroArrow {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.heroVideoLink:hover .heroArrow {
  transform: translateX(4px);
}

/* Centered slider indicators */
.heroVideoIndicators {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.heroVideoIndicators .indicator {
  width: 20px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.heroVideoIndicators .indicator.active {
  background: #fff;
  width: 30px;
}

/* Unique CSS for the Philosophy Section */
.designVisionSection {
    width: 100%;
    background: #a08c84;
    color: #2e2a26;
    padding: 2rem 2rem;
    font-family: 'Tiemposa', sans-serif;
        margin-top: -1rem;
}

.designVisionWrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.designVisionContent {
  flex: 1 1 50%;
}

.designVisionLabel {
  display: block;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 1rem;
  color: #fff;
}

.designVisionTitle {
  font-family: 'Tiemposa', serif;
 font-size: 60px;
    letter-spacing: -0.02em;
    line-height: 1.1;
  margin-bottom: 2rem;
  color: #fff;
}

.designVisionText {
  font-size: 24px;
 letter-spacing: -0.02em;
  line-height: 1.2;
  color: #fff;
}

.designVisionContent,
.designVisionImage {
  flex: 1 1 50%;
  padding: 0 1vw;
}

.designVisionImage img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .designVisionWrapper {
    flex-direction: column;
  }

  .designVisionTitle {
    font-size: 2.2rem;
  }

  .designVisionText {
    font-size: 1rem;
  }
}

/* Design Quote Section */
.designQuoteSection {
  width: 100%;
  background-color: #a08c84;
  color: #fff;
  padding: 6rem 0;
  font-family: 'Tiemposa', sans-serif;
}

.designQuoteWrapper {
    width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 0 6vw;
}

.designQuotePrimary {
    font-family: 'Tiemposa', serif;
  font-size: 42px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  font-weight: 300;
  max-width: 85%;
}

.designQuoteDetails {
 font-size: 16px;
 line-height: 1.4;
  max-width: 60%;
  margin-left: auto;
}

@media (max-width: 992px) {
  .designQuotePrimary {
    font-size: 2.2rem;
    max-width: 100%;
  }

  .designQuoteDetails {
    max-width: 100%;
    margin-left: 0;
  }
}

/* Unique Full-Width Material Showcase */
.materialShowcaseSection {
  width: 100%;
  height: auto;
  background-color: #fff;
  overflow: hidden;
}

.materialShowcaseImage {
  width: 100%;
  height: 100%;
}

.materialShowcaseImage img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}


/* Journal Quote Section Styles */
.journalQuoteSection {
  width: 100%;
  background-color: #4F4A45;
  color: #fff;
  text-align: center;
  padding: 8rem 2rem;
}

.journalQuoteWrapper {
  max-width: 800px;
  margin: 0 auto;
}

.journalQuoteText {
  font-family: 'Tiemposa', serif;
      font-size: 60px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    font-weight: 300;
}

.journalQuoteLink {
  font-family: 'Tiemposa', sans-serif;
  font-size: 1rem;
  text-decoration: none;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.journalQuoteLink:hover {
  color: #bfa172;
  border-color: #bfa172;
}

.journalArrow {
  margin-left: 5px;
}

/* Split Media Section (Video/Image Grid) */
.splitMediaSection {
  width: 100%;
  background: #4F4A45;
  overflow: hidden;
  padding: 0;
}

.splitMediaWrapper {
  display: flex;
  flex-direction: column;
  gap :5px;
}

.splitMediaItem {
  width: 100%;
  height: auto;
  display: block;
}

.splitVideo {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .splitMediaItem {
    max-width: 100%;
    flex-basis: 100%;
  }
}

/* Peaceful Welcome Section */
.peaceQuoteSection {
  width: 100%;
  background-color: #4F4A45;
  color: #fff;
  padding: 2rem 2rem;
}

.peaceQuoteWrapper {
  max-width: 450px;
  margin-left: 2rem;
}

.peaceQuoteText {
  font-family: 'Tiemposa', sans-serif;
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 768px) {
  .peaceQuoteWrapper {
    margin: 0 auto;
    text-align: center;
  }
}

/* Full-Width Video Section Styles */
.fullVideoSection {
  width: 100%;
  background-color: #000;
  overflow: hidden;
}

.fullVideoWrapper {
  width: 100%;
  height: auto;
}

.fullVideo {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Contact Video Section */
.contactVideoSection {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  color: #fff;
  font-family: 'Tiemposa', sans-serif;
}

.contactVideoBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.contactOverlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center; /* vertical centering */
  justify-content: flex-start;
  padding-left: 30vw;
  padding-right: 10vw;
}

.contactContent {
  max-width: 420px;
}


.contactIntro {
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contactDetails a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.contactDetails a:hover {
  color: #bfa172;
}

/* Add this to your existing CSS */

.contactOverlay,
.contactContent,
.contactIntro,
.contactDetails,
.contactDetails strong,
.contactDetails a {
  /* subtle but effective dark shadow for contrast */
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

/* (Optional) If you want a bit more pop on headings/links */
.contactDetails strong,
.contactDetails a {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}


@media (max-width: 768px) {
  .contactContent {
    max-width: 100%;
  }
  .contactOverlay{
    padding-left: 12vw;
     padding-top: 15vw;
  }
}

/* project-list-view */
.list-view-section {
  background-color: #f7f1e9;
  padding: 5rem 2rem;
}

.list-view-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.list-view {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'Tiemposa', sans-serif;
  flex: 1;
}

.list-view li {
  margin-bottom: 0rem;
}

.list-view li a {
  font-size: 3rem;
  text-decoration: none;
  color: #d0c9c1;
  position: relative;
  display: inline-block;
}

.list-view li.active a {
  color: #2e2a26;
  font-weight: bold;
}

.list-view li a .num {
  font-size: 0.75rem;
  position: absolute;
  right: -2rem;
  top: 0;
  color: #d0c9c1;
}

.list-view-image {
  width: 270px;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.list-view-image img {
    margin-top: 10px;
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.4s ease;
}

.list-view li:hover a {
  color: #2e2a26;
}

.project-description {
  background-color: #f7f1e9;
  padding: 6rem 2rem;
  font-family: 'Tiemposa', serif;
}

.project-description .description-title h2 {
  
  color: #4F4A45;
      font-size: 42px;
    letter-spacing: -0.01em;
    line-height: 1.2;
    font-weight: 300;
}

.project-description .description-text {
  font-family: 'Tiemposa', sans-serif;
  color: #4F4A45;
  font-size: 16px;
  line-height: 1.4;
      padding-left: 12rem;
}

@media (max-width: 768px) {
  .description-title {
    text-align: center;
    margin-bottom: 2rem;
  }
}


.photo-gallery-vertical {
  background-color: #f7f1e9;
  overflow: hidden;
  position: relative;
  padding: 0;
  margin: 0;
}

.photo-gallery-vertical .row {
  margin-left: 0;
  margin-right: 0;
  --bs-gutter-x: 0; /* Removes horizontal spacing between columns */
}

.photo-gallery-vertical .col-12,
.photo-gallery-vertical .col-6 {
  padding-left: 0;
  padding-right: 0;
}

.gallery-img {
  width: 100%;
  height: 780px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}


.photo-gallery-slider {
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

.photoGallerySwiper {
  width: 100%;
  height: auto;
}

.photoGallerySwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.photoGallerySwiper .swiper-slide img {
  width: 100%;
  height: 930px;
  object-fit: cover;
  border-radius: 10px;
}

.photo-gallery-scroll {
  background-color: #f7f1e9;
  overflow: hidden;
  position: relative;
}

/* team.css */


.amb-studio-section {
   background-color: rgb(79 74 69);
  color: white;
  padding: 0;
  width: 100vw;
  overflow-x: hidden;
}

.amb-studio-wrapper {
   max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

.studio-left {
  padding: 3rem;
  background-color: rgb(79 74 69);
  color: white;
}

.studio-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.studio-heading {
  font-family: 'Tiemposa', serif;
  font-size: 4rem;
  line-height: 1.1;
}

.studio-right {
  padding: 0;
  background-color: #fff;
  position: relative;
}

.studio-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.studio-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.studio-subtitle {
  font-family: 'Tiemposa', serif;
  font-size: 1.8rem;
  color: #fff;
  background-color: rgb(79 74 69);
  padding: 2rem 2rem 0;
  margin: 0;
  border-top: 2px solid #fff;
}

@media (max-width: 768px) {
  .studio-heading {
    font-size: 2.5rem;
  }
  .studio-subtitle {
    font-size: 1.2rem;
    padding: 1.5rem 1rem 0;
  }
}

/* Team Gallery */
.our-team-section {
  background-color: rgb(79 74 69);
  width: 100%;
  padding: 4rem 2rem;
}

.our-team-section h2 {
  font-family: 'Tiemposa', serif;
  font-size: 3rem;
  margin-bottom: 2rem;
}

.team-member {
  position: relative;
  overflow: hidden;
}

.team-member img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.team-info {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  bottom: 0;
  left: 0;
  width: 100%;
  color: white;
  padding: 1rem;
}

.team-info h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.team-info small {
  font-size: 0.9rem;
  opacity: 0.9;
}


/* General Page Styling */




.swiper-button-prev,.swiper-rtl .swiper-button-next {
    color: #f7f1e9;
    left: var(--swiper-navigation-sides-offset,10px);
    right: auto
    
}

.swiper-button-next,.swiper-rtl .swiper-button-prev {
    color: #f7f1e9;
    right: var(--swiper-navigation-sides-offset,10px);
    left: auto
}



.lightbox {
  position: fixed;
  z-index: 3000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox-slider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-slide img {
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  z-index: 3001;
}

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 3rem;
  color: white;
  cursor: pointer;
  z-index: 3001;
}

.lightbox-prev {
  left: 2rem;
}

.lightbox-next {
  right: 2rem;
}


.fade-carousel {
  position: relative;
  width: 100%;
  max-width: 100vw;
  height: 100vh; /* Adjust based on design */
  overflow: hidden;
}

.fade-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.fade-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fadeAnimation 16s infinite;
  transition: opacity 1s ease-in-out;
}

/* Delay each image */
.img-1 {
  animation-delay: 0s;
}
.img-2 {
  animation-delay: 4s;
}
.img-3 {
  animation-delay: 8s;
}
.img-4 {
  animation-delay: 12s;
}

/* Keyframes for fade effect */
@keyframes fadeAnimation {
  0% { opacity: 0; }
  8% { opacity: 1; }
  25% { opacity: 1; }
  33% { opacity: 0; }
  100% { opacity: 0; }
}
.fade-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 3rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
}

.project-page .hero-overlay {
  padding-top: 0rem; /* or whatever adjustment you need */
}

/* Font choices */
section.testimonial-block {
  background-color: #5c4534;
  color: #5c4534;
  font-family: Arial, sans-serif;
  margin-bottom: 1px;
}

.page {
  width: 1122px;
  margin: 60px auto;
  padding: 60px 80px;
  background-color: #ddd1c8;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  position: relative;
}
.top-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.page-title {
  font-size: 52px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #5c4534;
  flex: 1;
}
.top-image {
  width: 45%;
  border-radius: 5px;
  object-fit: cover;
}
.testimonial-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.testimonial-container {
  width: 48.5%;
}
.testimonial p {
  font-size: 15px;
  margin-bottom: 20px;
}
.profile {
  display: flex;
  align-items: center;
}
.profile img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}
.profile-info {
  font-size: 14px;
  font-family: Arial, sans-serif;
}
.profile-info strong {
  display: block;
  font-size: 16px;
}
.testimonial-image-full {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 30px;
}
.footer-number {
  position: absolute;
  bottom: 30px;
  font-size: 14px;
  color: #5c4534;
}
.footer-number.left {
  left: 40px;
}
.footer-number.right {
  right: 40px;
}
.testimonials-heading {
  font-size: clamp(36px, 8vw, 90px);
}

.brendah-image-wrapper {
  width: 100%;
  height: 620px;
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 0;
  z-index: 0;
  position: relative;
}

@media (min-width: 992px) {
  .brendah-image-wrapper {
    margin-top: -300px;
  }
}

@media (max-width: 768px) {
  .top-section {
    flex-direction: column;
    align-items: center;
  }

  .top-image {
    width: 100%;
    margin-top: 10px;
  }

  .testimonial-wrapper {
    flex-direction: column;
  }

  .testimonial-container {
    width: 100%;
    margin-bottom: 10px;
  }

  .page-title {
    font-size: 36px;
    text-align: center;
  }

  .footer-number.left,
  .footer-number.right {
    position: static;
    text-align: center;
    display: block;
    margin-top: 20px;
  }

  .hero-nav1,
  .mobile-menu,
  .footer-container,
  .footer-bottom1 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .testimonials-heading {
    font-size: 48px !important;
    margin-left: 20px !important;
  }

  .designVisionWrapper,
  .designQuoteWrapper {
    flex-direction: column;
    padding: 20px;
  }

  .designVisionImage img {
    width: 100%;
    height: auto;
  }

  .materialShowcaseImage img {
    width: 100%;
    height: auto;
  }


  .hero-nav1 {
    padding: 1rem;
  }
}



/*project css */
.ls-project {
  font-family: 'Tiemposa', serif;
  color: #333;
  padding: 6rem 2rem;
  background-color: #f7f1e9;
}
.ls-container {
  max-width: 1600px;
  margin: 0 auto;
}
.ls-brief {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-align: left;
}
.ls-tag {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: #666;
  text-align: left;
}
.ls-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.ls-col-img {
  flex: 1 1 30%;
}
.ls-col-txt {
  flex: 1 1 65%;
}
.ls-image {
  width: 100%;
 height: auto;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  margin: 30px auto 0;
}
.ls-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
}
.ls-text {
  line-height: 1.6;
  margin-bottom: 1rem;
}
.ls-amenities {
  list-style: none;
  padding-left: 0;
  margin-top: 0.5rem;
}
.ls-amenity {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}
.ls-amenity::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.25rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .ls-row {
    flex-direction: column;
  }
}

 .ls-frame {
      background: #f7f1e9 url('images/textures/paper-texture.png') center center / cover no-repeat;
      
    }
    .ls-container1 {
      max-width: 1500px;
      margin: 0 auto;
      padding: 20px;
    }
/* NEW: Maintain a classic 16:9 “laptop” viewport, show full image */
.ls-photo-wrapper {
  width: 100%;
  aspect-ratio: 21/9;
  overflow: hidden;
  margin: 0 auto;
}

   .ls-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* fallback on smaller screens: let image size itself */
@media (max-width: 992px) {
  .ls-photo-wrapper {
    aspect-ratio: auto;
  }
  .ls-photo {
    height: auto;
  }
}
@media (max-width: 768px) {
  .ls-photo-wrapper {
    aspect-ratio: auto;
  }
  .ls-photo {
    height: auto;
  }
}
@media (max-width: 576px) {
  .ls-photo-wrapper {
    aspect-ratio: auto;
  }
  .ls-photo {
    height: auto;
  }
}
     /* Unique gallery wrapper */
   
 .ug-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 20px;
    background: #f7f1e9;
    overflow: hidden;
  }
  .ug-row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
    align-items: stretch;
  }
  .ug-col {
    overflow: hidden;
  }
  .ug-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }
  .ug-col:hover .ug-img {
    transform: scale(1.05);
  }

  @media (max-width: 992px) {
    .ug-container { padding: 24px; }
  }
  @media (max-width: 768px) {
    .ug-container { padding: 16px; }
  }
  @media (max-width: 576px) {
    .ug-container { padding: 12px; }
  }


  