*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root{
  --primary:#d6b29c;
  --secondary:#f8f4ef;
  --glass:rgba(255,255,255,0.25);
  --dark:#1f1f1f;
  --white:#ffffff;
  --gold:#d4af37;
}

body{
  font-family:'Poppins',sans-serif;
  background:linear-gradient(135deg,#fdf8f3,#f3ebe4);
  color:var(--dark);
  line-height:1.7;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* ================= HEADER ================= */

header{
  position:sticky;
  top:20px;
  z-index:1000;
  padding:20px 0;
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;

  background:rgba(255,255,255,0.25);
  backdrop-filter:blur(15px);

  border:1px solid rgba(255,255,255,0.2);

  padding:20px 30px;
  border-radius:30px;

  box-shadow:0 8px 32px rgba(0,0,0,0.08);
}

.logo{
  font-size:1.6rem;
  font-weight:700;
  color:#9d6b53;
}

nav{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

nav a{
  text-decoration:none;
  color:var(--dark);

  padding:12px 20px;

  border-radius:50px;

  background:rgba(255,255,255,0.35);

  backdrop-filter:blur(10px);

  transition:0.3s;

  font-weight:500;
}

nav a:hover{
  background:#d6b29c;
  color:white;
  transform:translateY(-2px);
}

/* ================= HERO ================= */

.hero{
  min-height:85vh;

  display:flex;
  align-items:center;
  justify-content:center;

  text-align:center;

  padding:80px 20px;
}

.hero-content{
  background:rgba(255,255,255,0.2);

  backdrop-filter:blur(15px);

  padding:60px;

  border-radius:40px;

  max-width:850px;

  box-shadow:0 8px 32px rgba(0,0,0,0.08);
}

.hero h1{
  font-size:4rem;
  margin-bottom:20px;
}

.hero p{
  font-size:1.2rem;
  margin-bottom:30px;
}

.btn{
  display:inline-block;

  padding:14px 28px;

  border-radius:50px;

  background:#d6b29c;
  color:white;

  text-decoration:none;

  transition:0.3s;

  border:none;
  cursor:pointer;
}

.btn:hover{
  transform:translateY(-3px);
  background:#c79d84;
}

.logo{
  display:flex;
  align-items:center;
}

.logo img{
  height:145px;
  width:auto;

  object-fit:contain;

  margin:-45px 0;
}

/* ================= PAGE HEADER ================= */

.page-header{
  text-align:center;
  padding:80px 20px 50px;
}

.page-header h1{
  font-size:3rem;
  margin-bottom:10px;
}

/* ================= CARDS ================= */

.gallery-grid,
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
  padding-bottom:100px;
}

.gallery-card,
.service-card,
.about-text-block,
.contact-info,
.contact-form,
.news-card{
  background:rgba(255,255,255,0.35);

  backdrop-filter:blur(15px);

  border-radius:30px;

  padding:30px;

  box-shadow:0 8px 32px rgba(0,0,0,0.08);

  transition:0.3s;
}

.gallery-card:hover,
.service-card:hover{
  transform:translateY(-5px);
}

.gallery-card img{
  width:100%;
  height:250px;
  object-fit:cover;
  border-radius:20px;
  margin-bottom:20px;
}

/* ================= ABOUT ================= */

.about-content{
  display:flex;
  flex-direction:column;
  gap:30px;
  padding-bottom:100px;
}

.about-quote{
  background:#d6b29c;
  color:white;
  padding:60px;
  border-radius:30px;
  text-align:center;
}

.about-quote blockquote{
  font-size:2rem;
  font-weight:600;
}

/* ================= CONTACT ================= */

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  padding-bottom:100px;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.contact-form input,
.contact-form textarea{
  padding:15px;
  border:none;
  border-radius:15px;
  background:rgba(255,255,255,0.6);
}

.socials{
  display:flex;
  gap:20px;
  margin-top:20px;
}

.socials p{
  text-align:center;
  margin-bottom:10px;
  font-weight:600;
}

.qr-placeholder{
  width:120px;
  height:120px;

  border-radius:20px;

  background:rgba(255,255,255,0.5);

  display:flex;
  align-items:center;
  justify-content:center;
}

.qr-placeholder img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:20px;
}

.qr-text{
  text-align:center;
  font-size:0.9rem;
  margin-bottom:15px;
  opacity:0.7;
}

/* ================= NEWS ================= */

.news-page{
  display:flex;
  flex-direction:column;
  gap:30px;
  padding-bottom:100px;
}

.featured-news{
  border-left:6px solid #d6b29c;
}

.news-badge{
  display:inline-block;

  background:#d6b29c;
  color:white;

  padding:8px 16px;

  border-radius:50px;

  margin-bottom:20px;
}

/* ================= FOOTER ================= */

footer{
  background:#000;
  color:white;

  padding:60px 20px 20px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:40px;
}

footer ul{
  list-style:none;
}

footer a{
  color:white;
  text-decoration:none;
}

.copyright{
  margin-top:40px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,0.1);

  text-align:center;
}

.copyright a{
  color:var(--gold);
  font-weight:700;
}

/* ================= RESPONSIVE ================= */

@media(max-width:900px){

  header{
    top:10px;
    padding:10px 0;
  }

  .navbar{
    flex-direction:column;
    gap:15px;

    padding:15px;
    border-radius:25px;
  }

  .logo{
    font-size:1.3rem;
  }

  nav{
    justify-content:center;
    gap:10px;
  }

  nav a{
    padding:10px 14px;
    font-size:0.9rem;
  }

  .hero h1{
    font-size:2.5rem;
  }

  .hero-content{
    padding:40px 25px;
  }

  .contact-grid{
    grid-template-columns:1fr;
  }

  .logo img{
    height:95px;
    margin:-25px 0;
  }

}

@media(max-width:600px){

  nav{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    width:100%;
  }

  nav a{
    text-align:center;
    width:100%;
  }

}
