@font-face {
	font-family: 'Darleston';
	src: url('../assets/fonts/Darleston/Darleston.eot');
	src: url('../assets/fonts/Darleston/Darleston.eot?#iefix') format('embedded-opentype'),
				url('../assets/fonts/Darleston/Darleston.woff2') format('woff2'),
				url('../assets/fonts/Darleston/Darleston.woff') format('woff'),
				url('../assets/fonts/Darleston/Darleston.ttf')  format('truetype');
}

/* 
***************************************************************************************
** VARIABLES
***************************************************************************************
*/
:root {
	--font-weight: 100;
	
  --font-weight-h2: bold;
	--font-size-h2: 2rem;
	
  --font-weight-h3: bold;
	--font-size-h3: 1.2rem;
  
  --color-blue: #18bfd3;
  --color-green: #b6d43a;
  --color-red: #f44336;
  --color-gray: #f4f4f4;

}

/* 
***************************************************************************************
** ELEMENTS
***************************************************************************************
*/
html, body {
	font-family: 'Mulish', sans-serif;
	margin: 0;
	padding: 1rem 1rem 0 1rem;
	font-weight: var(--font-weight);
}

p {
	font-family: 'Mulish', sans-serif;
	font-weight: var(--font-weight);
}
a {
  color: black;
}
h2 {
  font-weight: var(--font-weight-h2);
  font-size: var(--font-size-h2);
  text-transform: capitalize;
}
h3 {
  font-weight: var(--font-weight-h3);
  font-size: var(--font-size-h3);
  margin: 1rem 0;
}
.section {
  margin: 2rem 0;
  text-align: center;
}
.color-blue {
  color: var(--color-blue);
}
.color-green {
  color: var(--color-green);
}
.color-red {
  color: var(--color-red);
}
.bg-color-blue {
  background-color: var(--color-blue)
}
.bg-color-green {
  background-color: var(--color-green);
}
.bg-color-red {
  background-color: var(--color-red);
}
.no-decoration {
  text-decoration: none;
}
.center {
  text-align: center;
}
.shadow {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}
.bold {
  font-weight: bold;
}

/* ***************************************************************************************
** CUSTOM HERO LAYOUT
*************************************************************************************** */
.custom-hero-layout {
  position: relative;
  width: 100%;
  height: 600px;
  min-height: 350px;
  display: flex;
  overflow: hidden;
  background: white;
}
.hero-left {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  color: white;
  background: var(--color-blue);
}
.hero-left-top {
  font-size: 1.4rem;
  padding: 1rem;
}
.hero-left-bottom {
  font-size: 1rem;
  padding: 1rem;
}
.hero-right {
  flex: 1 1 0;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-center-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40vw;
  height: 40vw;
  max-width: 420px;
  max-height: 420px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-logo {
  width: 60%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .custom-hero-layout {
    flex-direction: column;
  }
  .hero-left, .hero-right {
    padding-bottom: 5rem;
  }
  .hero-center-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40vw;
    height: 40vw;
    max-width: 220px;
    max-height: 220px;
    z-index: 2;
  }
}

/* ***************************************************************************************
** ABOUT LAYOUT
*************************************************************************************** */
.about-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
  background-color: #f9f9f9;
}

@media (min-width: 768px) {
  .about-layout {
    flex-direction: row;
  }
}

.about-left {
  flex: 1;
  padding: 2rem;
}
.about-right {
  flex: 1;
  padding: 0 2rem 2rem 2rem;
}

.about-left {
  background-color: var(--color-green);
}

.about-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.about-quote {
  margin: 1rem 0;
  font-style: italic;
  font-size: 0.95rem;
  color: white;
  text-align: justify;
  width: 100%;
}

.about-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-text {
  color: black;
}

/* ***************************************************************************************
** SERVICES COMPONENT
*************************************************************************************** */
.services-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-around;
  align-items: stretch;
}
.service-card {
  width: 320px;
  padding: 1.5rem;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-img {
  width: 100%;
  object-fit: cover;
}
.service-desc {
  text-align: left;
}
.service-btns {
  display: flex;
  gap: 1rem;
  width: 100%;
  justify-content: space-around;
  margin-top: auto;
}
.service-btns button {
  width: 100%;
  background: white;
  color: var(--color-blue);
  border: none;
  padding: 0.5rem 1.2rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.service-btns button:hover {
  background: #eee;
}
@media (max-width: 768px) {
  .services-cards, .service-btns {
    flex-direction: column;
    align-items: center;
  }
  .service-card {
    width: auto;
    max-width: 400px;
  }
}

/* ***************************************************************************************
** GALLERY COMPONENT
*************************************************************************************** */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.thumb {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: filter 0.25s;
}

.thumb:hover {
  filter: brightness(1.07);
}
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.lightbox.show {
  display: flex;
}
.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}
.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 1000;
}

/* ***************************************************************************************
** REVIEWS SLIDER
*************************************************************************************** */
.review-bg {
  background: var(--color-gray);
  padding: 2rem;
}
.swiper-wrapper {
  align-items: stretch;
}
.swiper-slide, .swiper-slide-prev {
  display: flex;
  height: auto;
  padding: 0;
  margin: 0;
}
.review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 100%;
  position: relative;
}

.review-card blockquote {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
.review-card blockquote p {
  margin: 0;
  padding: 0 0.5rem;
  color: black;
  font-size: 1rem;
  position: relative;
  z-index: 2;
  text-align: center;
  word-break: break-word;
  white-space: normal;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.quote-mark {
  color: var(--color-red);
  font-size: 6rem;
  font-family: serif;
  pointer-events: none;
  flex: 0 0 auto;
  line-height: 1;
}
.quote-mark--left {
  align-self: flex-start;
}
.quote-mark--right {
  align-self: flex-end;
}

.review-author {
  font-weight: bold;
  text-align: left;
  font-size: .8rem;
}

/* ***************************************************************************************
** LOCATIONS COMPONENT
*************************************************************************************** */
.locations-section {
  margin: 2rem 0;
  text-align: center;
}
.locations-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.location-title {
  font-weight: bold;
  margin: 1rem 0 .5rem 0;
  padding: 0;
}
.location-text {
  margin: .1rem 0;
  padding: 0;
}
.location-card {
  flex: 1 1 260px;
  max-width: 420px;
  background: #fff;
  padding: 1.5rem 2rem;
  text-align: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.location-card img {
  width: 100%;
  max-width: 220px;
  height: auto;
}

/* map keeps full width below cards */
.locations-map { width: 100%; }

/* ***************************************************************************************
** FOOTER COMPONENT
*************************************************************************************** */
.site-footer {
  background: white;
  text-align: center;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
}
.footer-logo img {
  max-height: 120px;
}
.footer-info p {
  margin: 4px 0;
  font-size: 14px;
}
.footer-social a {
  margin: 0 .5rem;
}
.footer-social img {
  width: 28px;
  height: 28px;
}
.footer-bottom {
  background: var(--color-blue);
  color: white;
  padding: 10px;
  margin-top: 20px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 1rem;
  }
}

.signature {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
}
.signature a {
  text-decoration: none;
  font-size: .7rem;
  color: #646464;
}