/* style.css */

* { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior:smooth; }

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f4f1ed;
  color: #2b2b2b;
  line-height: 1.7;
}

h1, h2 {
  font-family: Georgia, serif;
  font-weight: 600;
}

/* HERO */

header {
  position: relative;
  height: 80vh;
  min-height: 550px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:white;
  overflow:hidden;
}

header picture,
header img {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}

header::after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(rgba(35,20,10,0.75), rgba(35,20,10,0.75));
  z-index:1;
}

.hero-content {
  position:relative;
  z-index:2;
  padding:20px;
}

header h1 {
  font-size:76px;
  letter-spacing:1px;
  margin-bottom:20px;
}

header h1::after {
  content:"";
  display:block;
  width:90px;
  height:3px;
  background:#b08d57;
  margin:20px auto 0;
}

header p {
  font-size:22px;
  opacity:0.95;
}

/* SECTIONS */

section {
  padding:50px 20px;
  max-width:1100px;
  margin:auto;
  opacity:0;
  transform:translateY(40px);
  transition:all 0.8s ease;
}

section.visible {
  opacity:1;
  transform:translateY(0);
}

h2 {
  text-align:center;
  font-size:34px;
  margin-bottom:60px;
  position:relative;
}

h2::after {
  content:"";
  width:90px;
  height:4px;
  background:repeating-linear-gradient(
    90deg,
    #b08d57,
    #b08d57 8px,
    transparent 8px,
    transparent 14px
  );
  display:block;
  margin:18px auto 0;
}

/* SERVICES */

.services {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
}

.card {
  background:white;
  padding:30px;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  text-align:center;
  transition:0.3s ease;
  border-top:4px solid #b08d57;
}

.card:hover {
  transform:translateY(-8px);
  box-shadow:0 18px 40px rgba(0,0,0,0.15);
}

/* GALLERY */

.gallery {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}

.gallery img {
  width:100%;
  border-radius:14px;
  box-shadow:0 8px 22px rgba(0,0,0,0.12);
  transition:0.3s ease;
}

.gallery img:hover {
  transform:scale(1.05);
}

/* CONTACT */

.contact {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:60px;
  align-items:center;
}

.contact-info {
  background:white;
  padding:45px;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  border-left:6px solid #b08d57;
}

.contact-info p {
  margin-bottom:20px;
  font-size:18px;
}

.contact-info strong {
  color:#b08d57;
  display:block;
  margin-bottom:6px;
}

iframe {
  width:100%;
  height:350px;
  border:0;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

/* FOOTER */

footer {
  background:#2a1a10;
  color:#e0d5c6;
  text-align:center;
  padding:30px;
  font-size:14px;
}

/* CALL BUTTON */
.call-btn{
display:inline-block;
background:#8b5e3c;
color:white;
padding:14px 28px;
border-radius:6px;
text-decoration:none;
font-weight:bold;
margin-top:20px;
}
.call-btn:hover{
background:#6f472c;
}
