/* style.css - Honeymoon Haven */
:root{
  --pink:#f8c8dc;
  --cream:#fff8f0;
  --gold:#d4af37;
  --dark:#333;
  --max-width:1000px;
}
*{box-sizing:border-box}
body{
  font-family: "Poppins", Georgia, serif;
  margin:0;
  color:var(--dark);
  background:var(--cream);
  line-height:1.6;
}
.container{
  max-width:var(--max-width);
  margin:0 auto;
  padding:1rem;
}
header{
  background: linear-gradient(90deg, rgba(248,200,220,0.95), rgba(255,248,240,0.95));
  border-bottom:1px solid #e6d6d6;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 0;
}
.brand h1{margin:0;font-size:1.6rem}
nav ul{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  gap:12px;
}
nav a{
  text-decoration:none;
  color:var(--dark);
  padding:8px 12px;
  border-radius:6px;
}
nav a:hover{background:var(--pink)}
.hero{
  display:block;
  width:100%;
  margin-top:12px;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 6px 18px rgba(0,0,0,0.08);
}
.hero img{width:100%;height:auto;display:block}
.grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1rem;
  margin:1rem 0;
}
.card{
  background:white;
  padding:1rem;
  border-radius:8px;
  box-shadow:0 3px 10px rgba(0,0,0,0.04);
}
.footer{
  margin-top:2rem;
  padding:1rem 0;
  border-top:1px solid #e6d6d6;
  text-align:center;
  font-size:0.9rem;
}
.img-credit{font-size:0.8rem;color:#555}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:8px;
}
.gallery img{width:100%;height:180px;object-fit:cover;border-radius:6px}

/* Form */
form{display:grid;gap:.6rem}
input, textarea, select{
  padding:.6rem;
  border-radius:6px;
  border:1px solid #ccc;
  font-size:1rem;
}
button {
  padding: .6rem 1rem;
  background: #c2185b; 
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

button:hover {
  background: #9c144a; 
}

/* Responsive */
@media (max-width:800px){
  .grid{grid-template-columns:1fr}
  .gallery{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:480px){
  nav ul{flex-direction:column; gap:6px}
  .gallery{grid-template-columns:1fr}
  .brand h1{font-size:1.2rem}
}
