
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;

}



body {
  background: #f8f6f3;
  color: #333;  
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow-x: hidden;

}



body.fade-in,
body.page-loaded {
  opacity: 1;
}

body.fade-out {
  opacity: 0;
}

body.loading {
  overflow: hidden;
}

.loader {
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #f8f4f1; 
  transition: opacity 0.5s ease;
}

.loader.fade-out {
  opacity: 0;
  pointer-events: none;
}



h1 {
  font-size: clamp(2rem, 5vw, 5rem);
  font-family: 'Manrope', sans-serif;
  font-weight: 200;}






h1, h2, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  font-weight: 200;
}

h3 {
 font-size: 25px;
 font-family: 'Cormorant', sans-serif;
 font-weight: 700;

}

p {
  font-family: 'Manrope', sans-serif;
  font-weight: 200;
  color: #341919;
  font-size: clamp(0.4rem, 1vw, 1.2rem);

}



html {
  scroll-behavior: smooth;
  overflow-x: hidden;

}





.dropdown-content strong {
  font-weight: 1000;
}


.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100dvh;
  width: 100vw;
  overflow: hidden;
}

.hero picture,
.hero picture img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  object-fit: cover;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 1;
}

.hero-logo {
  width: 60%;
  max-height: 30vh;
  object-fit: contain;
}



.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


.hero-subtext {
  margin-top: 20rem;
  font-size: 1.7rem;
  color: #701f1f;
  font-family: 'Cormorant', sans-serif;
  font-weight: 400;
}



@media (max-width: 425px) {
  .hero-subtext {
    margin-top: 11rem;
    margin-left: 0.5rem;
    font-size: 1rem; 
    max-width: 90%;
  }
}

/* Responsive scaling */
@media (max-width: 770px) {
  .hero-subtext {
    margin-top: 15.5rem;
    margin-left: 0.5rem;
    font-size: 1.4rem;
    max-width: 100%;
    }
}

@media (max-width: 767px) {
  .hero-subtext {
    margin-top: 9rem;
    margin-left: 0.5rem;
    font-size: 1rem;
    max-width: 100%;
}
}




@media (max-width: 320px) {
  .hero-subtext {
    margin-top: 7rem;
    font-size: 0.8rem;
    max-width: 100%;
    }
}






/* 
.hero img {
  display: block;
  height: auto;
  width: 100%;
} */

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}




@media (max-width: 425px) {
  .hero {
    height: 100dvh;
  }

  .hero-logo {
    width: 70%;
    max-height: 25vh;
  }
}

@media (max-width: 375px) {
  .hero-logo {
    width: 75%;
    max-height: 22vh;
  }
}

@media (max-width: 320px) {
  .hero-logo {
    width: 80%;
    max-height: 20vh;
  }
}




@media (max-width: 400px) {
  .hero {
    height: 100dvh;
    padding: 0;
    overflow: hidden;
  }

  .hero-bg {
    width: 100vw;
    height: 100dvh;
    object-fit: cover;
  }

  .hero-logo {
    max-width: 70%;
    max-height: 30vh;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 375px) {
  .hero-logo {
    width: 75%;
    max-height: 25vh;
  }
}







#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff8f2;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}


.loader-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.3);
  width: 40vw;
  max-height: 30vh;
  object-fit: contain;
  opacity: 0;
  animation: scaleUpToHero 1.4s ease forwards;
}

@keyframes scaleUpToHero {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.3);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

#loader.fade-out {
  opacity: 0;
  visibility: hidden;
}


body.loading {
  overflow: hidden;
  height: 100vh;
}


















.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #fff;
  flex-wrap: wrap;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}


.logo {
  font-weight: bold;
  font-size: 24px;
}






.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: #fff8f2;
  box-shadow: 0 4px 6px rgba(59, 56, 56, 0.1);
  padding: 1rem 2rem;
  font-family: 'Acumin Regular', sans-serif;
}

.nav-content {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #341919;
  font-size: 1.2rem;
  transition: color 0.3s ease;
  z-index: 9999;
  position: relative;
}

.nav-links a:hover {
  color: #b69e96;
}

.book-btn {
  padding: 0.6rem 2rem;
  background-color: #cbbaaf;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-left: auto;
}

.book-btn:hover {
  background-color: #e9e3dd;
}



.wobble span {
  display: inline-block;
  pointer-events: none;
}

.wobble span.sheen {
  animation: sheen 0.3s 1;
}

@keyframes sheen {
  50% {
    transform: translateY(-10%);
    color: #eee;
  }
}


