/* ============================================
   DOG GONE ART PHOTOGRAPHY — Static Rebuild
   Original: WordPress + Elementor Pro + Astra
   Rebuilt: Pure HTML/CSS — July 2026
   ============================================ */

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { 
  font-family: 'Lato', sans-serif; 
  background: #F2F2F0; 
  color: #111; 
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
p { margin-bottom: 1rem; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
.section-light { background: #F2F2F0; }
.section-white { background: #FFFFFF; }
.section-dark { background: #1E3A5F; color: #fff; }
.section-cream { background: #FAF9F6; }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease;
}
.header-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.site-logo img { height: 50px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-menu a {
  font-family: 'Lato', sans-serif; font-size: 0.85rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 1px; color: #333;
  transition: color 0.2s ease;
}
.nav-menu a:hover { color: #C9A96E; }
.nav-cta {
  background: #1E3A5F; color: #fff !important;
  padding: 10px 24px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 1px; font-size: 0.8rem; font-weight: 700;
  transition: background 0.2s ease;
}
.nav-cta:hover { background: #15294a; color: #fff; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; font-size: 1.5rem; color: #1E3A5F; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 90vh; display: flex; align-items: center;
  background-size: cover; background-position: center;
  margin-top: 80px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14,47,82,0.75) 0%, rgba(0,0,0,0.5) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 700px; padding: 60px 24px; margin-left: 5%; }
.hero-eyebrow {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 3px;
  color: rgba(255,255,255,0.8); margin-bottom: 16px; font-weight: 400;
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero p { color: rgba(255,255,255,0.9); font-size: 1.15rem; margin-bottom: 32px; max-width: 560px; }
.hero .btn { margin-bottom: 24px; }
.hero-trust {
  font-size: 0.8rem; color: rgba(255,255,255,0.7); 
  letter-spacing: 0.5px; margin-top: 16px;
}
.hero-trust .stars { color: #C9A96E; font-size: 1rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block; padding: 14px 36px;
  background: #C9A96E; color: #fff;
  font-family: 'Lato', sans-serif; font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  border: none; cursor: pointer; transition: all 0.3s ease;
  border-radius: 2px;
}
.btn:hover { background: #b8985a; color: #fff; transform: translateY(-1px); }
.btn-outline { background: transparent; border: 2px solid #C9A96E; color: #C9A96E; }
.btn-outline:hover { background: #C9A96E; color: #fff; }
.btn-navy { background: #1E3A5F; }
.btn-navy:hover { background: #15294a; color: #fff; }
.btn-white { background: #fff; color: #1E3A5F; }
.btn-white:hover { background: #f0f0f0; color: #1E3A5F; }

/* ===== BREADCRUMB ===== */
.breadcrumb { padding: 20px 0; font-size: 0.8rem; color: #888; background: #F2F2F0; }
.breadcrumb a { color: #C9A96E; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 8px; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-eyebrow {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 3px;
  color: #C9A96E; margin-bottom: 12px; font-weight: 700;
}
.section-header h2 { margin-bottom: 20px; }
.section-header p { font-size: 1.1rem; color: #555; }

/* ===== STEP CARDS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step-card { text-align: center; }
.step-number {
  font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700;
  color: #C9A96E; opacity: 0.3; margin-bottom: 12px;
}
.step-card h3 { margin-bottom: 12px; font-size: 1.4rem; }
.step-card p { color: #555; font-size: 0.95rem; }
.steps-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ===== FEATURE BLOCKS ===== */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 60px; align-items: center; }
.feature-image img { border-radius: 4px; width: 100%; }
.feature-text h3 { margin-bottom: 16px; }
.feature-text p { color: #555; margin-bottom: 16px; }

/* ===== QUOTE BLOCK ===== */
.quote-block { text-align: center; max-width: 800px; margin: 0 auto; padding: 40px; }
.quote-block h2 { font-style: italic; margin-bottom: 24px; }
.quote-block p { font-size: 1.1rem; color: #666; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: #1E3A5F; color: #fff; }
.testimonials h2 { color: #fff; text-align: center; margin-bottom: 50px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial-card { background: rgba(255,255,255,0.08); padding: 32px; border-radius: 4px; }
.testimonial-stars { color: #C9A96E; font-size: 1.1rem; margin-bottom: 16px; }
.testimonial-card p { font-style: italic; margin-bottom: 16px; font-size: 0.95rem; line-height: 1.6; }
.testimonial-author { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* ===== WALL ART OPTIONS ===== */
.options-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.option-card { background: #fff; padding: 40px; border-radius: 4px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.option-card h3 { color: #1E3A5F; margin-bottom: 16px; }
.option-card p { color: #555; }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { overflow: hidden; border-radius: 4px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.tall { grid-row: span 2; }

/* ===== SHOP ===== */
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.product-card { background: #fff; border-radius: 4px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: box-shadow 0.3s ease; }
.product-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
.product-image img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.product-info { padding: 24px; text-align: center; }
.product-info h3 { font-size: 1.3rem; margin-bottom: 8px; }
.product-meta { font-size: 0.8rem; color: #888; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.product-price { font-size: 1.4rem; color: #1E3A5F; font-weight: 700; margin-bottom: 16px; }

/* ===== ABOUT PAGE ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image img { border-radius: 4px; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: #555; margin-bottom: 16px; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.how-card { text-align: center; }
.how-card .icon { font-size: 2rem; margin-bottom: 16px; }
.how-card h3 { margin-bottom: 12px; }
.how-card p { color: #555; font-size: 0.95rem; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h3 { color: #1E3A5F; margin-bottom: 16px; }
.contact-info p { color: #555; margin-bottom: 12px; }
.contact-detail { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.contact-detail .label { font-weight: 700; min-width: 120px; color: #1E3A5F; }
.contact-form { background: #fff; padding: 40px; border-radius: 4px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 6px; font-size: 0.85rem; font-weight: 700; color: #333; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 1px solid #ddd; border-radius: 4px;
  font-family: 'Lato', sans-serif; font-size: 1rem; background: #FAFAFA;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: #C9A96E; background: #fff; }

/* ===== GIFT VOUCHERS ===== */
.giftup-container { max-width: 600px; margin: 0 auto; padding: 40px 0; text-align: center; }

/* ===== CTA BANNER ===== */
.cta-banner { background: #1E3A5F; color: #fff; text-align: center; padding: 60px 0; }
.cta-banner h2 { color: #fff; margin-bottom: 20px; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 28px; }

/* ===== EXPLORE LINKS ===== */
.explore-links { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.explore-link {
  display: flex; align-items: center; gap: 8px; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 1px; color: #C9A96E; font-weight: 700;
  transition: gap 0.2s ease;
}
.explore-link:hover { gap: 12px; color: #b8985a; }

/* ===== FOOTER ===== */
.site-footer { background: #111; color: #999; padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand h3 { color: #fff; font-size: 1.3rem; margin-bottom: 12px; }
.footer-brand p { font-size: 0.9rem; margin-bottom: 12px; }
.footer-brand .phone { color: #C9A96E; font-size: 1.1rem; }
.footer-brand .email { color: #C9A96E; }
.footer-col h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; font-family: 'Lato', sans-serif; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.9rem; color: #999; transition: color 0.2s ease; }
.footer-col ul li a:hover { color: #C9A96E; }
.footer-cta-box { background: rgba(201,169,110,0.1); border: 1px solid rgba(201,169,110,0.3); padding: 24px; border-radius: 4px; margin-bottom: 20px; }
.footer-cta-box p { font-size: 0.9rem; margin-bottom: 16px; color: #ccc; }
.footer-bottom { border-top: 1px solid #222; padding-top: 24px; text-align: center; font-size: 0.8rem; color: #666; }
.footer-bottom a { color: #C9A96E; }

/* ===== STATS BAR ===== */
.stats-bar { background: #1E3A5F; color: #fff; padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: #C9A96E; }
.stat-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.7); }

/* ===== PREPARE PAGE ===== */
.prepare-list { max-width: 700px; margin: 0 auto; }
.prepare-item { display: flex; gap: 24px; margin-bottom: 32px; align-items: flex-start; }
.prepare-number { font-family: 'Playfair Display', serif; font-size: 2rem; color: #C9A96E; min-width: 50px; }
.prepare-item h3 { margin-bottom: 8px; }
.prepare-item p { color: #555; }

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .nav-menu { display: none; }
  .nav-toggle { display: block; }
  .nav-menu.open { display: flex; flex-direction: column; position: absolute; top: 80px; left: 0; right: 0; background: #fff; padding: 24px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); gap: 20px; }
  .steps-grid, .steps-grid-4 { grid-template-columns: 1fr; }
  .feature-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .options-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  section { padding: 50px 0; }
  .gallery-grid, .shop-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 70vh; }
  .hero-content { padding: 40px 20px; margin-left: 0; }
}
