/* ══════════════════════════════════════════
   Picture Your Property — Global Styles
══════════════════════════════════════════ */

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

body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
  background-color: #fdfdfd;
}

/* ── Header & Nav ── */
header {
  background-color: #ffeedd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.logo {
  font-weight: bold;
  font-size: 1.3rem;
  color: #ff6600;
  text-decoration: none;
  flex-shrink: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

nav a {
  padding: 6px 10px;
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

nav a:hover { color: #ff6600; background: rgba(255,102,0,0.07); }

nav a.nav-book {
  background: #ff6600;
  color: #fff;
  font-weight: 700;
  margin-left: 6px;
}

nav a.nav-book:hover { background: #e05500; color: #fff; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 210;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
@media (max-width: 700px) {
  .hamburger { display: flex; }

  nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffeedd;
    padding: 90px 32px 40px;
    gap: 6px;
    z-index: 205;
    overflow-y: auto;
  }

  nav.open { display: flex; }

  nav a {
    font-size: 1.2rem;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,102,0,0.12);
  }

  nav a.nav-book {
    margin: 16px 0 0;
    text-align: center;
    padding: 14px;
    font-size: 1.1rem;
  }
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  background-color: #ff6600;
  color: #fff;
  padding: 11px 22px;
  margin-right: 10px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s;
}
.btn:hover { background: #e05500; }

.btn-secondary {
  background-color: rgba(255,255,255,0.2);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-secondary:hover { background: rgba(255,255,255,0.3); }

/* ── Typography ── */
h1, h2 { color: #ff6600; }
h1 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.3rem, 3vw, 1.9rem); }

section { padding: 50px 20px; }

/* ── Forms ── */
form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input, textarea, select {
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  color: #333;
  background: #fff;
  width: 100%;
  transition: border-color 0.2s;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #ff6600;
  box-shadow: 0 0 0 3px rgba(255,102,0,0.12);
}

button {
  background-color: #ff6600;
  color: #fff;
  border: none;
  padding: 13px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  transition: background 0.2s;
}

button:hover { background-color: #e05500; }

/* ── Gallery ── */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  cursor: zoom-in;
  transition: transform 0.2s, box-shadow 0.2s;
}

.gallery img:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

/* ── Service Cards (shared) ── */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-item {
  flex: 1;
  min-width: 250px;
  background-color: #fff6f0;
  padding: 20px;
  border-radius: 10px;
}

/* ── About ── */
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.about-text { flex: 1; min-width: 280px; }

.about-image img {
  max-width: 100%;
  border-radius: 10px;
}

/* ── Footer ── */
footer {
  background-color: #ffeedd;
  text-align: center;
  padding: 24px 20px;
  margin-top: 0;
  font-size: 0.9rem;
  color: #666;
}

/* ── Utility ── */
.text-center { text-align: center; }
.muted { color: #666; }
