:root {
  --primary-color: #FFD700;
  --background-dark: #000000;
  --background-light: #ffffff;
  --text-light: #ffffff;
  --text-dark: #000000;
  --font-main: 'Montserrat', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background-color: var(--background-dark);
  color: var(--text-light);
}

main {
  padding: 2rem 1rem;
}

.highlight-text {
  color: #ffffff;
}

/* Typography */
h1, h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: var(--background-dark);
  position: relative;
  height: 80px;
}

.header-left img {
  height: 60px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary-color);
  cursor: pointer;
}

/* Desktop Nav */
.main-nav {
  display: flex;
  align-items: center;
  height: 100%;
  padding-right: 2rem;
}

.nav-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}

.nav-menu a {
  color: var(--text-light);
  text-decoration: none;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 60vh;
  background-color: var(--background-dark);
  overflow: hidden;
}

.hero-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-img {
  width: 100%;
  height: 90%;
  object-fit: cover;
  display: block;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  padding: 1rem;
}

.btn-hero-cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: var(--background-dark);
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.about-text-block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}


/* Divider */
.divider {
  height: 4px;
  background-color: var(--primary-color);
}

/* Welcome Section */
.welcome-section {
  background-color: var(--background-light);
  color: var(--text-dark);
  padding: 3rem 1rem;
  text-align: center;
}

/* Buttons */
.btn-book {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: var(--background-dark);
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.btn-book:focus,
.nav-menu a:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Footer */
.site-footer {
  padding: 2rem;
  background-color: var(--background-dark);
  color: var(--text-light);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.social-links a {
  margin: 0 1rem;
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-links a:hover {
  text-decoration: underline;
  color: var(--text-light);
}

/* Responsive Nav: Mobile Centered Hamburger */
@media (max-width: 768px) {
  .site-header {
    justify-content: center;
    align-items: center;
    position: relative;
    height: 60px;
    background-color: var(--background-dark);
  }

  .header-left {
    display: none;
  }

  .nav-toggle {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 10;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    background-color: var(--background-dark);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 300px;
    padding: 2rem;
    z-index: 999;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
    text-align: center;
  }

  .nav-menu.active {
    display: flex;
  }
}
