/* Unique CSS for Outback Havene */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Outfit:wght@300;400;600&display=swap');

:root {
  --obh-bg-main: #0B0C10;
  --obh-bg-card: #15171E;
  --obh-bg-card-hover: #1C1E26;
  --obh-accent: #D4AF37;
  --obh-accent-hover: #F3C944;
  --obh-text-light: #F8F8F8;
  --obh-text-muted: #A3A3A3;
  --obh-border: rgba(212, 175, 55, 0.2);
  --obh-font-heading: 'Playfair Display', serif;
  --obh-font-body: 'Outfit', sans-serif;
  --obh-radius: 12px;
  --obh-transition: 0.3s ease;
}

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

body {
  background-color: var(--obh-bg-main);
  color: var(--obh-text-light);
  font-family: var(--obh-font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

.obh-page-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.obh-main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--obh-border);
}

.obh-nav-logo-box {
  display: flex;
  flex-direction: column;
}

.obh-nav-logo-txt {
  font-family: var(--obh-font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--obh-accent);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.obh-nav-title {
  font-size: 14px;
  color: var(--obh-text-muted);
  letter-spacing: 1px;
}

.obh-nav-badge {
  border: 1px solid var(--obh-accent);
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  color: var(--obh-accent);
  font-size: 14px;
  letter-spacing: 1px;
}

/* Hero Section */
.obh-hero-sect {
  padding: 80px 0;
  text-align: center;
}

.obh-hero-label {
  display: inline-block;
  color: var(--obh-accent);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 24px;
  position: relative;
}

.obh-hero-label::before,
.obh-hero-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background-color: var(--obh-accent);
}
.obh-hero-label::before { right: 100%; margin-right: 16px; }
.obh-hero-label::after { left: 100%; margin-left: 16px; }

.obh-hero-title {
  font-family: var(--obh-font-heading);
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 32px;
  font-weight: 400;
}

.obh-hero-desc {
  font-size: 18px;
  color: var(--obh-text-muted);
  max-width: 700px;
  margin: 0 auto 64px auto;
}

.obh-hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.obh-hero-card {
  background: var(--obh-bg-card);
  padding: 32px 24px;
  border-radius: var(--obh-radius);
  border: 1px solid transparent;
  transition: var(--obh-transition);
}

.obh-hero-card:hover {
  border-color: var(--obh-border);
  transform: translateY(-5px);
  background: var(--obh-bg-card-hover);
}

.obh-hc-title {
  font-family: var(--obh-font-heading);
  color: var(--obh-accent);
  font-size: 24px;
  margin-bottom: 12px;
}

.obh-hc-desc {
  font-size: 15px;
  color: var(--obh-text-muted);
}

/* Common Content Section */
.obh-content-sect {
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.obh-sect-head {
  text-align: center;
  margin-bottom: 64px;
}

.obh-sect-title {
  font-family: var(--obh-font-heading);
  font-size: 42px;
  margin-bottom: 16px;
  color: var(--obh-text-light);
}

.obh-sect-desc {
  color: var(--obh-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

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

.obh-info-card {
  background: linear-gradient(145deg, var(--obh-bg-card), #0d0f14);
  padding: 40px 32px;
  border-radius: var(--obh-radius);
  border: 1px solid rgba(255,255,255,0.02);
  transition: var(--obh-transition);
  position: relative;
  overflow: hidden;
}

.obh-info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 3px;
  background: var(--obh-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.obh-info-card:hover {
  border-color: var(--obh-border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.obh-info-card:hover::before {
  transform: scaleX(1);
}

.obh-card-kicker {
  color: var(--obh-accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: block;
}

.obh-card-title {
  font-family: var(--obh-font-heading);
  font-size: 28px;
  margin-bottom: 20px;
}

.obh-card-text {
  color: var(--obh-text-muted);
  font-size: 15px;
  margin-bottom: 24px;
}

.obh-card-list {
  list-style: none;
}

.obh-card-list-item {
  color: var(--obh-text-light);
  font-size: 15px;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.obh-card-list-item::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--obh-accent);
  font-size: 12px;
}

/* Footer */
.obh-footer-wrap {
  border-top: 1px solid var(--obh-border);
  padding: 80px 0 40px 0;
  margin-top: 80px;
}

.obh-foot-title {
  font-family: var(--obh-font-heading);
  font-size: 36px;
  color: var(--obh-accent);
  text-align: center;
  margin-bottom: 64px;
}

.obh-foot-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.obh-foot-col h4 {
  font-size: 18px;
  margin-bottom: 24px;
  color: var(--obh-text-light);
}

.obh-foot-col p {
  color: var(--obh-text-muted);
  font-size: 14px;
  margin-bottom: 16px;
}

.obh-foot-contacts {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 24px;
}

.obh-contact-item {
  display: flex;
  flex-direction: column;
}

.obh-contact-label {
  font-size: 12px;
  color: var(--obh-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.obh-contact-value {
  font-size: 15px;
  color: var(--obh-text-light);
}

.obh-foot-nav {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  justify-content: center;
}

.obh-foot-link {
  color: var(--obh-text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: var(--obh-transition);
}

.obh-foot-link:hover {
  color: var(--obh-accent);
}

/* Responsive */
@media (max-width: 992px) {
  .obh-hero-title { font-size: 48px; }
  .obh-hero-grid, .obh-grid-3, .obh-foot-cols {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .obh-hero-title { font-size: 36px; }
  .obh-nav-logo-txt { font-size: 20px; }
  .obh-main-nav { flex-direction: column; gap: 16px; text-align: center; }
  .obh-foot-contacts { flex-direction: column; align-items: center; text-align: center; }
}
