:root {
  --primary-green: #1c3b1e;
  --dark-green: #112813;
  --bg-cream: #f4f6ee;
  --text-black: #111111;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: var(--bg-cream);
  color: var(--text-black);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Navigation */
.navbar {
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: flex-end;
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-black);
  font-weight: bold;
  font-size: 0.95rem;
  margin-left: 20px;
  letter-spacing: 0.5px;
}

.btn-quote {
  background-color: var(--primary-green);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
}

/* Main Layout Grid */
.main-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 20px 100px 20px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  flex: 1;
}

/* Left Column */
.logo-wrapper {
  text-align: center;
  margin-bottom: 25px;
}

.main-logo {
  max-width: 380px;
  width: 100%;
  height: auto;
}

.hero-text {
  text-align: center;
  margin-bottom: 30px;
}

.hero-text h1 {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.hero-text .subhead {
  font-size: 1.3rem;
  font-weight: 800;
  margin-top: 5px;
}

.services-section h2 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.services-grid ul {
  list-style: none;
}

.services-grid li {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.services-grid i {
  color: var(--primary-green);
}

/* Right Column */
.right-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-card {
  text-align: center;
  margin-bottom: 25px;
}

.profile-frame {
  border: 2px solid var(--text-black);
  border-radius: 12px;
  padding: 6px;
  display: inline-block;
  background: var(--white);
}

.profile-img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

.owner-title {
  font-size: 1.1rem;
  font-weight: 900;
  margin-top: 12px;
  margin-bottom: 10px;
}

.contact-details p {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 4px 0;
}

.contact-details i {
  background: var(--primary-green);
  color: var(--white);
  padding: 6px;
  border-radius: 50%;
  font-size: 0.8rem;
  margin-right: 6px;
}

/* Booking & QR Code */
.booking-container {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

.booking-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-weight: 900;
  font-size: 0.95rem;
  max-width: 100px;
}

.gcal-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 8px;
}

.qr-card {
  background-color: var(--primary-green);
  padding: 12px;
  border-radius: 12px;
  text-align: center;
  width: 200px;
}

.qr-box {
  background: var(--white);
  padding: 10px;
  border-radius: 6px;
}

.qr-img {
  width: 100%;
  height: auto;
  display: block;
}

.qr-footer {
  color: var(--white);
  font-weight: bold;
  font-size: 0.9rem;
  margin-top: 8px;
}

/* Grass Footer */
.grass-footer {
  width: 100%;
  height: 80px;
  /* Option 1: Replace image with real grass texture path */
  background: url('grass-texture.jpg') repeat-x center bottom; 
  /* Option 2: Fallback green gradient */
  background-color: #2d5a27;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 12px;
}

.footer-links {
  color: var(--white);
  font-size: 0.85rem;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  margin: 0 10px;
}

/* Responsive adjustments */
@media (max-width: 850px) {
  .main-container {
    grid-template-columns: 1fr;
  }
}
