/* =========================
   ROOT VARIABLES
========================= */

:root{
  --gold:#d4af37;
  --black:#980606;
  --white:#ffffff;
  --cream:#f8f5ef;
}

/* =========================
   GLOBAL STYLES
========================= */

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}
html{
  scroll-behavior: smooth;
}
body{
  font-family:Arial, Helvetica, sans-serif;
  line-height:1.6;
  background:var(--cream);
  color:#222;
}

.container{
  width:min(1100px,90%);
  margin:auto;
}

/* =========================
   HEADER & NAVIGATION
========================= */

.header{
  position:fixed;
  top:0;
  width:100%;
  background:rgba(13,13,13,.92);
  z-index:1000;
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:1rem 0;
}

.logo{
  font-size:2rem;
  font-weight:bold;
  color:var(--white);
}

.logo span{
  color:var(--gold);
}

.nav-links{
  display:flex;
  list-style:none;
  gap:1.5rem;
}

.nav-links a{
  color:var(--white);
  text-decoration:none;
  transition:0.3s;
}

.nav-links a:hover{
  color:var(--gold);
}

.menu-toggle{
  display:none;
  background:none;
  border:none;
  color:white;
  font-size:1.8rem;
}

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

.hero{
  height:100vh;
  background:
  linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.75)),
  url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?auto=format&fit=crop&w=1600&q=80')
  center/cover no-repeat;

  display:flex;
  align-items:center;
  color:white;
}

.hero-content{
  padding-top:4rem;
}

.hero h1{
  font-size:3.5rem;
  line-height:1.1;
  margin-bottom:1rem;
}

.hero h1 span{
  color:var(--gold);
}

.hero p{
  max-width:700px;
  font-size:1.15rem;
  margin-bottom:2rem;
}

.hero-buttons{
  display:flex;
  gap:1rem;
  flex-wrap:wrap;
}

/* =========================
   BUTTONS
========================= */

.btn{
  display:inline-block;
  padding:.9rem 1.6rem;
  border-radius:999px;
  text-decoration:none;
  font-weight:bold;
  border:none;
  cursor:pointer;
}

.primary{
  background:var(--gold);
  color:var(--black);
}

.secondary{
  border:2px solid var(--gold);
  color:var(--gold);
  background:transparent;
}

/* =========================
   GENERAL SECTIONS
========================= */

.section{
  padding:6rem 0;
}

.section h2{
  text-align:center;
  font-size:2.4rem;
  margin-bottom:2rem;
  color:var(--black);
}

.dark{
  background:var(--black);
  color:white;
}

.dark h2{
  color:var(--gold);
}

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

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:1.5rem;
}

.card{
  background:white;
  padding:2rem;
  border-radius:18px;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  transition:.3s;
}

.card:hover{
  transform:translateY(-6px);
}

.card h3{
  color:var(--gold);
  margin-bottom:.75rem;
}

/* =========================
   GALLERY SECTION
========================= */

.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
  margin-top:30px;
}

.gallery-item{
  background:var(--white);
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 5px 20px rgba(0,0,0,0.15);
  transition:0.4s;
}

.gallery-item:hover{
  transform:translateY(-8px);
}

.gallery-item img{
  width:100%;
  height:300px;
  object-fit:cover;
  display:block;
}

.gallery-caption{
  text-align:center;
  padding:15px;
  font-size:18px;
  font-weight:600;
  color:#222;
  background:var(--white);
}

.gallery-note{
  text-align:center;
  margin-top:1rem;
  color:#666;
}

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

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2rem;
  align-items:start;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:1rem;
}

.contact-form input,
.contact-form textarea{
  padding:1rem;
  border:none;
  border-radius:10px;
  font-size:1rem;
}

.dark a{
  color:var(--gold);
  text-decoration:none;
}

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

.footer{
  background:#000;
  color:#aaa;
  text-align:center;
  padding:1.5rem;
}

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

@media (max-width:768px){

  .menu-toggle{
    display:block;
  }

  .nav-links{
    display:none;
    position:absolute;
    top:70px;
    right:5%;
    background:#111;
    padding:1rem;
    border-radius:12px;
    flex-direction:column;
  }

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

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

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

  .gallery-item img{
    height:250px;
  }

}
/* =========================
   WHATSAPP BUTTON
========================= */

.whatsapp-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#25D366;
  color:white;
  padding:14px 24px;
  border-radius:50px;
  text-decoration:none;
  font-weight:bold;
  font-size:16px;
  transition:0.3s ease;
  box-shadow:0 5px 15px rgba(0,0,0,0.25);
}

.whatsapp-btn:hover{
  background:#1ebe5d;
  transform:translateY(-3px);
}
/* HERO SECTION */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* SLIDESHOW */

.slideshow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

/* ACTIVE IMAGE */

.slide.active {
  opacity: 1;
}

/* DARK OVERLAY */

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

/* CONTENT ABOVE IMAGES */

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}