/* Basic reset and font */
body, h1, h2, p, ul, li, blockquote, a {
  margin: 0; padding: 0; box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #222;
}

body {
  line-height: 1.6;
  background: #fefefe;
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}

/* Header (Hero) */
header.hero {
  text-align: center;
  margin-bottom: 2rem;
}

header.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 0.3rem;
}

header.hero p {
  font-size: 1.2rem;
  color: #555;
}

/* Sections */
section {
  margin-bottom: 2.5rem;
}

section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #222;
  padding-bottom: 0.3rem;
}

/* Portfolio grid */
.portfolio .grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
  gap: 1rem;
}

.portfolio .grid img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.portfolio .grid img:hover {
  transform: scale(1.05);
}

/* Booking list */
.booking ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 0.5rem;
}

/* Reviews blockquotes */
.reviews blockquote {
  font-style: italic;
  border-left: 4px solid #222;
  padding-left: 1rem;
  margin-bottom: 1rem;
  color: #555;
}

/* Contact socials */
.contact .socials a {
  text-decoration: none;
  color: #222;
  margin: 0 0.5rem;
  font-weight: 600;
}

.contact .socials a:hover {
  color: #0073e6;
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.9rem;
  color: #999;
  margin-top: 3rem;
  padding-bottom: 1rem;
}
