@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 20 px 0;
}
p3 {
    font-size: 16px;
    color: #222;
    margin: 15px 0 20 px 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%;
    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: sticky;
    top: 0;
    left: 0;
    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: 50;
}
.fe-box h8 i{
    color:#000;
    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);
}

.wrapper {
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    height: 400px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: start;
    padding-right: 20px;
}

.card {
    width: 10vw;
    border-radius: .75rem;
    background-size: cover;

    cursor: pointer;
    overflow: hidden;
    border-radius: 2rem;
    margin: 0 10px;
    display: flex;
    align-items: flex-end;
    transition: .6s cubic-bezier(.28,-0.03,0,.99);
    box-shadow: 0px 10px 30px -5px rgba(0,0,0,0.8);
}

.card > .row {
    color: white;
    display: flex;
    flex-wrap: nowrap;
}

.card > .row > .icon {
    background: #223;
    color: white;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;

    align-items: center;
    margin: 15px;
}

.card > .row > .description {
    display: flex;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    height: 80px;
    width: 520px;
    opacity: 0;
    transform: translateY(30px);
    transition-delay: .3s;
    transition: all .3s ease;
}

.description p {
    color: #b0b0ba;
    padding-top: 5px;
}

.description h4 {
    text-transform: uppercase;
}

input {
    display: none;
}

input:checked + label {
    width: 50vw;
}

input:checked + label .description {
    opacity: 1 !important;
    transform: translateY(0) !important;

}

.card[for="c1"] {
    background-image: url("img/slideshow/img1.jpg");
    background-position-x: center;
}
.card[for="c2"] {
    background-image: url("img/slideshow/img2.jpg");
    background-position-x: center;
}
.card[for="c3"] {
    background-image: url("img/slideshow/img3.jpg");
    background-position-x: center;
}
.card[for="c4"] {
    background-image: url("img/slideshow/img4.jpg");
    background-position-x: center;
}

.wrapper .viewTest{
    width: 100%;

}
.wrapper .viewTest i{
    text-align: center;
    font-size: 25px;

}

.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-x: auto;
  gap: 20px;
  padding: 20px 0;
  scroll-behavior: auto;
  scrollbar-color: gray #D3D6C8;
}

.testimonial {
  flex: 0 0 auto;
  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 {
  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 {
  text-align: center;
  margin-bottom: 20px;
}

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

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

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

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

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

  #aboutStaff .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;

}
.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;

}

@font-face {
  font-family: 'Signatura Monoline';

  src: url('/assets/fonts/SignaturaMonoline.woff2') format('woff2'),
       url('/assets/fonts/SignaturaMonoline.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;

  font-display: block;
}

body, p {

}

h1, h2 {

}

h3, h4 {

}

.logo, .site-title, .navbar-brand, header .logo, .brand, .site-logo, h1.logo {

}
.testimonials h2 {
    font-size: 3em;
}
.testimonials h1 {
    font-size: 4.5em;
}
.aboutHeader h1{
    font-size: 4.5em;
}
/* ===== Typography (canonical) ===== */
/* ===== Signatura Monoline font-face (robust) ===== */
@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 ===== */

/* ===== Custom Font Overrides ===== */
/* User-specified elements to use Signatura Monoline explicitly */
.hero-section h2,
.feature-section h8,
.feature1-section h8,
.feature2-section h8,
.services-section h2,
.testimonials h2,
.testimonials h1,
.image-section h1,
.about-section h1,
.footerContainer i:not([class*="fa"]):not([class*="icon"]) {
  font-family: 'Signatura Monoline', cursive !important;
  font-weight: 400 !important;
}
/* ===== End Custom Font Overrides ===== */

/* ===== Specific Section Overrides (Signatura Monoline) ===== */
#hero h2,
#feature h8,
#feature1 h8,
#feature2 h8,
.services h2,
#about h1,
.footerContainer i:not([class*="fa"]):not([class*="icon"]) {
  font-family: 'Signatura Monoline', cursive !important;
  font-weight: 400 !important;
}
/* ===== End Specific Section 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; }
