@import url('https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
:root {
	--base: #B68240;
    --baseMission: #E6E2DA;
    --baseValues: #b1b89e;
	--base-100: #f1f1f1;
	--base-400: #555;
	--base-800: #000;
	--yellow: #ffda4b;
	--yellow-100: #fffbe6;
	--yellow-400: #ffda4b;
	--yellow-800: #8b6f00;
	--blue: #0a61ae;
	--blue-100: #e2f8ff;
	--blue-400: #61dafb;
	--base-color: #D3D6C8;
}
a {
	text-decoration: none;
	color: var(--blue);
	&:hover {
		text-decoration: underline;
	}
}

h1 {
    font-size: 50px;
    line-height: 64px;
    color: #222;
}
h2 {
    font-size: 50px;
    line-height: 64px;
    color: #222;
    font-family: 'Signatura Monoline Bold', cursive !important;
}
h3 {
    font-size: 46px;
    line-height: 54px;
    color: #222;
}
h4 {
    font-size: 20px;
    color: #222;
}
h5 {
    font-size: 18px;
    color: #222;
}
h6 {
    font-size: 16px;
    font-weight: 700;
    color: #222;
}
h7 {
    font-size: 25px;
    font-weight: 700;
    color: #222;
}
h8 {
    font-size: 30px;
    font-weight: 700;
    color: #222;

}
p {
    font-size: 16px;
    color: #222;
    margin: 15px 0 20px 0;
}
.section-p1 {
    padding: 20px 80px;
}

.section-m1 {
    padding: 30px 0;
}
button.normal{
    font-size: 14px;
    font-weight: 600;
    padding: 15px 30px;
    color: #000000;
    background-color: #fff;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;

}

button.white{
    font-size: 13px;
    font-weight: 600;
    padding: 11px 18px;
    color: #fff;
    background-color: transparent;

    cursor: pointer;
    border: 1px solid #fff;
    outline: none;
    transition: 0.2s;

}
button.center{
    background-color: #B68240;
    display: inline-block;
    color:#D3D6C8;
    border: 0;
    padding: 20px 18px;
    box-shadow: 20px 18px 34px rgba(0, 0, 0, 0.03);
    cursor: pointer;
    font-weight: 700;
    font-size: 18px;
    border: 1px solid #D3D6C8;
    border-radius: 8px;

}
body {
    width: 100%;
    min-height: 100dvh;
    background-color: var(--base-color);
}
header {
	padding-top:10px;
	padding-bottom:10px;
	display:flex;
	justify-content:space-between;
	max-width:1440px;
	margin:auto;

    background: #D3D6C8;
	border-bottom: 1px solid rgba(0,0,0,0.1);

	.logo-holder {
		display:flex;
		padding:10px;
		align-items:center;
		font-weight:600;
        position: sticky;

		color: var(--base-color);

		.logo {
			display:flex;
			align-items:center;
			justify-content:center;
			font-size:32px;
			background-color: var(--base-color);
			color: var(--base-100);
			height:64px;
			width:64px;
			margin-right:20px;
			border-radius:50%;
            @media (max-width: 1024px) {
                left: 0%;
            }
		}
		.logo-text {
			flex:1;
		}
	}

	nav {
		display:flex;
		align-items:center;

		ul {
			display:flex;
			list-style-type: none;
			gap:5px;
			li {
				display:inline-block;
				a {
					display:inline-block;
					padding:10px 20px;
					color:var(--base);
                    font-size: 1.2em;
					&:hover {
						background-color: var(--base-100);
						border-radius:10px;
						text-decoration:none;
					}
				}
			}
		}
		.mobile-toggle {
			display:none;
			color:var(--base-800);
			padding:10px;
			@media (max-width:768px){
				display:inline-block;
				position:absolute;
				top:20px;
				right:20px;
			}
		}
	}

	@media (max-width: 1024px) {
		flex-direction:column;
		align-items:center;

	}

	@media (max-width: 768px) {
		flex-direction:column;
		align-items:center;
		nav {
			margin-top:10px;
			width:100%;

			ul {
				display:none;
				flex-direction:column;
				text-align:center;
				width:100%;
				a {
					width:100%;
				}
				&.active {
					display:flex;
				}
			}
		}
	}
}

#header{
    background: #D3D6C8;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

#hero{
    background-image: url("img/hero1.jpg");
    height: 80vh;
    width: 100%;
    background-size: cover;
    background-position: top 25% right 0;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
#hero h4{
    padding-bottom: 15px;
    text-shadow: 1px 1px var(--baseMission);
}
#hero h2{
    font-size: 10em;
    font-family: 'Signatura Monoline', cursive !important;
}
#hero h1{
    padding-bottom: 15px;
    color: #088178;
}
#hero button{
    background-color: #B68240;
    display: inline-block;
    color:#D3D6C8;
    border: 0;
    padding: 20px 18px;
    box-shadow: 20px 18px 34px rgba(0, 0, 0, 0.03);
    cursor: pointer;
    font-weight: 700;
    font-size: 18px;
    border: 1px solid #D3D6C8;
    border-radius: 8px;

}
#hero button:hover{
    box-shadow: 10px 10px 54px rgba(70, 62, 221, 0.4);
}

