/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f9f9;
}

/* Header & Navigation */
.main-header {
  background: #1e1e1e;
  color: white;
  padding: 0.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.logo-container h1 {
  font-family: 'Old English Text MT', serif;
  font-size: 2.5rem;
  color: white;
  margin: 0;
}
nav {
  display: none;
  transition: all 0.4s cubic-bezier(.68,-0.55,.27,1.55);
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
nav a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 1.1rem;
}
nav a:hover,
nav a.active {
  color: #FFD700;
}

/* Hamburger Menu */
.hamburger {
  display: inline-block;
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1100;
  cursor: pointer;
}
.hamburger-bar {
  display: block;
  width: 100%;
  height: 4px;
  margin: 6px 0;
  background: #fff;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(.68,-0.55,.27,1.55);
}

/* Hamburger Animation */
.hamburger.active .hamburger-bar:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.hamburger.active .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.hamburger.active .hamburger-bar:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* Hamburger + Nav logic */
.hamburger.active + nav,
nav.active {
  display: block;
}

/* Mobile Nav */
@media (max-width: 900px) {
  nav {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1e1e1e;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(.68,-0.55,.27,1.55);
  }
  nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  nav ul {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 2rem;
  }
  nav a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid #333;
  }
}

/* Hero Section */
.hero-section {
  width: 100%;
  max-width: 1200px;
  min-height: 70vh;
  margin: 0 auto;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8rem 2rem;
  background: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),
    url('../images/HeroImage.jpg') center center/cover no-repeat;
  border-radius: 15px;
  position: relative;
  box-sizing: border-box;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}
.hero-section > * {
  position: relative;
  z-index: 2;
}
.hero-section h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
  letter-spacing: 2px;
  text-align: center;
  font-family: 'Georgia', serif;
}
.hero-section p {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  max-width: 600px;
  text-align: center;
  font-weight: 500;
}
.cta-button, .menu-button {
  background: #e3b04b;
  color: #1e1e1e;
  padding: 0.75rem 1.5rem;
  border: none;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  text-decoration: none;
  display: inline-block;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  margin-bottom: 0.5rem;
}
.cta-button:hover, .menu-button:hover {
  background: #c29238;
  color: #fff;
  transform: scale(1.05);
}