.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-icon div {
  width: 25px;
  height: 3px;
  background-color: #341919;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .nav-content {
    justify-content: space-between;
  }

  .menu-icon {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
   background-color: #fff8f2; 
    padding: 1rem 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: 0.5rem 0;
    pointer-events: auto;

  }

  .book-btn {
    margin-left: 0;
  }
}












.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100dvh;
  width: 100vw;
  overflow: hidden;
}


.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  z-index: 0;
  will-change: transform;
  transition: transform 0.1s ease-out;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 1;
}



.hero-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 900;
  width: 40vw;
  max-height: 30vh;
  object-fit: contain;
}



















.services {
  padding-top: 5rem;
  background-color: #f9f9f9;
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  background-color: #fff;
  border-radius: 8px;
  padding: 2rem;
  position: relative;
}

.service-img {
  flex: 1;
  max-width: 35%; 
}

.service-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  max-height: 250px;
}

.service-text {
  flex: 1;
  max-width: 65%; 
  padding-left: 2rem;
}

.service-text h3 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
 white-space: normal;

}


.explore-btn {
  display: inline-block;
  font-size: 1rem;
  color: #ffffff;
  text-decoration: none;
  background-color: #decfc5;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  transition: background-color 0.3s;
}




.service-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-description {
  flex: 1;
  text-align: left;
}

.service-price {
  white-space: nowrap;
  text-align: right;
  padding-left: 1rem;
}




.explore-btn:hover {
  background-color: #efe8e5;
}

.dropdown-content {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background-color: #f1f1f1;
  border-radius: 8px;
  font-size: 1rem;
  color: #555;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  max-height: 0;
}

.service-item.open .dropdown-content {
  display: block;
  opacity: 1;
  max-height: 1300px;
}

@media (max-width: 768px) {
  .service-item {
    flex-direction: column;
  }

  .service-img {
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .service-text {
    max-width: 100%;
    padding-left: 0;
  }

  .explore-btn {
    width: 100%;
    text-align: center;
  }


  .dropdown-content {
    font-size: 0.9rem;
  }
}



.reveal-text span {
  opacity: 0;
  transform: translateY(20px);
  display: inline-block;
}


.service-text p {
  font-size: 1rem;
  color: #560f0f;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 3s; 
}

.service-text h6 {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.1s; 
  font-size: 1rem;

}

@media (max-width: 420px) {
  .service-text h3 {
    font-size: 2rem;
  }
}

@media (max-width: 375px) {
  .service-text h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 320px) {
  .service-text h3 {
    font-size: 1.3rem !important;
    line-height: 1.2;
  }
}
@media (max-width: 320px) {
  .service-text p {
    font-size: 0.85rem;
    line-height: 1.4;
  }


  .dropdown-content {
    font-size: 0.7rem;
  }
}


@media (max-width: 320px) {
  .explore-btn {
    width: 100%;
    font-size: 0.9rem;
    padding: 0.9rem;
    text-align: center;
  }
}





.service-text-book {
  color: #560f0f;
}

.service-text-book:hover {
  color: #8e4b4b;
}


@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



p.animate-paragraph {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fallback */
@media (max-width: 768px) {
  .fade-up {
    opacity: 1 !important;
    transform: none !important;
  }
} 













.quote {
  position: relative;
  padding: 8vw 5vw;
  text-align: center;
  align-items: center;
  color: #855858;
  overflow: hidden;
  z-index: 1;
}

.quote-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  background-image: url('../images/beigeBG1 copy.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  transform: translateY(0);
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.quote-text {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.quote h2 {
  font-size: clamp(0.9rem, 3vw, 1.8rem); /* smaller minimum */
  line-height: 1.4;
  margin: 0 auto 1rem auto;
  max-width: 800px;
  font-family: 'Cormorant', serif;
  font-weight: 700;
  color: #560f0f;
  text-align: center;
  padding: 0 1rem;
}

#title {
  display: inline;
}

#sub-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(0.65rem, 1.3vw, 1rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #855858;
  padding: 0 1rem;
  margin-top: 0.5rem;
}

/* Optional animation if using .fade-up */
.fade-up.active .quote-text {
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}




@media (max-width: 480px) {
  .quote {
    padding: 3rem 1rem;
  }
  #sub-title {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
  }
}


@media (max-width: 375px) {
  .quote h2 {
    font-size: 0.75rem;
  }

  #sub-title {
    font-size: 0.5rem;
  }
}



@media (max-width: 425px) {
  .quote h2 {
    font-size: 0.8rem;
  }

  #sub-title {
    font-size: 0.45rem;
  }
}

  #sub-title {
    letter-spacing: 0.08em;
  }