#feature{
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    flex-wrap: wrap;
    background-color: var(--base-color);
}
#feature .fe-box{
    width: 160px;
    text-align: center;
    padding: 25px 10px;
    border-radius: 10px;
    margin: 30px 0;
}
#feature .subAbout{
    width: 100%;
    text-align: center;
    padding:15px 0px;
    border-radius: 10px;
    margin: 15px 0;
}
#feature .subAbout p3{
    font-size: 19px;
}
#feature  h8{
    font-size: 4.5em;
}
#feature .fe-box:hover{
    box-shadow: 10px 10px 54px rgba(70, 62, 221, 0.1);
}
#feature .fe-box h7{
    width: 112px;
    margin-bottom: 10px;
}
#feature1{
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    flex-wrap: wrap;
    background-color: var(--baseMission);
}
#feature1 .fe-box{
    width: 160px;
    text-align: center;
    padding: 25px 10px;
    border-radius: 10px;
    margin: 30px 0;
}
#feature1 .subAbout{
    width: 100%;
    text-align: center;
    padding:15px 0px;
    border-radius: 10px;
    margin: 15px 0;
}
#feature1 .subAbout p3{
    font-size: 19px;
}
#feature1  h8{
    font-size: 4.5em;
}
#feature1 .fe-box:hover{
    box-shadow: 10px 10px 54px rgba(70, 62, 221, 0.1);
}
#feature1 .fe-box h7{
    width: 112px;
    margin-bottom: 10px;
}
#feature2{
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    flex-wrap: wrap;
    background-color: var(--baseValues);
}
#feature2 .fe-box{
    width: 160px;
    text-align: center;
    padding: 25px 10px;
    border-radius: 10px;
    margin: 30px 0;
}
#feature2 .subAbout{
    width: 100%;
    text-align: center;
    padding:15px 0px;

    border-radius: 10px;
    margin: 15px 0;
}
#feature2 .subAbout p3{
    font-size: 19px;
}
#feature2  h8{
    font-size: 4.5em;
}
#feature2 .fe-box:hover{
    box-shadow: 10px 10px 54px rgba(70, 62, 221, 0.1);
}
#feature2 .fe-box h7{
    width: 112px;
    margin-bottom: 10px;
}

.fe-box h7 a{
    color:#000;

}
.fe-box h8{
    color:#000;
    font-size: 50px;
}
.fe-box h8 i{
    color:#000;
    font-size: 50px;
}
#feature .fe-box h6{
    display: inline-block;
    padding: 9px 8px 9px 8px;
    line-height: 1;
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 20px;
    background-color: #B68240;
}

