/* Standalone CSS for static HTML pages */
/* Reset and base styles */
* {
  margin: 1px;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Warm saffron/marigold/terracotta color palette */
  --color-primary: oklch(0.68 0.15 45);
  --color-primary-dark: oklch(0.58 0.15 45);
  --color-secondary: oklch(0.75 0.12 60);
  --color-accent: oklch(0.65 0.18 35);
  --color-background: oklch(0.98 0.01 60);
  --color-foreground: oklch(0.25 0.02 45);
  --color-muted: oklch(0.92 0.02 60);
  --color-muted-foreground: oklch(0.50 0.02 45);
  --color-border: oklch(0.88 0.02 60);
  --color-card: oklch(1 0 0);
  --color-card-foreground: oklch(0.25 0.02 45);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--color-foreground);
  background-color: oklch(0.66 0.19 52.07);
  /*background-color: var(--color-background);*/
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* Header and Navigation */
.site-header {
  border-bottom: 1px solid var(--color-border);
  background-color: var(--color-card);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  
  max-width: 1200px;
  margin: 0 auto;
}

.site-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
}

.site-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.site-nav a {
  color: var(--color-muted-foreground);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.site-nav a:hover {
  color: var(--color-primary);
}

.site-nav a.active {
  color: var(--color-primary);
  font-weight: 600;
}

@media (max-width: 767px) {
  .site-nav {
    display: none;
  }
  
  .mobile-note {
    display: block;
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
  }
}

@media (min-width: 768px) {
  .mobile-note {
    display: none;
  }
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--color-border);
  background-color: var(--color-muted);
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section div {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  line-height: 1.5;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--color-muted-foreground);
  transition: color 0.2s;
}

.social-links a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
}

.footer-bottom a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Typography */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
}

/* Sections */
.section {
  padding: 1rem 0;
}

.section-header {
  background-color: var(--color-muted);
  border-bottom: 1px solid var(--color-border);
  padding: 4rem 0;
  text-align: center;
}

.section-muted {
  background-color: var(--color-muted);
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /*background: linear-gradient(to right, rgba(252, 249, 245, 0.95), rgba(252, 249, 245, 0.8), rgba(252, 249, 245, 0.6));*/
}

.hero-content {
  position: relative;
  max-width: 700px;
  padding: 3rem 1rem;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.125rem;
  color: var(--color-muted-foreground);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
}

.btn-primary {
  background-color: var(--color-primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
}

.btn-secondary {
  background-color: var(--color-card);
  color: var(--color-foreground);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  background-color: var(--color-muted);
}

.btn-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .btn-group {
    flex-direction: row;
  }
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: 1fr;
}

.grid-3 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Cards */
.card {
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  padding: 0.5rem;
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--color-muted-foreground);
  font-size: 0.875rem;
}

.card-price {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 1rem 0;
}

.card ul {
  list-style: none;
  padding: 0;
}

.card li {
  padding: 0.5rem 0;
  font-size: 0.875rem;
  display: flex;
  align-items: flex-start;
}

.card li::before {
  content: "✓";
  color: var(--color-primary);
  font-weight: bold;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

/* Trust Signals / Feature Boxes */
.feature-box {
  text-align: center;
  padding: 1.5rem;
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  background-color: oklch(0.95 0.05 45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.feature-box h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.feature-box p {
  color: var(--color-muted-foreground);
  font-size: 0.875rem;
}

/* Divider */
.divider {
  text-align: center;
  padding: 2rem 0;
}

.divider img {
  height: 3rem;
  width: auto;
  opacity: 0.6;
  margin: 0 auto;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.portrait-container {
  display: flex;
  justify-content: center;
}

.portrait-image {
  border-radius: 0.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-caption {
  padding: 1rem;
  background-color: var(--color-card);
  border-top: 1px solid var(--color-border);
}

.gallery-caption h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.gallery-caption p {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  margin: 0;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-family: inherit;
  background-color: var(--color-card);
  color: var(--color-foreground);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px oklch(0.68 0.15 45 / 0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Contact Info Cards */
.info-card {
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  padding: 0.5rem;
}

.info-card h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.info-card p {
  color: var(--color-muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

/* Two Column Layout */
.two-column {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .two-column {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

/* Text Utilities */
.text-center {
  text-align: center;
}

.text-muted {
  color: var(--color-muted-foreground);
}

.text-primary {
  color: var(--color-primary);
}

.max-w-3xl {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

/* Spacing Utilities */
.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-12 {
  margin-top: 3rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* List Styles */
.list-disc {
  list-style-type: disc;
  padding-left: 1.5rem;
}

.list-disc li {
  margin-bottom: 0.5rem;
  color: var(--color-muted-foreground);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(to right, oklch(0.95 0.05 45), oklch(0.98 0.02 60), var(--color-background));
  border-radius: 1rem;
  padding: 1rem 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .cta-section {
    padding: 1rem 1rem;
  }
}
