@import url('https://fonts.googleapis.com/css2?family=Oregano&display=swap');

/* The Secret Garden Cottage - Modern Styles
   Version: 2026-08-07-v1 */

:root {
  --color-primary: #3a8a8a;      /* Teal-blue from logo */
  --color-primary-dark: #2c6b6b;
  --color-accent: #8b7355;       /* Warm earthy brown */
  --color-bg: #faf9f6;           /* Soft off-white */
  --color-text: #2d2d2d;
  --color-text-light: #5a5a5a;
  --color-white: #ffffff;
  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-logo: 'Oregano', 'Georgia', cursive;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --max-width: 1100px;
  --radius: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: 16px;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-primary-dark);
}

/* Header */
.site-header {
  background: var(--color-white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo img {
  height: 64px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.main-nav a {
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.95rem;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-primary);
}

.btn {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white) !important;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary) !important;
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white) !important;
}

/* Hero */
.hero {
  position: relative;
  height: 70vh;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.55));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 2rem;
}

.hero h1 {
  font-family: var(--font-logo);
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  margin-bottom: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.hero p {
  font-size: 1.15rem;
  margin-bottom: 1.75rem;
  opacity: 0.95;
}

/* Sections */
.section {
  padding: 4rem 1.25rem;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary-dark);
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.section p {
  color: var(--color-text-light);
  margin-bottom: 1rem;
  max-width: 65ch;
}

/* Features grid — prefer even rows (3×2 or 2×3) */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}
@media (max-width: 900px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .features {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: var(--color-white);
  padding: 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-card h3 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

/* Footer */
.site-footer {
  background: var(--color-primary-dark);
  color: #e0e0e0;
  padding: 3rem 1.25rem 1.5rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.site-footer h4 {
  color: var(--color-white);
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}

.site-footer a {
  color: #c8d6c9;
}

.site-footer a:hover {
  color: var(--color-white);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.875rem;
  text-align: center;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .hero {
    height: 60vh;
  }
}


.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}
.footer-social a:hover {
  background: #1877f2;
  color: #fff;
  transform: translateY(-2px);
}