@media (max-width: 320px) {
  .quote h2 {
    font-size: 0.6rem;
    line-height: 1.3;
  }

  #sub-title {
    font-size: 0.4rem;
  }
}











.gallery {
  position: relative;
  overflow: hidden;
  padding: 30px;
  background: #fff;
	-webkit-tap-highlight-color: transparent;
  outline: none;
	-moz-tap-highlight-color: transparent;
  user-select: none;
}

.gallery-track {
  display: flex;
  transition: transform 0.5s ease, opacity 0.5s ease;
  gap: 10px;
  will-change: transform, opacity;
	-webkit-tap-highlight-color: transparent;
  outline: none;
	-moz-tap-highlight-color: transparent;
  user-select: none;

}

.gallery img {
  flex: 0 0 auto;
  width: 100%;
  max-width: 900px; 
  max-height: 600px; 
  object-fit: cover;
 cursor: pointer;
 transition: transform 0.3s ease;
}




.gallery img:hover {
  transform: scale(1.02);
}


.gallery-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  background-color: #b69e96d5;
  font-size: 20px;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;

  outline: none;
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  -webkit-appearance: none;
  user-select: none;
}


.gallery-btn:focus,
.gallery-btn:active {
  outline: none;
  background-color: #b69e96d5;
  box-shadow: none;
}


@media (min-width: 768px) {
  .gallery-btn {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}




.gallery-btn.prev {
  left: 10px;
	 -webkit-tap-highlight-color: transparent;
  outline: none;
	-moz-tap-highlight-color: transparent;
  user-select: none;
}

.gallery-btn.next {
  right: 10px;
	 -webkit-tap-highlight-color: transparent;
  outline: none;
	-moz-tap-highlight-color: transparent;
  user-select: none;
}

@media (max-width: 1024px) {
  .gallery img {
    max-width: 100%;
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  .gallery img {
    max-width: 100%;
    max-height: 300px;
  }
}







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

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 36px;
  font-weight: bold;
  cursor: pointer;
}














.about {
  padding: 100px 20px;
}


.about-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
  gap: 40px;
  flex-direction: row; /* keep side by side */

}

.about-item.reverse {
  flex-direction: row-reverse;
}

.about-image {
  width: 340px;
  height: 410px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  margin-bottom: 20px;

}


.about-text {
  max-width: 600px;
}

.about-text p {
  max-width: 600px;
  font-size: 1rem;
}

.about-text h3 {
  margin-bottom: 10px;
  font-size: 3rem;
  color: #560f0f;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-text .name {
  font-size: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 0;
  color: #560f0f;
  font-weight: 600;
  font-family: 'Cormorant', sans-serif;
}

.about-text .role {
  font-size: 1rem;
  color: #560f0f;
  font-family: 'Cormorant', sans-serif;

}






@media (max-width: 767px) {
  .about-item,
  .about-item.reverse {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  

  .about-image {
    width:auto;
    height: clamp(200px, 30vw, 410px);
    aspect-ratio: 340 / 410;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }


  .about-text {
    max-width: 80%;
  }

  .about-text h3 {
    font-size: 2.2rem;
  }

  .about-text .name {
    font-size: 1.3rem;
  }

  .about-text .role {
    font-size: 0.95rem;
  }
  .about-text p {
    font-size: 0.85rem;
  }
}


@media (max-width: 320px) {
  .about-image {
    width: auto;
    height: clamp(200px, 30vw, 410px);
    background-size: cover;
    background-position: center;
    margin-bottom: 1rem;
  }
}


@media (max-width: 320px) {
  .about-text p {
    font-size: 0.7rem;
    line-height: 1.5;
  }
}



@media (max-width: 320px) {
  .about-text h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .about-text .name {
    font-size: 1.2rem;
  }

  .about-text .role {
    font-size: 0.95rem;
  }
}
























.contact {
  text-align: center;
  padding: 40px 30px;
  background-color: #fff8f2;
  color: #4a3f35; 
  box-shadow: 0 -4px 25px rgba(49, 18, 18, 0.016);
}

.contact h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.contact p {
  font-size: 1.2rem;
}

.contact a {
  color: #b69e96;
  text-decoration: none;
  border-bottom: 2px solid #b69e96;
  transition: color 0.3s, border-color 0.3s;
}

.contact a:hover {
  color: #4a3f35;
  border-color: #4a3f35;
}













.footer-contact a {
  color: #b98b73; 
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #a06f59; 
}




.footer {
  display: flex;
  justify-content: space-between;
  align-items: stretch; 
  min-height: 320px; 
    padding-left: 5%;
  background: #fff;
  flex-wrap: wrap;
}

.footer-contact {
  flex: 1;
  max-width: 50%;
  color: #341919;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 2%;
}

.footer-contact p {
  margin-bottom: 10px;
  font-size: 1rem;
}

.footer-image {
  flex: 1;
  max-width: 50%;
  height: 100%;
}

.footer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}







