/* ========================== RESET ========================== */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: 'Georgia', serif;
  background-color: #fffaf5;  
  color: #333;

}

img {
  max-width: 100%;
  display: block;
  border-radius: 0;
}

/* ========================== HEADER ========================== */
header {
  width: 100%;
  background: #fffaf5;
  padding: 0;
  margin: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 20px;
}

.logo {
  font-size: 36px;
  margin: 0;
}

.logo-link {
  text-decoration: none;
  color: #5a3b1f;
}

.logo-link:hover {
  color: #a86f4a;
}

.main-nav {
  display: flex;
  gap: 30px;
}

.main-nav a {
  text-decoration: none;
  color: #8b5e3c;
  font-weight: bold;
  font-size: 18px;
}

.main-nav a:hover {
  color: #a86f4a;
}

/* ========================== HERO IMAGE ========================== */
.hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 0;
  margin: 0;          /* remove white space */
  padding: 0;         /* ensure no padding */
  border-radius: 0;
  display: block;
}

.hero-section {
  max-width: none;     /* allow full viewport width */
  width: 100%;
  margin: 0;           /* no space above/below */
  padding: 0;          /* no inner white padding */
  border-radius: 0;    /* no rounded corners */
  box-shadow: none;    /* no shadow "frame" */
  background: #fffaf5; /* same as page/nav background */
}


/* ========================== SECTION DEFAULT ========================== */
section {
  background: #fffaf5;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  max-width: 1100px;
  margin: 30px auto;
  padding: 25px;
}

section h2 {
  color: #5a3b1f;
  font-size: 32px;
  margin-top: 0;
}

/* ========================== ABOUT PAGE ========================== */
.about-section {
  background: #fffaf5;  
  box-shadow: none;
  padding: 20px 0;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  max-width: 600px;
}

.about-text h2 {
  text-align: center;
  font-size: 32px;
  color: #5a3b1f;
  margin-top: 0;
}

.about-image img {
  width: 100%;
  max-width: 360px;
  border-radius: 16px;
  object-fit: cover;
}

/* ========================== SERVICES PAGE ========================== */
.services-section {
  background: #fffaf5;  /* already matching nav */
  box-shadow: none;
  padding: 20px 0;
}

.services-container {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
}

.services-text {
  flex: 1;
  max-width: 600px;
}

.services-text h2 {
  text-align: center;
  font-size: 32px;
  color: #5a3b1f;
  margin-top: 0;
}

.services-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  object-fit: cover;
}

.services-section h2 {
    text-align: center;
    width: 100%;
    font-size: 32px;
    color: #5a3b1f;
    margin-top: 0;
}

/* =========SERVICES EXTRA SECTION, for 3 columns ====================== */
.services-extra {
  max-width: 1100px;
  margin: 30px auto;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.services-extra h2 {
  text-align: center;
  font-size: 32px;
  color: #5a3b1f;
  margin-top: 0;
  margin-bottom: 25px;
}

.services-grid {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.service-item {
  flex: 1;
  padding: 18px 16px;
  border-radius: 12px;
  color: #6d6d6d;
  background: rgba(255, 255, 255, 0.7);
}

.service-item h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 20px;
  color: #000000;
}

.service-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

.service-item-border {
  flex: 1;
  padding: 18px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #000; /* thin black border */
  border-radius: 12px; /* rounded corners */
}

/* Make this specific services section full-width */
.services-full-width {
  max-width: none;
  width: 100%;
  margin: 0;              /* no side margins */
  padding: 10px 10px;     /* you can adjust */
  border-radius: 0;
  box-shadow: none;       /* remove card-style box if you had it */
  background: #fff5ec;    /* same as your section bg */
}


/* Only affect service-item cards inside Available Properties */
.services-full-width .service-item {
  padding: 0;                 /* remove padding around image */
  background: rgba(255, 255, 255, 0.7);
}

/* Make the image touch the card edges (no white padding) */
.services-full-width .service-item img {
  display: block;
  width: 100%;
  height: auto;
}

/* Add padding back just to the text */
.services-full-width .service-item h3,
.services-full-width .service-item p {
  padding: 10px 14px 12px;
}


/* Responsive: stack columns on smaller screens */
@media (max-width: 800px) {
  .services-grid {
    flex-direction: column;
  }
}

/* Pricing list improvements */
.price-features {
  list-style: none;        /* remove default dots */
  padding-left: 0;         /* remove indent */
  margin: 25px 0 0 0;      
}

.price-features li {
  position: relative;
  padding-left: 28px;      /* space for checkmark */
  margin-bottom: 16px;     /* increased line spacing */
  font-size: 16px;
  color: #444;
  line-height: 1.5;
}

/* Checkmark bullet */
.price-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #a86f4a;          /* matches your theme */
  font-weight: bold;
  font-size: 16px;
}

.plan-rate {
  font-size: 32px;      /* increase size */
  font-weight: bold;
  color: #000000;       /* strong headline color */
}

/* ========================== UNIFIED PARAGRAPH SPACING ========================== */
.about-text p,
.services-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 18px;
}
