/* assets/css/style.css */

:root {
  --navy: #0D1B2A;
  --slate: #1B263B;
  --gold: #D4AF37;
  --gold-hover: #b89a2e;
  --muted: #9fb0c2;
  --light-bg: #f7f7f9;
  --card-bg: rgba(255, 255, 255, 0.06);
  --border-subtle: rgba(255, 255, 255, 0.12);
  --radius: 12px;
  --shadow-soft: 0 16px 40px rgba(0,0,0,0.25);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #ffffff;
  color: #111827;
}

/* Toasts */

.ov-toast {
  position: fixed;
  top: 16px;
  right: 16px;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  z-index: 2000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.ov-toast-success {
  background: #10b981;
  color: #f9fafb;
}
.ov-toast-error {
  background: #ef4444;
  color: #f9fafb;
}
.ov-toast i {
  font-size: 1rem;
}
.ov-toast-close {
  background: transparent;
  border: none;
  color: inherit;
  font-size: 1.2rem;
  cursor: pointer;
}

/* Header */

.ov-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 27, 42, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ov-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.55rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ov-logo img {
  height: 40px;
  display: block;
}

/* Nav */

.ov-nav {
  display: flex;
  align-items: center;
  position: relative;
}

.ov-nav-links {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.ov-nav-links a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.ov-nav-links a:hover {
  color: var(--gold);
}

/* Mobile nav toggle */

.ov-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.ov-nav-toggle span {
  width: 20px;
  height: 2px;
  background: #e5e7eb;
}

/* Buttons */

.ov-btn {
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.ov-btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #111827;
}
.ov-btn-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
}

.ov-btn-outline {
  background: transparent;
  border-color: #e5e7eb;
  color: #f9fafb;
}
.ov-btn-outline:hover {
  background: #f9fafb;
  color: #111827;
}

.ov-btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.3);
  color: #f9fafb;
}
.ov-btn-ghost:hover {
  background: rgba(255,255,255,0.1);
}

.ov-btn-full {
  width: 100%;
}

/* HERO */

.ov-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  color: #f9fafb;
  background: #000;
  overflow: hidden;
}

/* Replace with your hero image */
.ov-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-sports.png');
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}
.ov-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(212,175,55,0.35), transparent 55%),
              linear-gradient(135deg, rgba(3,7,18,0.9), rgba(3,7,18,0.95));
}

.ov-hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.25rem 3rem;
}

.ov-hero h1 {
  font-size: clamp(2.2rem, 3.1vw, 3.4rem);
  margin-bottom: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ov-hero p {
  max-width: 580px;
  color: #e5e7eb;
  font-size: 1rem;
  line-height: 1.6;
}

.ov-hero-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.ov-hero-badges {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.ov-hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(15,23,42,0.7);
  border: 1px solid rgba(148,163,184,0.4);
  font-size: 0.75rem;
  color: #e5e7eb;
}

/* Generic section */

.ov-section {
  padding: 4rem 1.25rem;
}

.ov-section-light {
  background: var(--light-bg);
}

.ov-section-dark {
  background: radial-gradient(circle at top, #1f2933, #050816 70%);
  color: #f9fafb;
}

.ov-section-header {
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.ov-section-header h2 {
  font-size: 1.9rem;
  margin: 0 0 0.3rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.ov-section-header p {
  margin: 0;
  color: var(--muted);
}

/* Events scroll */

.ov-events-scroll {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
}
.ov-events-scroll::-webkit-scrollbar {
  height: 6px;
}
.ov-events-scroll::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.6);
  border-radius: 999px;
}

.ov-event-card {
  scroll-snap-align: start;
  background: linear-gradient(145deg, #020617, #020617);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 20px 35px rgba(15,23,42,0.45);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.ov-event-image {
  position: relative;
  height: 160px;
  background-size: cover;
  background-position: center;
}

/* Replace these with real images later */
.ov-event-image-cl {
  background-image: url('../img/event-cl-final.png');
}
.ov-event-image-f1 {
  background-image: url('../img/event-f1-monaco.png');
}
.ov-event-image-tennis {
  background-image: url('../img/event-wimbledon.png');
}
.ov-event-image-concert {
  background-image: url('../img/event-concert.png');
}

.ov-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(15,23,42,0.9);
  color: #e5e7eb;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.ov-event-body {
  padding: 1.1rem 1rem 1rem;
  color: #f9fafb;
}
.ov-event-body h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
}
.ov-event-meta {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  color: #9ca3af;
}
.ov-event-body p {
  font-size: 0.9rem;
  color: #d1d5db;
}

/* Category filters */

.ov-category-filters {
  max-width: 1200px;
  margin: 0 auto 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.ov-filter-btn {
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: transparent;
  color: #e5e7eb;
  cursor: pointer;
  font-size: 0.85rem;
}
.ov-filter-btn.active,
.ov-filter-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #111827;
}

/* Category grid */

.ov-category-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}
.ov-category-card {
  background: radial-gradient(circle at top left, rgba(212,175,55,0.15), rgba(15,23,42,1));
  border-radius: 16px;
  padding: 1.1rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 14px 28px rgba(0,0,0,0.4);
  color: #f9fafb;
}
.ov-category-card i {
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
  color: var(--gold);
}
.ov-category-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}
.ov-category-card p {
  margin: 0;
  font-size: 0.85rem;
  color: #e5e7eb;
}

/* Split sections */