.sgmk-membership {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 40px;
}

.sgmk-membership img {
  width: 40px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
}

.sgmk-membership p {
  font-size: 0.7rem;
  line-height: 1.4;
  margin-top: 10px;
}

.copyright {
  text-align: center;
  font-size: 0.85rem;
  padding: 15px 20px;
  background-color: #f5f5f5;
  color: #333;
  font-family: 'Manrope', sans-serif;
}



.zert p {
  font-size: 0.8rem;
  line-height: 1.4;
  margin-top: 15px;
}













@media (max-width: 992px) {
  .service-item,
  .feature-item {
    flex-direction: column;
    text-align: center;
  }

  .feature-image {
    border-radius: 20px;
    margin: auto;
  }

  .gallery img {
    width: 45%;
  }
}



/* Responsive scaling */
@media (max-width: 770px) {
  .footer-image {
    height: 340px;
    }

    .footer-image img {
      height: fit-content;
    }
}


@media (max-width: 768px) {
  .navbar-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .gallery img {
    width: 90%;
  }
  .footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    background: #f5f5f5;
    padding: 40px;
  }
  
  .footer-contact {
    flex: 1 1 50%;
    padding: 20px;
  }
  
  .footer-image {
    flex: 1 1 50%;
    overflow: hidden;
  }
  
  .footer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  

  .service-item img {
    width: 100%;
    height: auto;
  }
}



@media (max-width: 480px) {
  .book-btn {
    margin-top: 10px;
  }

  .hero img {
    height: auto;
  }

  
}




.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0px);
}


.iframe-wrapper {
  margin-top: 2rem;
}

iframe {
  width: 100%;
  min-height: 80vh;
  border: none;
}



@media (max-width: 600px) {
  form {
    padding: 0 1rem;
  }

  input, select, textarea {
    font-size: 1rem;
  }

  .booking h2 {
    font-size: 1.5rem;
  }
}





.booking-section {
  padding: 8rem 1rem 1rem; 
  text-align: center;
    font-family: 'Cormorant', sans-serif !important;

}


.booking-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #443936;

}


.booking-title h1 {
  font-family: 'Cormorant', sans-serif !important;
  font-weight: 700;

}

.iframe-wrapper {
  display: flex;
  justify-content: center;
}

#sbw_230nty iframe {
  width: 100% !important;
  max-width: 1000px;
  min-height: 800px;
  border: none;
}




.copyright {
  text-align: center;
  width: 100%;
  padding: 1%;
}

















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

img {
  max-width: 100%;
  height: auto;
  display: block;
}



.container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

@media (min-width: 480px) {
  body {
    font-size: 1.1rem;
  }
}

@media (min-width: 768px) {
  body {
    font-size: 1.3rem;
  }
}

@media (min-width: 1024px) {
  body {
    font-size: 1.5rem;
  }
}

button,
a {
  padding-top: 12px;
  font-size: 1rem;
  min-width: 44px;
  min-height: 44px;
  text-align: center;
  border: none;
  cursor: pointer;
}

.grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}



@media (max-width: 480px) {
  .footer {
    flex-direction: column;
    height: auto; /* Let it grow with content */
    padding: 20px;
  }

  .footer-contact, .footer-image {
    max-width: 100%;
    flex: 1 1 100%;
    padding: 10px 0;
  }

  .footer-contact p {
    font-size: 0.8rem;
  }
  
  .zert p {
    font-size: 0.6rem;
  }

  .sgmk-membership {
    flex-direction: row;
    align-items: flex-start;
  }

  .sgmk-membership img {
    width: 40px;
  }

  .sgmk-membership p {
    font-size: 0.5rem;
  }

  .contact h2 {
    font-size: 1.2rem;
  }
}




@media (max-width: 480px) {
  .copyright {
    font-size: 0.5rem;
    margin-bottom: 20px;
  }
}


@media (max-width: 320px) {
  .footer-contact p {
    font-size: 0.8rem;
  }

  .sgmk-membership p {
    font-size: 0.5rem;
  }
  .footer-contact a {
    font-size: 0.8rem;
  }

}