/* About Section */
.about-section {
  padding: 4rem 2rem 2rem 2rem;
  max-width: 1200px;
  margin: auto;
}
.about-flex {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.about-image-box {
  flex: 1 1 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-image-box img {
  width: 100%;
  max-width: 350px;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.about-box {
  flex: 2 1 400px;
  background: #fff;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border: 1px solid #e0e0e0;
  text-align: left;
}
@media (max-width: 900px) {
  .about-flex {
    flex-direction: column;
    gap: 1.5rem;
  }
  .about-box {
    text-align: center;
    padding: 1.2rem 0.7rem;
  }
}

/* Snippet Sections (Restaurant, Rooms, Blog, Conferencing) */
.snippet-section {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  margin: 2rem auto;
  max-width: 900px;
  padding: 2.5rem 2rem;
  overflow: hidden;
}
.restaurant-snippet-flex,
.rooms-snippet-flex,
.blog-snippet-flex {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.snippet-video,
.rooms-image-box,
.blog-image-box {
  flex: 1 1 350px;
  max-width: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.snippet-video video,
.rooms-image-box img,
.blog-image-box img {
  width: 100%;
  max-width: 350px;
  max-height: 320px;
  border-radius: 12px;
  object-fit: cover;
  background: #222;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  display: block;
}
.snippet-content-box,
.rooms-content-box,
.snippet-content {
  flex: 1 1 350px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 0;
}
.snippet-content-box p,
.rooms-content-box p,
.snippet-content p {
  margin-bottom: 1.5rem;
  color: #333;
  font-size: 1.1rem;
  text-align: left;
}
.button-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .restaurant-snippet-flex,
  .rooms-snippet-flex,
  .blog-snippet-flex {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
    max-width: 100%;
  }
  .snippet-video video,
  .rooms-image-box img,
  .blog-image-box img {
    max-width: 100%;
    max-height: 220px;
  }
  .snippet-content-box,
  .rooms-content-box,
  .snippet-content {
    align-items: center;
    text-align: center;
  }
  .snippet-content-box p,
  .rooms-content-box p,
  .snippet-content p {
    text-align: center;
  }
  .button-row {
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch;
  }
}

/* Restaurant Tabs (for restaurant.html) */
.restaurant-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.tab-link {
  background: #e3b04b;
  color: #1e1e1e;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 5px 5px 0 0;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 1.1rem;
}
.tab-link.active, .tab-link:hover {
  background: #c29238;
  color: #fff;
}
.restaurant-content {
  display: none;
}
.restaurant-content.active {
  display: block;
}
.restaurant-images {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  flex: 1 1 320px;
  align-items: center;
  justify-content: center;
  max-width: 350px;
}
.restaurant-image {
  width: 100%;
  max-width: 320px;
  max-height: 200px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  background: #222;
  display: block;
}
.restaurant-desc-box {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 0;
}
.restaurant-desc-box h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #b48a3c;
}
.restaurant-desc-box p {
  margin-bottom: 1.2rem;
  color: #333;
  font-size: 1.08rem;
}
.dineplan-plugin, .menu-tab {
  margin-bottom: 1.2rem;
}
@media (max-width: 900px) {
  .restaurant-snippet-flex {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.2rem 0.7rem;
    max-width: 100%;
  }
  .restaurant-images {
    flex-direction: row;
    gap: 0.7rem;
    max-width: 100%;
    justify-content: center;
  }
  .restaurant-image {
    max-width: 100px;
    max-height: 100px;
  }
  .restaurant-desc-box {
    align-items: center;
    text-align: center;
  }
}

/* Contact Section */
.contact-section {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 2rem auto;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.enquiry-form {
  max-width: 600px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.enquiry-form label {
  font-weight: bold;
}
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}
.enquiry-form textarea {
  resize: vertical;
}
.enquiry-form button {
  background: #e3b04b;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}
.enquiry-form button:hover {
  background: #c29238;
}
.contact-details {
  margin-top: 2rem;
  text-align: center;
}
.map-container {
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* Footer */
.site-footer {
  background: #1e1e1e;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 3rem;
  font-size: 0.9rem;
}
.site-footer ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}
.site-footer a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s;
}
.site-footer a:hover {
  color: #fff;
}

/* Scroll to Top Button */
#scrollTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #e3b04b;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: background 0.3s, transform 0.3s;
}
#scrollTop:hover {
  background: #c29238;
  transform: scale(1.1);
}

/* WhatsApp Chat Bubble */
#whatsapp-chat {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25D366;
  color: white;
  border-radius: 50px;
  padding: 0.75rem 1.2rem;
  font-weight: bold;
  font-size: 1rem;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  animation: slideIn 1s ease-out forwards;
  transition: transform 0.3s;
}
#whatsapp-chat:hover {
  transform: scale(1.05);
}
@keyframes slideIn {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Events Snippet Section */
.events-snippet-flex {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.events-image-box {
  flex: 1 1 350px;
  max-width: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.events-image-box img {
  width: 100%;
  max-width: 350px;
  max-height: 320px;
  border-radius: 12px;
  object-fit: cover;
  background: #222;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  display: block;
}
.events-content-box {
  flex: 1 1 350px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 0;
}
@media (max-width: 900px) {
  .events-snippet-flex {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
    max-width: 100%;
  }
  .events-image-box img {
    max-width: 100%;
    max-height: 220px;
  }
  .events-content-box {
    align-items: center;
    text-align: center;
  }
}

/* Blog Images Container */
.blog-images {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  background: #faf8f4;
  padding: 1.2rem;
  border-radius: 12px;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.blog-image {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  background: #eee;
  transition: transform 0.2s;
}

.blog-image:hover {
  transform: scale(1.04);
}

@media (max-width: 700px) {
  .blog-images {
    flex-direction: column;
    align-items: center;
    padding: 0.7rem;
  }
  .blog-image {
    width: 90vw;
    max-width: 320px;
    height: auto;
  }
}

/* Center blog section headings and posts */
.blog-section, .blog-section h2, .blog-post {
  text-align: center;
}

/* Responsive Tweaks */
@media (max-width: 1024px) {
  .hero-section {
    background-attachment: scroll;
  }
}
@media (max-width: 900px) {
  .main-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1rem;
  }
  .logo-container h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  .hero-section {
    padding: 2.5rem 0.5rem;
    min-height: 40vh;
    border-radius: 0;
    box-shadow: none;
  }
  .hero-section h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .hero-section p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .cta-button, .menu-button {
    width: 100%;
    font-size: 1.1rem;
    padding: 1rem;
    margin-bottom: 1rem;
  }
  .site-footer ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .site-footer {
    padding: 1.5rem 0.5rem;
    font-size: 1rem;
  }
  #whatsapp-chat, #scrollTop {
    right: 1rem;
    bottom: 1rem;
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    padding: 0.5rem 0.7rem;
  }
}