#feature .fe-box:nth-child(2) h6{
    background-color: #B68240;

}

#banner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url("img/banner/b2.png");
    width: 100%;
    height: 40vh;
    background-size: cover;
    background-position: center;

}
#banner h4{
    color: #cfd5cf;
    font-size: 16px;

}
#banner h2{
    color: #fdfdfd;
    font-size: 30px;
    padding: 10px 0;

}
#banner h2 span{
    color: #8f3434;

}
#banner button:hover{
    background-color: #088178;
    color: #fff;

}

#sm-banner{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    background-color: var(--base-color);

}

#sm-banner h4{
    color: #fff;
    font-size: 20px;
    font-weight: 300;

}
#sm-banner h2{
    color: #fff;
    font-size: 28px;
    font-weight: 800;

}
#sm-banner span{
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 15px;
}

#sm-banner .banner-box:hover button{
    background: #088178;
    border: 1px solid #088178;
}

.image-section {
    padding: 60px 20px;
    text-align: center;
    /* background-color: #D3D6C8; */
    background-color: var(--baseMission);
}
.image-section h1{
    font-size: 4.5em;
}
.image-box-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.image-box {
    width: 450px;
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    cursor: pointer;
}

.image-box h3 {
    font-size: 2em;
    margin: 0;
    color: white;
}

.image-box p {
    font-size: 1.1em;
    margin-top: 10px;
    max-width: 80%;
    color: white;
}

.image-box:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.staffContainer{
display: flex;
justify-content: space-evenly;
align-items: center;
flex-wrap: wrap;
background-color: var(--base-color);
padding-bottom: 20px;
}
.staffContainer button.normal:hover{

    color: #fff;
    background-color: #B68240;
    transition: 0.2s;
}

#about{
    background-color: var(--base-color);
}
.aboutHeader{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 60px 30px 20px;
}

.testimonials { position:relative; z-index:5;
  padding-bottom: 40px;
  background-color: var(--base-color);
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 20px;
  font-size: 1.5em;
}
.testimonials h3 {
  font-size: 1.17em;
}

.testimonials body {

    margin: 0;
    padding: 0;
}
.testimonial-scroll {
  display: flex;
  overflow: hidden;
  gap: 20px;
  padding: 20px 0;
  position: relative;
}

.testimonial-scroll:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  animation: scrollTestimonials 60s linear infinite;
  width: max-content;
}

@keyframes scrollTestimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial {
  flex: 0 0 250px;
  width: 250px;
  background: #ba9a71;

  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.testimonial img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
}

.stats-section {
  position: relative;

  height: 300px;
  background-color: #D3D6C8;

}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.6);
}

.stats-container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
  padding: 0 2rem;
  background-color: #D3D6C8;

}

.stat {
  text-align: center;

}

.number,
.icon {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1;
}

.label {
  margin-top: 0.5rem;
  font-size: 1.2rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 10px;
  }
  .number,
  .icon {
    font-size: 3rem;
  }
  .label {
    font-size: 1rem;
  }
  
  #hero h2{
    font-size: 7em;
  }
}

section.services {
    padding: 10px 20px;
    text-align: center;
    background-color: #D3D6C8;
}

section.services h2 {
    font-size: 4.5em;
    margin-bottom: 40px;
    color: #222;

}

.scroll-wrapper {
    overflow-x: auto;
    padding: 10px 20px 10px 20px;

    -webkit-overflow-scrolling: touch;
}

.tier-container {
    display: flex;
    gap: 30px;
    flex-wrap: nowrap;
    justify-content: center;

    transition: justify-content 0.3s ease;
}

.tier {
    flex: 0 0 auto;

    width: 260px;
    background: #ba9a71;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);

}

.tier img {
    display: block;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px auto;
}

.tier h3 {
    margin-bottom: 15px;
    font-size: 1.2em;
    color: #333;
    text-align: center;
}

