@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root{
  --bg:#f8f5f2;
  --white:#ffffff;
  --dark:#1f1a17;
  --text:#5b514b;
  --gold:#c8a27a;
  --gold-light:#e4c7a7;
  --border:#ece4dc;
  --shadow:0 10px 40px rgba(0,0,0,0.08);
  --radius:24px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:var(--bg);
  color:var(--dark);
  overflow-x:hidden;
  line-height:1.7;
}

img{
  width:100%;
  display:block;
}

a{
  text-decoration:none;
}

section{
  padding:120px 8%;
  position:relative;
}

h1,h2,h3,h4{
  font-family:'Cormorant Garamond',serif;
  font-weight:700;
  line-height:1.1;
}

h2{
  font-size:56px;
  margin-bottom:25px;
  text-align:center;
  color:var(--dark);
}

.section-subtitle{
  display:block;
  text-transform:uppercase;
  letter-spacing:3px;
  color:var(--gold);
  font-size:14px;
  margin-bottom:15px;
  font-weight:600;
}

.center{
  text-align:center;
}

header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:22px 8%;

  background:rgba(255,255,255,0.7);
  backdrop-filter:blur(12px);

  border-bottom:1px solid rgba(255,255,255,0.2);
}

.logo{
  font-size:28px;
  letter-spacing:4px;
  color:var(--gold);
}

nav{
  display:flex;
  gap:35px;
}

nav a{
  color:var(--dark);
  font-size:15px;
  font-weight:500;
  position:relative;
  transition:0.3s;
}

nav a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-8px;

  width:0%;
  height:1px;

  background:var(--gold);
  transition:0.4s;
}

nav a:hover{
  color:var(--gold);
}

nav a:hover::after{
  width:100%;
}

.hero{
  height:100vh;

  background:
    linear-gradient(rgba(0,0,0,0.45),rgba(0,0,0,0.45)),
    url('https://images.unsplash.com/photo-1634449571010-02389ed0f9b0?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');

  background-position:center;
  background-size:cover;

  display:flex;
  align-items:center;
  justify-content:center;

  text-align:center;
  padding:0 20px;
}

.hero-content{
  max-width:850px;
  color:white;
}

.hero-subtitle{
  color:var(--gold-light);
  letter-spacing:4px;
  font-size:15px;
  text-transform:uppercase;
}

.hero h1{
  font-size:90px;
  margin:20px 0;
}

.hero p{
  font-size:20px;
  max-width:650px;
  margin:auto;
  color:rgba(255,255,255,0.85);
}