.ov-section-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}
.ov-section-split-reverse {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.ov-split-text {
  padding: 0 1rem;
}
.ov-split-text h2 {
  font-size: 1.8rem;
  margin-top: 0;
}
.ov-split-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
}
.ov-section-dark .ov-split-text p {
  color: #d1d5db;
}

.ov-split-image {
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-soft);
}

/* Replace these with real images */
.ov-split-image-hosp {
  background-image: url('../img/hospitality.png');
}
.ov-split-image-travel {
  background-image: url('../img/travel-luxury.png');
}

/* List / pills */

.ov-list {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0 1.4rem;
}
.ov-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
}
.ov-list i {
  margin-top: 0.2rem;
  color: var(--gold);
}

.ov-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0 1.4rem;
}
.ov-pill-grid span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(15,23,42,0.06);
  border: 1px solid rgba(148, 163, 184, 0.3);
}

/* About */

.ov-about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.ov-about-grid h3 {
  margin-top: 0;
}
.ov-about-grid p {
  font-size: 0.93rem;
  color: #4b5563;
}

/* Enquiry section */

.ov-enquiry-section {
  padding-bottom: 4.5rem;
}

.ov-enquiry-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: flex-start;
}

/* Form */

.ov-form {
  background: rgba(15,23,42,0.9);
  border-radius: 16px;
  padding: 1.6rem 1.5rem;
  border: 1px solid rgba(148,163,184,0.5);
  box-shadow: 0 16px 32px rgba(0,0,0,0.55);
}

.ov-form-row {
  margin-bottom: 1rem;
}
.ov-form-row label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
  color: #e5e7eb;
}
.ov-required {
  color: #f97316;
  margin-left: 0.1rem;
}
.ov-form-row input,
.ov-form-row textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(148,163,184,0.7);
  background: rgba(15,23,42,0.9);
  color: #f9fafb;
  font-size: 0.9rem;
}
.ov-form-row input::placeholder,
.ov-form-row textarea::placeholder {
  color: #9ca3af;
}
.ov-form-row textarea {
  resize: vertical;
}

.ov-form-row-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.ov-checkbox {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: #e5e7eb;
}
.ov-checkbox input[type="checkbox"] {
  accent-color: var(--gold);
}

.ov-honeypot {
  display: none;
}

.ov-form-note {
  font-size: 0.78rem;
  color: #9ca3af;
  margin-top: 0.6rem;
}

/* Enquiry sidebar */

.ov-enquiry-aside {
  padding: 0.5rem 0.2rem;
}
.ov-enquiry-aside h3 {
  margin-top: 0;
  font-size: 1.3rem;
}
.ov-enquiry-aside p {
  font-size: 0.9rem;
  color: #e5e7eb;
}

.ov-contact-list {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0 1.5rem;
}
.ov-contact-list li {
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}
.ov-contact-list i {
  margin-right: 0.5rem;
  color: var(--gold);
}
.ov-contact-list a {
  color: #e5e7eb;
  text-decoration: none;
}
.ov-contact-list a:hover {
  text-decoration: underline;
}

.ov-concierge-card {
  margin-top: 1rem;
  padding: 1rem 0.9rem;
  border-radius: 14px;
  border: 1px dashed rgba(148,163,184,0.6);
  background: radial-gradient(circle at top left, rgba(212,175,55,0.2), rgba(15,23,42,0.9));
}
.ov-concierge-card h4 {
  margin: 0 0 0.3rem;
}
.ov-concierge-card p {
  font-size: 0.88rem;
  color: #e5e7eb;
}

/* Footer */

.ov-footer {
  background: #020617;
  color: #e5e7eb;
  padding: 2.5rem 1.25rem;
}
.ov-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 1.75rem;
  font-size: 0.85rem;
}
.ov-footer-logo {
  height: 30px;
  margin-bottom: 0.5rem;
}

.ov-footer-col h4 {
  margin-top: 0;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
}

.ov-footer-col ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.ov-footer-col li {
  margin-bottom: 0.35rem;
}
.ov-footer-col a {
  color: #e5e7eb;
  text-decoration: none;
}
.ov-footer-col a:hover {
  color: var(--gold);
}

.ov-footer-social a {
  margin-right: 0.5rem;
  font-size: 1rem;
}

.ov-footer-copy {
  margin-top: 0.8rem;
  color: #6b7280;
}

/* Responsive */

@media (max-width: 992px) {
  .ov-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ov-section-split,
  .ov-section-split-reverse,
  .ov-enquiry-layout,
  .ov-about-grid,
  .ov-footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .ov-header-inner {
    padding: 0.5rem 0.9rem;
  }

  .ov-nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(13,27,42,0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 0.8rem 1rem 0.9rem;
    border-radius: 0 0 0 16px;
    border-left: 1px solid rgba(148,163,184,0.5);
    border-bottom: 1px solid rgba(148,163,184,0.5);
    min-width: 210px;
    display: none;
  }
  .ov-nav-links.show {
    display: flex;
  }
  .ov-nav-cta {
    margin-top: 0.35rem;
  }

  .ov-nav-toggle {
    display: flex;
  }

  .ov-section-split,
  .ov-section-split-reverse,
  .ov-enquiry-layout,
  .ov-about-grid,
  .ov-footer-inner {
    grid-template-columns: 1fr;
  }
  .ov-split-image {
    min-height: 220px;
  }

  .ov-events-scroll {
    grid-auto-columns: 80%;
  }

  .ov-category-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 540px) {
  .ov-category-grid {
    grid-template-columns: 1fr;
  }
}