.tier ul {
    list-style-type: none;

    color: #ffffff;
    font-size: 0.95em;
    margin-bottom: 20px;
}

.price {
    margin-top: 10px;
    font-size: 1.5em;
    color: #1b1b1b;
    font-weight: bold;
    border-top: 1px solid black;
    padding-top: 15px;
    text-align: center;
}

.scroll-wrapper::-webkit-scrollbar {
    height: 8px;
}

.scroll-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.scroll-wrapper::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.containerCollage {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem;
}

.titleCollage {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.desktop-gridCollage {
    display: none;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(6, 80px);
    gap: 0.5rem;
    height: 500px;
    margin-bottom: 2rem;
}

.grid-itemCollage {
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
}

.grid-itemCollage:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}

.grid-itemCollage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.grid-itemCollage:hover img {
    transform: scale(1.05);
}

.large-ceremonyCollage {
    grid-column: 1 / 5;
    grid-row: 1 / 5;
}

.group-photoCollage {
    grid-column: 5 / 8;
    grid-row: 1 / 3;
}

.couple-portraitCollage {
    grid-column: 8 / 13;
    grid-row: 1 / 4;
}

.indoor-venueCollage {
    grid-column: 5 / 8;
    grid-row: 3 / 5;
}

.details-shotCollage {
    grid-column: 1 / 3;
    grid-row: 5 / 7;
}

.outdoor-ceremonyCollage {
    grid-column: 3 / 6;
    grid-row: 5 / 7;
}

.receptionCollage {
    grid-column: 6 / 10;
    grid-row: 5 / 7;
}

.detail-shot-2Collage {
    grid-column: 10 / 13;
    grid-row: 4 / 7;
}

.mobile-gridCollage {
    display: block;
}

.mobile-scroll-containerCollage {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
}

.mobile-scroll-containerCollage::-webkit-scrollbar {
    height: 4px;
}

.mobile-scroll-containerCollage::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 2px;
}

.mobile-scroll-containerCollage::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 2px;
}

.mobile-scroll-containerCollage::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.mobile-itemCollage {
    flex-shrink: 0;
    width: 16rem;
    height: 15rem;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

.mobile-itemCollage:active {
    transform: scale(0.98);
}

.mobile-itemCollage.smallCollage {
    width: 10rem;
}

.mobile-itemCollage.mediumCollage {
    width: 14rem;
}

.mobile-itemCollage.largeCollage {
    width: 18rem;
}

.mobile-itemCollage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scroll-indicatorCollage {
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.descriptionCollage {
    text-align: center;
    margin-top: 2rem;
}

.descriptionCollage p {
    color: #6b7280;
    font-size: 1.125rem;
}

@media (min-width: 768px) {
    .containerCollage {
        padding: 2rem;
        min-height: 80dvh;
    }

    .titleCollage {
        font-size: 3rem;
    }

    .desktop-gridCollage {
        display: grid;
    }

    .mobile-gridCollage {
        display: none;
    }
}

@media (min-width: 1024px) {
    .containerCollage {
        padding: 3rem 2rem;
    }
}

@media (max-width: 767px) {
    .containerCollage {
        padding: 1rem 0.5rem;
        margin-bottom: 1rem;
    }

    .titleCollage {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .testimonials h2 {
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }
    
    #hero {
    padding-left: 10px;
  }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.grid-itemCollage,
.mobile-itemCollage {
    animation: fadeIn 0.6s ease forwards;
}

.grid-itemCollage:nth-child(1) { animation-delay: 0.1s; }
.grid-itemCollage:nth-child(2) { animation-delay: 0.2s; }
.grid-itemCollage:nth-child(3) { animation-delay: 0.3s; }
.grid-itemCollage:nth-child(4) { animation-delay: 0.4s; }
.grid-itemCollage:nth-child(5) { animation-delay: 0.5s; }
.grid-itemCollage:nth-child(6) { animation-delay: 0.6s; }
.grid-itemCollage:nth-child(7) { animation-delay: 0.7s; }
.grid-itemCollage:nth-child(8) { animation-delay: 0.8s; }

#aboutStaff,
#aboutStaff2 {
  display: flex;
  padding: 20px 0;
  min-height: 50vh;
  align-items: center;
  background-color: var(--base-color);
}
.aboutContainer{
  max-width: 1280px;
  padding-right: 15px;
  padding-left: 15px;
  margin: 0 auto;

}
#aboutStaff h4,
#aboutStaff2 h4 {
  text-align: center;
  margin-bottom: 20px;
}

#aboutStaff .contents,
#aboutStaff2 .contents {
  display: grid;
  grid-gap: 50px;
  grid-template-columns: 1fr;
}

