/*
Theme Name: The Boca Café
Theme URI: https://thebocacafe.com
Author: Zohaib & AI Assistant
Description: Fresh, circular, teal & coffee-tone café theme inspired by The Boca Café logo.
Version: 2.0
Tested up to: 6.5
Requires at least: 5.8
Text Domain: bocacafe
*/

:root {
  --boca-bg: #f6fbfc;
  --boca-bg-alt: #ffffff;
  --boca-teal: #00b3b3;
  --boca-teal-soft: #68d4d4;
  --boca-coffee: #5a321b;
  --boca-dark: #12353a;
  --boca-text: #4b5c64;
  --boca-muted: #9aaab3;
  --boca-radius-lg: 28px;
  --boca-radius-md: 18px;
  --boca-shadow-soft: 0 16px 40px rgba(0,0,0,0.06);
}

body.boca-body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #ffffff 0, #f6fbfc 55%, #e5f7f7 100%);
  color: var(--boca-text);
}

.boca-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.boca-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}

/* Header */

.boca-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

.boca-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.boca-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

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

.boca-logo-text {
  display: flex;
  flex-direction: column;
}

.boca-logo-text span:first-child {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--boca-muted);
}

.boca-logo-text span:last-child {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--boca-dark);
}

.boca-nav {
  display: flex;
  align-items: center;
}

.boca-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 18px;
}

.boca-nav-list li {
  list-style: none;
}

.boca-nav-list a {
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--boca-dark);
  position: relative;
  padding-bottom: 3px;
}

.boca-nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--boca-teal), var(--boca-teal-soft));
  transition: width 0.18s ease;
}

.boca-nav-list a:hover::after,
.boca-nav-list .current-menu-item > a::after {
  width: 100%;
}

/* Hero layout */

.boca-hero {
  padding: 40px 0 70px;
}

.boca-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: center;
}

.boca-hero-text h1 {
  font-size: 2.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: var(--boca-dark);
}

.boca-hero-text h1 span.circle-accent {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: rgba(0,179,179,0.06);
  color: var(--boca-teal);
  margin-bottom: 10px;
}

.boca-hero-subtitle {
  font-size: 1.05rem;
  margin: 0 0 22px;
  color: var(--boca-text);
  max-width: 430px;
}

.boca-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.boca-btn-primary,
.boca-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.boca-btn-primary {
  background: linear-gradient(135deg, var(--boca-teal), var(--boca-teal-soft));
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(0,179,179,0.32);
}

.boca-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,179,179,0.4);
}

.boca-btn-ghost {
  background: #ffffff;
  color: var(--boca-dark);
  border: 1px solid rgba(0,0,0,0.06);
}

.boca-btn-ghost:hover {
  transform: translateY(-2px);
  border-color: var(--boca-teal);
}

.boca-hero-location {
  font-size: 0.9rem;
  color: var(--boca-muted);
}

.boca-hero-tagline {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--boca-muted);
  margin-bottom: 4px;
}

/* Hero right: circular card inspired by logo */

.boca-hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.boca-hero-circle-wrap {
  position: relative;
  width: 320px;
  height: 320px;
}

.boca-hero-circle-bg {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: radial-gradient(circle at center, #ffffff 0, #f6fbfc 55%, #e0fbfb 100%);
  box-shadow: var(--boca-shadow-soft);
}

.boca-hero-circle-ring {
  position: absolute;
  inset: 18px;
  border-radius: 999px;
  border: 3px solid var(--boca-teal);
  border-top-color: var(--boca-teal-soft);
}

.boca-hero-circle-inner {
  position: absolute;
  inset: 40px;
  border-radius: 999px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
}

.boca-hero-circle-inner span.label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--boca-muted);
}

.boca-hero-circle-inner h3 {
  margin: 8px 0 4px;
  font-size: 1.1rem;
  color: var(--boca-dark);
}

.boca-hero-circle-inner p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--boca-text);
}

/* Sections */

.boca-section {
  padding: 56px 0;
}

.boca-section-alt {
  background: var(--boca-bg);
}

.boca-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.boca-section-header h2 {
  margin: 0;
  font-size: 2rem;
  color: var(--boca-dark);
}

.boca-section-header p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--boca-text);
}

/* Cards & grids */

.boca-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.boca-card {
  background: var(--boca-bg-alt);
  border-radius: var(--boca-radius-md);
  padding: 18px 18px 20px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.02);
  transition: transform 0.14s ease, box-shadow 0.14s ease, border-color 0.14s ease;
}

.boca-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
  border-color: rgba(0,179,179,0.18);
}

.boca-card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: var(--boca-dark);
}

.boca-card p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--boca-text);
}

.boca-pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: rgba(0,179,179,0.08);
  color: var(--boca-teal);
  margin-bottom: 8px;
}

.boca-price {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  color: var(--boca-teal);
}

/* Location / map */

.boca-location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 24px;
}

.boca-location-grid iframe {
  width: 100%;
  min-height: 260px;
  border: 0;
  border-radius: var(--boca-radius-lg);
  box-shadow: var(--boca-shadow-soft);
}

/* Footer */

.boca-footer {
  background: #0e2224;
  color: #d8e2e7;
  padding: 30px 0 18px;
}

.boca-footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.boca-footer-links a {
  margin-left: 18px;
  font-size: 0.9rem;
  color: #d8e2e7;
  text-decoration: none;
}

.boca-footer-links a:hover {
  color: var(--boca-teal-soft);
}

.boca-footer-copy {
  font-size: 0.8rem;
  color: var(--boca-muted);
}

/* Responsive */

@media (max-width: 900px) {
  .boca-header-inner {
    flex-direction: row;
  }

  .boca-nav-list {
    gap: 12px;
    font-size: 0.9rem;
  }

  .boca-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .boca-hero-right {
    order: -1;
  }

  .boca-grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .boca-location-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .boca-logo img {
    height: 48px;
  }

  .boca-hero-circle-wrap {
    width: 260px;
    height: 260px;
  }

  .boca-hero-text h1 {
    font-size: 2.2rem;
  }
}
