:root {
  --primary-color: #967e5b; /* Sandy Brown */
  --secondary-color: #3d441e; /* Dark Olive Green */
  --bg-light: #f4f5f0; /* Soft olive off-white */
  --text-main: #4a5548; /* Deep olive grey */
  --text-heading: #1e291b; /* Darkest Olive */
  --white: #ffffff;
  --border-color: #d1d5db;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  line-height: 1.6;
  background-color: var(--white);
}

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

/* Typography */
h1, h2, h3, h4 {
  color: var(--text-heading);
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.section-subheader {
  color: var(--primary-color);
  text-align: center;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

/* Header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: transparent;
  color: var(--white);
  transition: background 0.3s;
}

.header.scrolled {
  background: var(--secondary-color);
  position: fixed;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.phone-btn {
  background: var(--white);
  color: var(--secondary-color);
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Sections */
section {
  padding: 5rem 5%;
}

.bg-light {
  background-color: var(--bg-light);
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 23, 42, 0.5); /* dark overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-text {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

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

.btn {
  padding: 0.75rem 2rem;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s, background-color 0.2s;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #796649;
}

.btn-light {
  background-color: var(--white);
  color: var(--secondary-color);
}

.btn-light:hover {
  background-color: var(--bg-light);
}

/* Grid layout for cards */
.icon-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.icon-card {
  background: var(--white);
  padding: 2.5rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s;
}

.icon-card:hover {
  transform: translateY(-5px);
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  background: #ced4c1; /* Soft Olive Green */
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}

.icon-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.icon-card p {
  color: #64748b;
  font-size: 0.95rem;
}

/* --- Contact Section Simplification --- */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1.2rem;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-btn.secondary {
    background-color: var(--sandy-brown);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.contact-details {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.95rem;
    opacity: 0.8;
}

.contact-details p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Image Grids */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.image-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 300px;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.image-card:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--white);
}

.image-overlay h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.image-overlay ul {
  list-style: none;
  font-size: 0.9rem;
}

.image-overlay ul li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.25rem;
}

.image-overlay ul li::before {
  content: '•';
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

/* Block Content (Restaurant/Contact) */
.split-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-content img {
  width: 100%;
  border-radius: 10px;
  height: auto;
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.info-item {
  display: flex;
  gap: 1.5rem;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.info-item .icon {
  width: 40px;
  height: 40px;
  background: #ced4c1; /* Soft Olive Green */
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.info-item h4 {
  margin-bottom: 0.25rem;
}

.info-item p {
  color: #64748b;
  font-size: 0.9rem;
}

/* Call to Action Box */
.cta-box {
  background: var(--bg-light);
  padding: 3rem;
  border-radius: 10px;
  text-align: center;
  margin-top: 3rem;
  border: 1px solid var(--border-color);
}

.cta-box h3 {
  margin-bottom: 1rem;
}

.cta-box p {
  margin-bottom: 1.5rem;
}

/* Forms */
.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: inherit;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* Footer */
.footer {
  background-color: var(--secondary-color);
  color: #94a3b8;
  padding: 4rem 5% 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-logo {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-contact li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.footer-contact li i {
  color: var(--primary-color);
  margin-top: 0.25rem;
}

/* Map area */
.map-container {
  margin-top: 2rem;
  border-radius: 10px;
  overflow: hidden;
  height: 250px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

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

.gallery-grid .image-card {
  height: 250px;
}

/* Bottom info hero */
.hero-bottom-info {
  position: absolute;
  bottom: 2rem;
  display: flex;
  gap: 2rem;
  color: var(--white);
  font-size: 1rem;
  align-items: center;
  z-index: 2;
}

.hero-bottom-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media(max-width: 900px) {
  .split-content, .footer-grid {
    grid-template-columns: 1fr;
  }
  .image-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .nav-links, .phone-btn {
    display: none; /* Basic mobile reset */
  }
  .hero h1 {
    font-size: 3rem;
  }
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.page-btn {
    min-width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
}

.page-btn:hover {
    color: var(--primary);
}

.page-btn.active {
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 3px;
    color: var(--secondary);
}

/* Modal / Lightbox Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.modal-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 1000px;
    max-height: 80vh;
    object-fit: contain;
    animation-name: zoom;
    animation-duration: 0.4s;
    border: 3px solid white;
    border-radius: 4px;
}

@keyframes zoom {
    from {transform: scale(0.8); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-modal:hover {
    color: var(--secondary);
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: white;
    padding: 20px 0;
    font-size: 1.2rem;
    font-weight: 300;
}

.image-card img {
    cursor: pointer;
}