.hero-buttons{
  margin-top:40px;
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.btn,
.btn-outline{
  padding:16px 34px;
  border-radius:50px;
  font-size:15px;
  transition:0.4s;
  font-weight:600;
}

.btn{
  background:var(--gold);
  color:white;
}

.btn:hover{
  transform:translateY(-4px);
  background:#b58d65;
}

.btn-outline{
  border:1px solid rgba(255,255,255,0.5);
  color:white;
}

.btn-outline:hover{
  background:white;
  color:var(--dark);
}

/* ABOUT */

.about{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.about-image{
  position:relative;
}

.about-image img{
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  height:650px;
  object-fit:cover;
}

.about-text h2{
  text-align:left;
  font-size:58px;
}

.about-text p{
  margin-bottom:25px;
  color:var(--text);
  font-size:17px;
}

.about-features{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
  margin-top:35px;
}

.feature{
  padding:25px;
  background:var(--white);
  border-radius:20px;
  box-shadow:var(--shadow);
}

.feature h4{
  font-size:26px;
  margin-bottom:10px;
}

/* SERVICES */

.services{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
  margin-top:60px;
}

.card{
  background:var(--white);
  border-radius:30px;
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:0.5s;
}

.card:hover{
  transform:translateY(-10px);
}

.card img{
  height:280px;
  object-fit:cover;
}

.card h3{
  font-size:34px;
  padding:25px 25px 10px;
}

.card p{
  padding:0 25px 30px;
  color:var(--text);
}

/* PRICES */

.prices{
  max-width:900px;
  margin:auto;
  margin-top:50px;
}

.price-item{
  display:flex;
  justify-content:space-between;
  align-items:center;

  background:var(--white);
  margin-bottom:20px;
  padding:30px;

  border-radius:24px;
  box-shadow:var(--shadow);

  transition:0.4s;
}

.price-item:hover{
  transform:translateX(10px);
}

.price-item h4{
  font-size:30px;
}

.price-item p{
  color:var(--text);
  margin-top:5px;
}

.price-item span{
  font-size:30px;
  color:var(--gold);
  font-family:'Cormorant Garamond',serif;
  font-weight:700;
}

/* TESTIMONIALS */

.testimonials{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:30px;
  margin-top:60px;
}

.testimonial{
  background:var(--white);
  padding:40px;
  border-radius:30px;
  box-shadow:var(--shadow);
  position:relative;
}

.testimonial::before{
  content:'❝';
  position:absolute;
  top:10px;
  left:25px;
  font-size:80px;
  color:rgba(200,162,122,0.15);
}

.testimonial p{
  color:var(--text);
  margin-bottom:20px;
}

.testimonial h4{
  font-size:26px;
  color:var(--gold);
}

/* CONTACT */

.contact-content{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.contact-info h2{
  text-align:left;
}

.contact-info p{
  color:var(--text);
  margin-bottom:20px;
}

.contact-details{
  margin-top:30px;
}

.contact-details p{
  margin-bottom:12px;
}

form{
  background:var(--white);
  padding:50px;
  border-radius:30px;
  box-shadow:var(--shadow);

  display:flex;
  flex-direction:column;
  gap:20px;
}

input,
textarea{
  padding:18px;
  border:none;
  background:#f7f3ef;
  border-radius:15px;
  font-size:15px;
  outline:none;
}

textarea{
  min-height:140px;
  resize:none;
}

button{
  padding:18px;
  border:none;
  border-radius:50px;

  background:var(--gold);
  color:white;

  font-size:15px;
  font-weight:600;
  cursor:pointer;
  transition:0.4s;
}

button:hover{
  background:#b58d65;
  transform:translateY(-3px);
}

/* FOOTER */

footer{
  background:#161311;
  color:white;
  padding:80px 8% 40px;
}

.footer-content{
  max-width:700px;
  margin:auto;
  text-align:center;
}

.footer-content h3{
  font-size:42px;
  color:var(--gold);
  margin-bottom:20px;
}

.footer-content p{
  color:rgba(255,255,255,0.7);
  margin-bottom:30px;
}

.footer-links{
  display:flex;
  justify-content:center;
  gap:25px;
  margin-bottom:30px;
}

.footer-links a{
  color:white;
  transition:0.3s;
}

.footer-links a:hover{
  color:var(--gold);
}

/* SCROLLBAR */

::-webkit-scrollbar{
  width:10px;
}

::-webkit-scrollbar-thumb{
  background:var(--gold);
  border-radius:20px;
}

::-webkit-scrollbar-track{
  background:#eee;
}

/* MOBILE */

@media(max-width:992px){

  h2{
    font-size:42px;
  }

  .hero h1{
    font-size:62px;
  }

  .about,
  .contact-content{
    grid-template-columns:1fr;
  }

  .about-image img{
    height:500px;
  }
}

@media(max-width:768px){

  section{
    padding:90px 6%;
  }

  header{
    flex-direction:column;
    gap:20px;
    padding:20px;
  }

  nav{
    gap:18px;
    flex-wrap:wrap;
    justify-content:center;
  }

  .hero h1{
    font-size:46px;
  }

  .hero p{
    font-size:17px;
  }

  h2{
    font-size:38px;
  }

  .about-text h2{
    font-size:42px;
  }

  .price-item{
    flex-direction:column;
    align-items:flex-start;
    gap:15px;
  }

  form{
    padding:30px;
  }
}

@media(max-width:480px){

  .hero{
    padding-top:120px;
  }

  .hero h1{
    font-size:38px;
  }

  .btn,
  .btn-outline{
    width:100%;
  }

  .card h3{
    font-size:28px;
  }

  .price-item h4{
    font-size:24px;
  }
}