/* ============================================
   Our Hundred Hours — Shared Stylesheet
   Primary: #1E3A5F | Accent: #D4A574
   ============================================ */

:root {
  --primary: #1E3A5F;
  --primary-light: #2a4a73;
  --accent: #D4A574;
  --accent-light: #e4b98a;
  --text-dark: #1a1a2e;
  --text-body: #4a4a5a;
  --text-muted: #8a8a9a;
  --bg-white: #ffffff;
  --bg-cream: #faf8f5;
  --bg-warm: #f5f0eb;
  --border-light: #e8e4df;
  --shadow-soft: 0 4px 24px rgba(30, 58, 95, 0.08);
  --shadow-medium: 0 8px 40px rgba(30, 58, 95, 0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--primary);
  font-weight: 600;
  line-height: 1.2;
}

/* ============================================
   NAVIGATION
   ============================================ */

.ohh-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}

.ohh-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.ohh-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ohh-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.ohh-nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
}

.ohh-nav-links a {
  text-decoration: none;
  color: var(--text-body);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.ohh-nav-links a:hover {
  color: var(--primary);
  background: var(--bg-cream);
}

.ohh-nav-links a.active {
  color: var(--primary);
  background: var(--bg-cream);
}

.ohh-nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.ohh-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--primary);
}

/* ============================================
   HERO
   ============================================ */

.ohh-hero {
  background: var(--bg-cream);
  padding: 100px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ohh-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,165,116,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.ohh-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ohh-hero-tag {
  display: inline-block;
  background: rgba(30,58,95,0.08);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.ohh-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.ohh-hero h1 span {
  color: var(--accent);
  position: relative;
}

.ohh-hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.ohh-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.ohh-btn-primary {
  background: var(--primary);
  color: white;
}

.ohh-btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.ohh-btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.ohh-btn-secondary:hover {
  background: var(--primary);
  color: white;
}

.ohh-hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   SECTIONS
   ============================================ */

.ohh-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.ohh-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.ohh-section-header h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 12px;
}

.ohh-section-header p {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 500px;
  margin: 0 auto;
}

.ohh-divider {
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ============================================
   FEATURES
   ============================================ */

.ohh-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.ohh-feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.ohh-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.ohh-feature-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
  border-color: transparent;
}

.ohh-feature-card:hover::before {
  transform: scaleX(1);
}

.ohh-feature-icon {
  width: 52px;
  height: 52px;
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 22px;
}

.ohh-feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.ohh-feature-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   BLOG CARDS
   ============================================ */

.ohh-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.ohh-blog-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  display: block;
}

.ohh-blog-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-6px);
  border-color: transparent;
}

.ohh-blog-image {
  width: 100%;
  height: 200px;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 48px;
  position: relative;
  overflow: hidden;
}

.ohh-blog-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,58,95,0.05) 0%, rgba(212,165,116,0.08) 100%);
}

.ohh-blog-content {
  padding: 24px;
}

.ohh-blog-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

.ohh-blog-tag {
  display: inline-block;
  background: rgba(30,58,95,0.06);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.ohh-blog-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.3;
  color: var(--primary);
}

.ohh-blog-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.ohh-read-more {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.ohh-read-more:hover {
  gap: 10px;
  color: var(--accent);
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.ohh-about-hero {
  background: var(--primary);
  color: white;
  padding: 100px 24px 80px;
  text-align: center;
}

.ohh-about-hero .ohh-hero-tag {
  background: rgba(255,255,255,0.12);
  color: white;
}

.ohh-about-hero h1 {
  color: white;
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}

.ohh-about-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto;
}

.ohh-about-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.ohh-about-content h2 {
  font-size: 28px;
  margin: 40px 0 16px;
}

.ohh-about-content h2:first-child { margin-top: 0; }

.ohh-about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 20px;
}

.ohh-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.ohh-value-item {
  padding: 24px;
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent);
}

.ohh-value-item h4 {
  font-size: 17px;
  margin-bottom: 8px;
}

.ohh-value-item p {
  font-size: 14px;
  margin: 0;
  color: var(--text-muted);
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.ohh-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 24px;
}

.ohh-contact-info h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.ohh-contact-info > p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 16px;
}

.ohh-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.ohh-contact-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  font-size: 18px;
}

.ohh-contact-item h4 {
  font-size: 15px;
  margin-bottom: 4px;
}

.ohh-contact-item p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

.ohh-contact-form {
  background: var(--bg-cream);
  padding: 40px;
  border-radius: var(--radius-lg);
}

.ohh-form-group {
  margin-bottom: 20px;
}

.ohh-form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.ohh-form-group input,
.ohh-form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  background: white;
  transition: var(--transition);
  color: var(--text-body);
}

.ohh-form-group input:focus,
.ohh-form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212,165,116,0.15);
}

.ohh-form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.ohh-legal {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.ohh-legal h1 {
  font-size: 36px;
  margin-bottom: 8px;
}

.ohh-last-updated {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 40px;
  display: block;
}

.ohh-legal h2 {
  font-size: 22px;
  margin: 32px 0 12px;
}

.ohh-legal p, .ohh-legal li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 12px;
}

.ohh-legal ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

/* ============================================
   FOOTER
   ============================================ */

.ohh-footer {
  background: var(--primary);
  color: white;
  padding: 60px 24px 30px;
}

.ohh-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.ohh-footer-brand .ohh-logo {
  color: white;
  margin-bottom: 16px;
}

.ohh-footer-brand .ohh-logo-icon {
  background: var(--accent);
}

.ohh-footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.7;
  max-width: 320px;
}

.ohh-footer-col h4 {
  color: white;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}

.ohh-footer-col ul {
  list-style: none;
}

.ohh-footer-col li {
  margin-bottom: 12px;
}

.ohh-footer-col a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease;
}

.ohh-footer-col a:hover {
  color: var(--accent);
}

.ohh-footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.ohh-footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 14px;
}

.ohh-social {
  display: flex;
  gap: 12px;
}

.ohh-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.ohh-social a:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .ohh-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ohh-footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .ohh-nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
  }
  .ohh-nav-links.open {
    display: flex;
  }
  .ohh-nav-links a.active::after {
    display: none;
  }
  .ohh-mobile-toggle {
    display: block;
  }
  .ohh-hero {
    padding: 60px 24px 50px;
  }
  .ohh-section {
    padding: 50px 24px;
  }
  .ohh-blog-grid {
    grid-template-columns: 1fr;
  }
  .ohh-footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ohh-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .ohh-contact-form {
    padding: 28px;
  }
}

/* ============================================
   SCROLLBAR
   ============================================ */

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-cream);
}
::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}
