﻿/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f8f6;
  color: #333;
}

/* Header */
header {
  background: #c9e7e0;
  padding: 2rem 1rem;
  text-align: center;
  position: relative;
}

/* Hamburger Icon */
.hamburger {
  display: none;
  position: absolute;
  top: 1.2rem;
  left: 1rem;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.hamburger div {
  width: 30px;
  height: 4px;
  background: #333;
  border-radius: 2px;
}

/* Desktop Navigation */
nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  background: #e8f3f0;
  padding: 1rem 0;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #e8f3f0;
  padding: 1rem;
  text-align: center;
}

.mobile-menu a {
  padding: 0.8rem 0;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
}

.mobile-menu a:last-child {
  border: none;
}

/* Sections */
section {
  padding: 2rem;
  max-width: 900px;
  margin: auto;
}

/* Buttons */
.book-btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: #7fc6b8;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 1.5rem;
  background: #e8f3f0;
  margin-top: 2rem;
}

/* Images */
.chakra-image {
  display: block;
  margin: 2rem auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Responsive Rules */
@media (max-width: 768px) {
  nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