#aboutStaff .contents img,
#aboutStaff2 .contents img {
  width: 300px;
  padding: 5px;
  margin: 0 auto;
  border-radius: 25%;
  background-color: var(--base);
}

@media (min-width: 800px) {
  #aboutStaff,
  #aboutStaff2 {
    padding: 50px 0;
  }

  #aboutStaff h2,
  #aboutStaff2 h2 {
    margin-bottom: 50px;
  }

  #aboutStaff .contents,
  #aboutStaff2 .contents {
    grid-template-columns: 1fr 4fr;
  }

  #aboutStaff .contents img,
  #aboutStaff2 .contents img {
    width: 100%;
  }
}
footer{
    background-color: var(--base-color);
}

.footerContainer{
    width: 100%;
    padding: 30px 30px 20px;

}
.footerSocial{
    display: flex;
    justify-content: center;
}
.footerSocial a{
    text-decoration: none;
    padding: 10px;
    background-color: white;
    margin: 10px;
    border-radius: 50%;
}
.footerSocial a i{
    font-size: 2em;
    color: black;
    opacity: 0.9;
}
.footerSocial a:hover{
    background-color: #111;
    transition: 0.5s;
}
.footerSocial a i:hover{
    color: white;
    transition: 0.5s;
}
.footerLinks{
    margin: 10px 0;

}
.footerLinks ul{
    display: flex;
    justify-content: center;
    list-style: none;
}
.footerLinks ul a{
    color:var(--base);
    margin: 15px;
    text-decoration: none;

    font-size: 1em;
    opacity: 0.6;
    transition: 0.5s;
    padding-top: 10px;
    padding-bottom: 10px;
}
.footerLinks ul a:hover{
    opacity: 1;
}
.copyright{
    background-color: #c2c5b8;
    padding: 9px;
    text-align: center;

}
.copyright i{
    color:white;
    font-size: 10px;
}
.footerLogo{

    display: flex;
    justify-content: center;
}
.footerLogo i{
    font-size: 3.5em;

}

