/* ============================================================
   Art & Mirror Framing — Main Stylesheet
   artmirrorframing.com.au
   ============================================================ */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  color: #333;
  background: #fff;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* --- Utility --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-pad { padding: 60px 0; }
.section-pad-sm { padding: 40px 0; }

.text-center { text-align: center; }
.text-gold { color: #b8860b; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: #2c2c2c;
  color: #fff;
  font-size: 13px;
  padding: 6px 0;
}
.top-bar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
.top-bar a { color: #fff; }
.top-bar a:hover { color: #d4af37; text-decoration: none; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
header {
  background: #fff;
  border-bottom: 3px solid #b8860b;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.logo img {
  height: 60px;
  width: auto;
}

nav ul {
  display: flex;
  gap: 0;
}

nav ul li a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #333;
  transition: background 0.2s, color 0.2s;
}

nav ul li a:hover,
nav ul li a.active {
  background: #b8860b;
  color: #fff;
  text-decoration: none;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
}

.hero-slide {
  display: none;
  position: relative;
}
.hero-slide.active { display: block; }

.hero-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  opacity: 0.85;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 20px;
  background: rgba(0,0,0,0.35);
}

.hero-overlay h1 {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  margin-bottom: 10px;
}

.hero-overlay h2 {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  margin-bottom: 24px;
}

.hero-overlay .tagline {
  font-size: 1.5rem;
  font-style: italic;
  color: #d4af37;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  background: #b8860b;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid #b8860b;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn:hover {
  background: transparent;
  color: #fff;
  text-decoration: none;
}
.btn-outline {
  background: transparent;
  border: 2px solid #b8860b;
  color: #b8860b;
}
.btn-outline:hover {
  background: #b8860b;
  color: #fff;
}

/* Slider controls */
.hero-prev, .hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  font-size: 24px;
  padding: 12px 16px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}
.hero-prev { left: 10px; }
.hero-next { right: 10px; }
.hero-prev:hover, .hero-next:hover { background: rgba(184,134,11,0.8); }

.hero-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}
.hero-dot.active { background: #d4af37; }

/* ============================================================
   HOME INTRO SECTION
   ============================================================ */
.home-intro {
  background: #f9f7f2;
  padding: 60px 0;
}

.home-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.home-intro-text h2 {
  font-size: 2rem;
  color: #b8860b;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.home-intro-text p {
  margin-bottom: 16px;
  color: #555;
  line-height: 1.8;
}

.home-intro-text ul {
  margin: 20px 0;
}
.home-intro-text ul li {
  padding: 6px 0 6px 22px;
  position: relative;
  color: #555;
}
.home-intro-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #b8860b;
  font-weight: bold;
}

.home-intro-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border: 4px solid #b8860b;
}

/* ============================================================
   FEATURES STRIP
   ============================================================ */
.features-strip {
  background: #b8860b;
  padding: 30px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.feature-item {
  color: #fff;
}
.feature-item .icon {
  font-size: 2rem;
  margin-bottom: 8px;
}
.feature-item h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   PAGE HERO BANNER (inner pages)
   ============================================================ */
.page-banner {
  background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
  color: #fff;
  padding: 50px 0;
  text-align: center;
  border-bottom: 4px solid #b8860b;
}

.page-banner h1 {
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.breadcrumb {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.breadcrumb a { color: #d4af37; }
.breadcrumb a:hover { text-decoration: underline; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.team-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border: 3px solid #e0d5c0;
  transition: border-color 0.2s;
}
.team-photo img:hover { border-color: #b8860b; }

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
}

.about-text h2 {
  font-size: 1.8rem;
  color: #b8860b;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.about-text p {
  margin-bottom: 16px;
  color: #555;
  line-height: 1.8;
}

.owner-card {
  background: #f9f7f2;
  border: 2px solid #e0d5c0;
  padding: 24px;
  text-align: center;
}

.owner-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #b8860b;
  margin: 0 auto 16px;
}

.owner-card h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 4px;
}

.owner-card .role {
  font-size: 13px;
  color: #b8860b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.owner-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  text-align: left;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-intro {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px;
}

.services-intro p { color: #555; line-height: 1.8; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.service-card {
  background: #f9f7f2;
  border: 1px solid #e0d5c0;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.service-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-body {
  padding: 20px;
}

.service-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #b8860b;
  margin-bottom: 12px;
}

.service-card-body ul {
  padding-left: 0;
}
.service-card-body ul li {
  padding: 4px 0 4px 18px;
  position: relative;
  font-size: 14px;
  color: #555;
}
.service-card-body ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #b8860b;
}

.service-samples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.service-samples img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border: 2px solid #e0d5c0;
  transition: border-color 0.2s;
}
.service-samples img:hover { border-color: #b8860b; }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-section { margin-bottom: 50px; }

.gallery-section h2 {
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #333;
  border-left: 4px solid #b8860b;
  padding-left: 14px;
  margin-bottom: 24px;
}

.gallery-section .gallery-note {
  font-size: 13px;
  color: #888;
  font-style: italic;
  margin-bottom: 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-placeholder-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 10px;
  padding: 3px 7px;
  border-radius: 3px;
  letter-spacing: 0.05em;
}

/* ============================================================
   SPECIAL OFFER PAGE
   ============================================================ */
.offer-section {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.offer-section h2 {
  font-size: 2rem;
  color: #b8860b;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.offer-section p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 24px;
}

.offer-section .voucher-img {
  max-width: 600px;
  margin: 30px auto;
  border: 3px solid #b8860b;
}

.offer-section .print-note {
  font-size: 14px;
  color: #888;
  font-style: italic;
  margin-top: 16px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2 {
  font-size: 1.5rem;
  color: #b8860b;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-detail .icon {
  font-size: 1.4rem;
  color: #b8860b;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #999;
  margin-bottom: 4px;
}

.contact-detail p, .contact-detail a {
  color: #555;
  font-size: 15px;
}

.contact-detail a:hover { color: #b8860b; text-decoration: none; }

.map-embed {
  margin-top: 24px;
  border: 3px solid #e0d5c0;
}

.map-embed iframe {
  width: 100%;
  height: 280px;
  display: block;
  border: none;
}

/* Contact Form */
.contact-form h2 {
  font-size: 1.5rem;
  color: #b8860b;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #666;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  font-size: 15px;
  font-family: inherit;
  color: #333;
  background: #fff;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #b8860b;
}

.form-group textarea { height: 120px; resize: vertical; }

.form-required { color: #c0392b; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d4af37;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #333;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  color: #aaa;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 14px;
  color: #aaa;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #d4af37; text-decoration: none; }

.footer-logo img {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #333;
  color: #ccc;
  font-size: 16px;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.social-links a:hover { background: #b8860b; color: #fff; text-decoration: none; }

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 13px;
  color: #666;
}

.footer-areas {
  font-size: 12px;
  color: #555;
  margin-top: 8px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .home-intro-grid { grid-template-columns: 1fr; }
  .about-content { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .service-samples { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .header-inner { flex-wrap: wrap; }
  nav { display: none; width: 100%; }
  nav.open { display: block; }
  nav ul { flex-direction: column; }
  nav ul li a { padding: 12px 16px; border-bottom: 1px solid #eee; }
  .nav-toggle { display: flex; }
  .hero-overlay h1 { font-size: 1.8rem; }
  .hero-overlay h2 { font-size: 0.9rem; }
  .hero-slide img { height: 300px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .service-samples { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media print {
  header, footer, .hero-prev, .hero-next, .hero-dots { display: none; }
  .page-banner { background: #333; }
}
