/* ========================================
   Alba’s Touch — Global Stylesheet
   ======================================== */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&family=PT+Serif+Caption:ital@0;1&display=swap');

/* ---- Color Palette ---- */
:root {
  --bg-color: #fff9ef;
  --text-color: #3a2f25;
  --accent-color: #d19d6b;
  --light-accent: #e9dfce;
  --h1-color: #6b5022;
  --h2-color: #08581e;
  --h3-color: #4b7f56;
  --font-body: "Funnel Display", sans-serif;
  --font-heading: "PT Serif Caption", serif;
}

/* ---- Reset & Base ---- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-body);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  margin: 0;
}

/* ---- Layout ---- */
.container {
  width: min(1100px, 94%);
  margin: 0 auto;
}

/* ---- Header ---- */
header {
  background: #fff;
  border-bottom: 1px solid var(--light-accent);
  position: sticky;
  top: 0;
  z-index: 10;
}

/* ---- Logo Styling ---- */
.site-logo {
  width: 125px;
  height: 125px;
  border: 1px solid var(--light-accent);
  border-radius: 14px;
  object-fit: cover; /* keeps logo proportions clean inside the square */
  background-color: #fff; /* gives it a soft edge if logo has transparency */
  padding: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-logo:hover {
  transform: scale(1.02);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

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

nav a {
  margin-left: 1rem;
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}

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

nav a.btn {
  background: var(--accent-color);
  color: #fff;
  padding: 0.45rem 1rem;
  border-radius: 4px;
}

/* ---- Typography ---- */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: normal;
  margin-bottom: 1rem;
}

h1 { color: var(--h1-color); font-size: 2.5rem; }
h2 { color: var(--h2-color); font-size: 1.8rem; }
h3 { color: var(--h3-color); font-size: 1.4rem; }

p, li, label {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
}

/* ---- Buttons ---- */
.btn-primary,
.btn {
  display: inline-block;
  background: var(--accent-color);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease-in-out;
}

.btn:hover,
.btn-primary:hover {
  background: #b68252;
}

/* ---- Hero Section ---- */
.hero {
  padding: 4rem 0 3rem;
  text-align: left;
}

.hero h1 {
  margin-bottom: 1rem;
}

/* ---- Section Styling ---- */
section {
  padding: 2.5rem 0;
}

ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}


.services-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2rem;
  margin: 3rem 0;
}

.services-photo {
  background: url("images/organize.png") center/cover no-repeat;
  width: 100%;
  min-height: 400px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.services-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 900px) {
  .services-hero {
    grid-template-columns: 1fr;
  }

  .services-photo {
    min-height: 300px;
  }
}

/* ---- Service Boxes ---- */
.service-box {
  background: #fff;
  border: 1px solid var(--light-accent);
  border-radius: 6px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.service-area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 2rem;
  margin-top: 2rem;
}

.map-container img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  border: 1px solid var(--light-accent);
}

@media (max-width: 800px) {
  .service-area-grid {
    grid-template-columns: 1fr;
  }

  .map-container {
    margin-top: 1.5rem;
  }
}

/* ---- Forms ---- */
form {
  background: #fff;
  border: 1px solid var(--light-accent);
  border-radius: 6px;
  padding: 1.5rem;
  margin: 1.5rem 0 3rem;
}

label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

input, textarea {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: var(--font-body);
}

button {
  background: var(--accent-color);
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background: #b68252;
}

/* ---- Footer ---- */
footer {
  text-align: center;
  padding: 2rem 0;
  font-size: 0.85rem;
  color: #777;
}

/* ---- Responsive ---- */
@media (max-width: 700px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: 2.1rem;
  }
}