:root {
  --dark-bg: #1b1c1e;
  --gold: #c8a165;
  --cream: #fdfcf9;
  --charcoal: #333;
}
* { box-sizing: border-box; margin:0; padding:0; }
body {
  font-family: 'Raleway', sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height:1.6;
}
nav {
  position: fixed;
  top:0;
  width:100%;
  background: var(--dark-bg);
  padding: 15px 0;
  text-align: center;
  z-index:100;
}
nav a {
  color: var(--cream);
  text-decoration:none;
  margin: 0 15px;
  font-weight:600;
}
nav a:hover { 
  color: var(--gold); 
  transform: scale(1.15);
}

header {
  height: 100vh;
  /*background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1400') center/cover no-repeat;*/
  background: url('river.jpeg') center/cover no-repeat;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  color: var(--cream);
}
header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  margin-bottom:10px;
}
header p {
  font-size: 1.25rem;
  max-width: 700px;
}
section {
  padding: 20px 20px;
  max-width: 1000px;
  margin:0 auto;
}
h2 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 2.5rem;
  margin-bottom:20px;
  text-align:center;
}
h2:hover {
 transform: scale(1.15);
 transition: transform 0.3s ease, font-size 0.3s ease;
}
.amenities ul {
  list-style:none;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap:20px;
}
.amenities li {
  background: var(--cream);
  padding:20px;
  border-radius:8px;
  box-shadow:0 2px 6px rgba(0,0,0,0.1);
}
.gallery {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap:20px;
}

.gallery img:hover {
 transform: scale(2);
 transition: transform 0.3s ease, font-size 0.3s ease;
}


.gallery img {
  width:100%;
  border-radius:8px;
}
.layout {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap:20px;
}

.layout img {
  width:100%;
  border-radius:8px;
}

video {
  width:100%;
  border-radius:8px;
  margin-top:20px;
}
footer {
  background: var(--dark-bg);
  color: var(--cream);
  text-align:center;
  padding:30px 10px;
  margin-top:60px;
}