:root {
  --primary: #4A90E2;   /* ocean blue */
  --secondary: #F5D76E; /* sandy yellow */
  --light: #fdfdfd;
  --accent: #ffffff;
}

body {
  margin: 0;
  font-family: 'Karla', sans-serif;
  background: var(--light);
  color: #333;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 20px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: var(--accent);
  border-bottom: 3px solid var(--primary);
}

header .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
}

header nav a {
  margin: 0 15px;
  font-weight: 500;
  color: var(--primary);
}

.hero {
  position: relative;
  background: url('images/Pendray2.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(74, 144, 226, 0.5); /* blue overlay */
}
.hero h1, .hero p, .hero .btn {
  position: relative;
  z-index: 1;
}

.btn {
  display: inline-block;
  background: var(--secondary);
  color: #333;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #e5c85c;
}

.room {
  padding: 60px 20px;
  text-align: center;
  border-bottom: 2px solid #eee;
  margin-bottom: 40px;
}

.room h2 {
  color: var(--primary);
}

.room h3 {
  color: var(--secondary);
}

.room .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.room img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
}

.room figcaption {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #555;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}
.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
}
.lightbox.active {
  display: flex;
}

/* Contact */
.contact {
  background: var(--primary);
  color: white;
  padding: 60px 20px;
  border-radius: 12px;
  margin: 40px auto;
  max-width: 600px;
}
.contact h2 {
  margin-bottom: 20px;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: var(--secondary);
  color: #333;
  font-size: 0.9rem;
}