.testimonials h2 {
    font-size: 3em;
}
.testimonials h1 {
    font-size: 4.5em;
}
.aboutHeader h1{
    font-size: 4.5em;
}
/* ===== Signatura Monoline font-face ===== */
@font-face {
  font-family: 'Signatura Monoline';
  src: local('Signatura Monoline'),
       url('/assets/fonts/SignaturaMonoline.woff2') format('woff2'),
       url('/assets/fonts/SignaturaMonoline.ttf') format('truetype'),
       url('assets/fonts/SignaturaMonoline.woff2') format('woff2'),
       url('assets/fonts/SignaturaMonoline.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Signatura Monoline';
  src: local('Signatura Monoline Bold'),
       url('/assets/fonts/SignaturaMonoline.woff2') format('woff2'),
       url('/assets/fonts/SignaturaMonoline.ttf') format('truetype'),
       url('assets/fonts/SignaturaMonoline.woff2') format('woff2'),
       url('assets/fonts/SignaturaMonoline.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* ===== End font-face ===== */

/* Base text */
html, body, body p, body span, body li, body a, body input, body button, body textarea, body select {
  font-family: 'Lora', serif !important;
}

/* Headlines */
h1, h1 *, h2, h2 * {
  font-family: 'Playfair Display', serif !important;
}

h3, h3 *, h4, h4 * {
  font-family: 'Italiana', serif !important;
}

/* Logo/Title */
.logo, .site-title, .navbar-brand, header .logo, .brand, .site-logo, h1.logo {
  font-family: 'Signatura Monoline', cursive !important;
  font-weight: 400 !important;
}
/* ===== End Typography ===== */

/* ===== Signatura Monoline Overrides ===== */
#hero h2,
#feature h8,
#feature1 h8,
#feature2 h8,
.services h2,
.testimonials h2,
.testimonials h1,
.image-section h1,
.aboutHeader h1,
#about h1,
.contact-header h1,
.booking-header h1,
.footerContainer i:not([class*="fa"]):not([class*="icon"]) {
  font-family: 'Signatura Monoline', cursive !important;
  font-weight: 400 !important;
}
/* ===== End Signatura Monoline Overrides ===== */

/* === Fixed-size Testimonial Cards + Modal === */
.testimonial{
  position:relative; display:flex; flex-direction:column; align-items:center; justify-content:flex-start;
  height:260px; max-height:260px; overflow:hidden; cursor:pointer;
}
.testimonial p{
  margin:.25rem 0 0; padding:0 .5rem; text-overflow:ellipsis;
  display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden;
}
.testimonial .expand-toggle{ display:none!important; }

.testimonial-modal-backdrop{ position:fixed; inset:0; background:rgba(0,0,0,.6); display:none; align-items:center; justify-content:center; z-index:9999; }
.testimonial-modal{ background:#c2c5b8; width:min(92vw,720px); max-height:80vh; overflow:auto; border-radius:12px; box-shadow:0 10px 40px rgba(0,0,0,0.25); padding:20px; position:relative; }

/* Center avatar + name; name beneath the photo */
.testimonial-modal header{ display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px; margin-bottom:8px; text-align:center; }
.testimonial-modal header img{ width:72px; height:72px; object-fit:cover; border-radius:50%; display:block; margin:0 auto; }
.testimonial-modal .reviewer{ font-weight:700; margin:0; text-align:center; }
.testimonial-modal .fulltext{ margin-top:8px; line-height:1.6; white-space:pre-wrap; text-align:left; }

.testimonial-modal .close-btn{ position:absolute; top:10px; right:14px; background:transparent; border:none; font-size:1.5rem; cursor:pointer; }

/* Elevate testimonial area */
#testimonialScroll{ position:relative; z-index:50; pointer-events:auto; }
#testimonialScroll *{ pointer-events:auto; }

/* ===== Portfolio Page ===== */
.collage-sectionPortfolioPage {
    padding: 4rem 1rem;
    min-height: 100vh;
    background-color: #D3D6C8;
}

.containerPortfolioPage {
    max-width: 1400px;
    margin: 0 auto;
    background-color: #D3D6C8;
}

.headerPortfolioPage {
    text-align: center;
    margin-bottom: 3rem;
}

.headerPortfolioPage h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.headerPortfolioPage p {
    font-size: 1.125rem;
    color: #4a5568;
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.7;
}

.masonry-gridPortfolioPage {
    column-count: 1;
    column-gap: 0.5rem;
    column-fill: balance;
}

@media (min-width: 640px) {
    .masonry-gridPortfolioPage {
        column-count: 2;
        column-gap: 0.75rem;
    }
}

@media (min-width: 768px) {
    .masonry-gridPortfolioPage {
        column-count: 3;
        column-gap: 1rem;
    }
}

@media (min-width: 1024px) {
    .masonry-gridPortfolioPage {
        column-count: 4;
    }
}

@media (min-width: 1280px) {
    .masonry-gridPortfolioPage {
        column-count: 5;
    }
}

.image-itemPortfolioPage {
    break-inside: avoid;
    margin-bottom: 0.5rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: rotate(0deg);
}

@media (max-width: 639px) {
    .image-itemPortfolioPage:nth-child(3n+1) { transform: rotate(-1deg); }
    .image-itemPortfolioPage:nth-child(3n+2) { transform: rotate(1deg); }
    .image-itemPortfolioPage:nth-child(5n+1) { transform: rotate(-0.5deg); }
    .image-itemPortfolioPage:nth-child(7n+1) { transform: rotate(1.5deg); }
    .image-itemPortfolioPage:nth-child(11n+1) { transform: rotate(-1.5deg); }

    .masonry-gridPortfolioPage {
        column-count: 2;
        column-gap: 0.25rem;
    }

    .image-itemPortfolioPage {
        margin-bottom: 0.25rem;
        border-radius: 0.5rem;
    }

    .collage-sectionPortfolioPage {
        padding: 2rem 0.5rem;
    }
}

.image-itemPortfolioPage:hover {
    transform: translateY(-2px) scale(1.02) rotate(0deg) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.image-itemPortfolioPage img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-itemPortfolioPage:hover img {
    transform: scale(1.1);
}

.image-overlayPortfolioPage {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-itemPortfolioPage:hover .image-overlayPortfolioPage {
    background: rgba(0, 0, 0, 0.2);
}

.view-textPortfolioPage {
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-itemPortfolioPage:hover .view-textPortfolioPage {
    opacity: 1;
    transform: translateY(0);
}

.lightboxPortfolioPage {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.lightboxPortfolioPage.active {
    display: flex;
}

.lightbox-contentPortfolioPage {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-imagePortfolioPage {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 0.5rem;
}

.close-btnPortfolioPage {
    position: absolute;
    top: -3rem; right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s ease;
}

.close-btnPortfolioPage:hover {
    color: #cbd5e0;
}

.image-captionPortfolioPage {
    position: absolute;
    bottom: -3rem; left: 0;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.image-itemPortfolioPage.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    min-height: 200px;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@media (max-width: 640px) {
    .headerPortfolioPage h2 { font-size: 2rem; }
    .headerPortfolioPage p { font-size: 1rem; padding: 0 1rem; }
    .close-btnPortfolioPage { top: -2rem; font-size: 1.5rem; }
    .image-captionPortfolioPage { bottom: -2.5rem; font-size: 0.75rem; }
    .headerPortfolioPage { margin-bottom: 2rem; padding: 0 1rem; }
}
/* ===== End Portfolio Page ===== */

/* ===== Contact Page ===== */
html {
    scroll-behavior: smooth;
}

/* Contact options overview (two clickable boxes) */
#contact-options {
    background-color: var(--base-color);
    min-height: 100dvh;
    padding: 100px 20px 30px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    box-sizing: border-box;
}

.contact-options-inner {
    display: flex;
    gap: 32px;
    width: 100%;
    max-width: 820px;
    justify-content: center;
    align-items: stretch;
}

.contact-option {
    flex: 1 1 0;
    aspect-ratio: 1 / 1;
    max-width: 380px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    color: #222;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-option:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: #222;
}

.contact-option-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: var(--base);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    margin-bottom: 20px;
}

.contact-option-title {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 10px 0;
    color: #222;
    white-space: nowrap;
}

.contact-option-sub {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #555;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 768px) {
    #contact-options {
        padding: 100px 16px 20px;
        align-items: stretch;
    }
    .contact-options-inner {
        flex-direction: column;
        gap: 16px;
        max-width: 380px;
        margin: 0 auto;
        flex: 1;
    }
    .contact-option {
        aspect-ratio: auto;
        max-width: 100%;
        flex: 1 1 0;
        min-height: 0;
        padding: 20px;
    }
    .contact-option-icon {
        width: 56px;
        height: 56px;
        font-size: 1.4em;
        margin-bottom: 12px;
    }
    .contact-option-title {
        font-size: 20px;
    }
    .contact-option-sub {
        font-size: 13px;
    }
}

#contact-page {
    background-color: var(--base-color);
    padding: 60px 20px;
    scroll-margin-top: 100px;
}

/* Centered header */
.contact-header {
    max-width: 1100px;
    margin: 0 auto 36px;
    text-align: center;
}

.contact-header h1 {
    font-size: 5em;
    margin-bottom: 12px;
}

.contact-header > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    max-width: 600px;
    margin: 0 auto 20px;
}

.contact-header-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.contact-header-links > a {
    color: #333;
    font-size: 0.95rem;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.contact-header-links > a i {
    color: var(--base);
}

.contact-header-links > a:hover {
    color: var(--base);
}

.contact-social {
    display: flex;
    gap: 10px;
}

.contact-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.contact-social a i {
    font-size: 1.2em;
    color: #333;
    transition: color 0.3s;
}

.contact-social a:hover {
    background-color: #111;
}

.contact-social a:hover i {
    color: white;
}

/* Form card */
.contact-form-wrap {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--baseMission);
    padding: 36px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Two-column form layout */
.form-columns {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--base);
}

/* Message textarea sizing */
.form-group-message {
    display: flex;
    flex-direction: column;
}

.form-group-message textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-submit {
    width: 100%;
    padding: 14px;
    background-color: var(--base);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

.contact-submit:hover {
    background-color: #9a6d34;
    box-shadow: 0 4px 12px rgba(182, 130, 64, 0.35);
}

.contact-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-status {
    margin-top: 16px;
    font-size: 0.95rem;
    text-align: center;
}

.form-success {
    color: #2e7d32;
}

.form-error {
    color: #c62828;
}

@media (min-width: 769px) {
    .form-group-message textarea {
        height: 253px;
        min-height: 0;
    }
}

@media (max-width: 768px) {
    .form-columns {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-header h1 {
        font-size: 4em;
    }

    .contact-form-wrap {
        padding: 24px;
    }

    .form-group-message textarea {
        min-height: 140px;
    }
}
/* ===== End Contact Page ===== */

/* ===== Booking Page ===== */
#booking-page {
    background-color: var(--baseMission);
    padding: 60px 20px;
    text-align: center;
    scroll-margin-top: 100px;
}

.booking-header {
    max-width: 700px;
    margin: 0 auto 40px;
}

.booking-header h1 {
    font-size: 6.5em;
    margin-bottom: 12px;
}

.booking-header p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.booking-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.booking-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.booking-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.booking-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--base);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.booking-card-icon i {
    font-size: 1.4em;
    color: #fff;
}

.booking-card h3 {
    font-size: 1.15em;
    color: #222;
    margin-bottom: 6px;
    line-height: 1.3;
}

.booking-duration {
    font-size: 0.85rem;
    color: var(--base);
    font-weight: 600;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.booking-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 18px;
    flex-grow: 1;
}

.booking-btn {
    background-color: var(--base);
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: inherit;
}

.booking-btn:hover {
    background-color: #9a6d34;
}

/* Cal.com embed container */
.cal-embed-container {
    max-width: 1100px;
    margin: 40px auto 0;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cal-embed-close {
    display: block;
    margin-left: auto;
    margin-bottom: 16px;
    background: none;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 8px 20px;
    font-size: 0.9rem;
    cursor: pointer;
    color: #555;
    transition: background-color 0.2s, border-color 0.2s;
    font-family: inherit;
}

.cal-embed-close:hover {
    background-color: #f3f3f3;
    border-color: #999;
}

#calTarget {
    min-height: 600px;
    overflow: hidden;
}

@media (max-width: 900px) {
    .booking-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .booking-cards {
        grid-template-columns: 1fr;
        max-width: 360px;
    }

    .booking-header h1 {
        font-size: 5.2em;
    }

    #booking-page {
        padding: 40px 16px;
    }
}
/* ===== End Booking Page ===== */
