*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter', sans-serif;
  background:#f8f4ee;
  color:#2d2a26;
  overflow-x:hidden;
}

/* NAVBAR */

.menu {
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  display: none;
  padding: 0;
  z-index: 2000;
}

.line {
  fill: none;
  stroke: black;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}
.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}
.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  padding:25px 7%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:1000;
  background:rgba(248,244,238,0.7);
  backdrop-filter:blur(10px);
}

.logo{
  font-size:14px;
  letter-spacing:3px;
  font-weight:500;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-top {
  font-weight: 600;
}

.logo-bottom {
  font-weight: 400;
  letter-spacing: 4px;
}

nav{
  display:flex;
  gap:35px;
  transition: transform 0.4s ease;
}

nav a{
  text-decoration:none;
  color:#555;
  font-size:14px;
  transition:0.3s;
}

nav a:hover{
  color:#b18b5e;
}

.book-btn{
  text-decoration:none;
  padding:12px 22px;
  border:1px solid #b18b5e;
  color:#2d2a26;
  font-size:14px;
  transition:0.3s;
}

.book-btn:hover{
  background:#b18b5e;
  color:white;
}

/* HERO */

.hero{
  height:100vh;
  background:url('assets/images/photo-1515377905703-c4788e51af15.avif') center/cover no-repeat;
  position:relative;
  display:flex;
  align-items:center;
  padding:0 7%;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(248,244,238,0.45);
}

.hero-content{
  position:relative;
  max-width:700px;
}

.small-text{
  letter-spacing:4px;
  font-size:12px;
  margin-bottom:25px;
  color:#7d4306;
}

.hero h1{
  font-family:'Cormorant Garamond', serif;
  font-size:82px;
  line-height:0.95;
  font-weight:500;
  margin-bottom:30px;
}

.hero-description{
  max-width:550px;
  color:#302f2f;
  line-height:1.8;
  margin-bottom:40px;
}

.hero-buttons{
  display:flex;
  gap:20px;
}

/* BUTTONS */

.primary-btn{
  text-decoration:none;
  background:#b18b5e;
  color:white;
  padding:15px 28px;
  transition:0.3s;
}

.primary-btn:hover{
  transform:translateY(-2px);
}

.secondary-btn{
  text-decoration:none;
  border:1px solid #b18b5e;
  color:#2d2a26;
  padding:15px 28px;
}

/* GENERAL */

section{
  padding:120px 7%;
}

.section-label{
  font-size:12px;
  letter-spacing:4px;
  color:#9a7650;
  margin-bottom:20px;
}

h2{
  font-family:'Cormorant Garamond', serif;
  font-size:58px;
  font-weight:500;
  line-height:1.1;
}

/* INTRO */

.intro{
  display:flex;
  justify-content:space-between;
  gap:80px;
}

.intro-left,
.intro-right{
  flex:1;
}

.intro-right p{
  color:#666;
  line-height:1.9;
  font-size:17px;
}

/* SERVICES */

.services{
  background:white;
}

.section-heading{
  margin-bottom:60px;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.service-card{
  padding:40px;
  background:#faf7f2;
  border:1px solid #eee3d7;
  transition:0.3s;
}

.service-card:hover{
  transform:translateY(-5px);
}

.service-card h3{
  font-family:'Cormorant Garamond', serif;
  font-size:34px;
  margin-bottom:20px;
}

.service-card p{
  color:#666;
  line-height:1.8;
}

/* CRYSTALS */

.crystals{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap:80px;
}

.crystal-image{
  flex: 1 1 45%;
  min-width: 300px;
  aspect-ratio: 4 / 5;
  height: auto;
  background:url('assets/images/crystals.avif') center/cover no-repeat;
}

.crystal-content{
    flex: 1 1 55%;
}

.crystal-content p{
  color:#666;
  line-height:1.9;
  margin-top:25px;
}

/* ABOUT */

.about{
  background:white;
  text-align:center;
  padding: 80px 20px;
}

.about-content{
  display: flex;
  flex-direction: row;
  margin:auto;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.about h4{
  margin-top:15px;
  color:#9a7650;
  font-weight:400;
}

.about p{
  color:#666;
  line-height:1.9;
  margin-top:25px;
}

.section-paragraph {
  flex: 1;
}

.section-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.section-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  object-fit: cover;
}

/* CTA */

.cta{
  background: white;
  text-align:center;
}

.cta h2{
  margin-bottom:40px;
}

/* TESTIMONIALS */

.testimonials {
  padding: 100px 20px;
  background: #f7f4f0;
  text-align: center;
  font-family: Arial, sans-serif;
}

.section-title {
  font-size: 38px;
  color: #2f2f2f;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto 60px auto;
  line-height: 1.6;
}

.testimonial-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-card {
  background: #ffffff;
  padding: 35px;
  max-width: 320px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

.quote {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  font-style: italic;
}

.name {
  margin-top: 20px;
  font-size: 14px;
  color: #9b7b5b;
  letter-spacing: 1px;
}

/* FOOTER */

.footer{
  background:#ffffff;
  border-top:1px solid #e7ddd2;
  padding:80px 7% 30px;
}

.footer-container{
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.footer-col{
  flex: 1;
  text-align: center;
}

.footer-col h3{
  font-family:'Cormorant Garamond', serif;
  font-size:28px;
  margin-bottom:15px;
  color:#2d2a26;
}

.footer-col h4{
  font-size:14px;
  letter-spacing:2px;
  margin-bottom:15px;
  color:#9a7650;
}

.footer-col p{
  color:#666;
  font-size:14px;
  line-height:1.8;
  margin-bottom:8px;
}

.socials{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #555;
  font-size: 14px;
  transition: 0.3s;
}

.social-item i {
  font-size: 16px;
  color: #2d2a26;
  width: 20px;
  text-align: center;
}

.social-item:hover {
  color: #b18b5e;
  transform: translateX(4px);
}

.socials a{
  text-decoration:none;
  color:#555;
  font-size:14px;
  transition:0.3s;
}

.socials a:hover{
  color:#b18b5e;
}

.footer-bottom{
  margin-top:50px;
  text-align:center;
  border-top:1px solid #eee3d7;
  padding:20px;
  background:#f3ede6;
}

.footer-bottom p{
  font-size:13px;
  color:#777;
}

.whatsapp-float{
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: 0.3s;
}

.whatsapp-float img{
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover{
  transform: scale(1.1);
}

.whatsapp-float::after{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  border-radius:50%;
  background:#25D366;
  z-index:-1;
  animation:pulse 1.8s infinite;
}

@keyframes pulse{
  0%{
    transform:scale(1);
    opacity:0.6;
  }
  100%{
    transform:scale(1.8);
    opacity:0;
  }
}

/* RESPONSIVE */

@media(max-width:992px){

  .logo{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .menu{
    display: flex;
  }

  nav{
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 65%;
    background: rgba(248,244,238,0.85);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;

    transform: translateX(-100%);
    z-index: 1500;
  }

  .hero h1{
    font-size:58px;
  }

  .intro {
    flex-direction:column;
  }

  .crystals{
    flex-direction: column;
    text-align: center;
  }

  .crystal-image{
    width: 100%;
    min-width: unset;
    aspect-ratio: 16 / 10;
  }

  .crystal-content{
    width: 100%;
  }

  .service-grid{
    grid-template-columns:1fr;
  }

  nav.active{
    transform: translateX(0);
  }

}

@media(max-width:768px){

  .navbar{
    align-items: center;
  }

  .book-btn{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
  }

  .hero{
    text-align:center;
    justify-content:center;
  }

  .hero-buttons{
    justify-content:center;
    flex-wrap:wrap;
  }

  .hero h1{
    font-size:46px;
  }

  h2{
    font-size:42px;
  }

  .crystal-image{
    width:100%;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .section-image {
    margin-top: 30px;
  }

  .footer-container{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col{
    text-align: center;
  }

  .whatsapp-float{
    width:55px;
    height:55px;
  }
}