/* Global Styles */
* {
  box-sizing: border-box;
}

/* Import custom fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Montserrat:wght@300;400;600&display=swap');

/* Theme variables inspired by Taverna: dark backgrounds with golden accents */
:root {
  --bg-color: #0a1e23;
  --section-bg: #0f2934;
  --accent-color: #c99a5d;
  --accent-hover: #b68b50;
  --text-color: #f5f5f5;
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Montserrat', sans-serif;
}

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Header and Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 30, 35, 0.96);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 2rem;
}

nav .logo img {
  height: 40px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

nav ul li a {
  font-weight: 600;
  color: var(--text-color);
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: var(--accent-color);
}

/* Hero */
.hero {
  position: relative;
  height: 90vh;
  background-image: url('assets/images/interior1.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-color);
}

/* Dark overlay to improve contrast on hero */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.hero .content {
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-family: var(--heading-font);
  color: var(--accent-color);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-family: var(--body-font);
}

.hero .cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero .cta a {
  background: #e5b05b;
  color: #fff;
  padding: 0.8rem 1.4rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.hero .cta a:hover {
  background: #d29a43;
}

/* Logo displayed in the hero banner */
.hero .hero-logo {
  max-width: 200px;
  width: 40%;
  height: auto;
  margin: 0 auto 1rem;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

/* Sections */
 .section {
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: auto;
  background-color: var(--section-bg);
  color: var(--text-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
 }

.section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-family: var(--heading-font);
  color: var(--accent-color);
 }

/* About */
.about p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about .more {
  display: none;
}

.about .more-btn {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 600;
  color: #e5b05b;
  cursor: pointer;
}

/* Menu Section */
.menu-section {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.menu-card {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  max-width: 380px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.menu-card h3 {
  margin: 1rem;
  font-size: 1.5rem;
}

.menu-card p {
  margin: 0 1rem 1rem;
  flex-grow: 1;
}

.menu-card .btns {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  padding: 0 0 1rem;
}

 .menu-card .btns a {
  background: var(--accent-color);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s ease;
 }

 .menu-card .btns a:hover {
  background: var(--accent-hover);
 }

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

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.lightbox img {
  max-width: 85%;
  max-height: 80%;
  border-radius: 8px;
}

.lightbox .close,
.lightbox .prev,
.lightbox .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  user-select: none;
}

.lightbox .close {
  top: 10%;
  right: 5%;
  transform: none;
  font-size: 2rem;
}

.lightbox .prev {
  left: 5%;
}

.lightbox .next {
  right: 5%;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-card h3 {
  padding: 1rem;
  font-size: 1.4rem;
}

.blog-card p {
  padding: 0 1rem 1rem;
  font-size: 0.9rem;
  flex-grow: 1;
}

.blog-card a {
  margin: 1rem;
  align-self: flex-start;
  background: #e5b05b;
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.blog-card a:hover {
  background: #d29a43;
}

/* Contact */
.contact-info {
  text-align: center;
  line-height: 1.8;
}

.contact-info a {
  color: #e5b05b;
  font-weight: 600;
}

/* Footer */
.footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
}

.footer p {
  margin: 0.3rem 0;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}