/*
Theme Name: Waikiki Fireworks Cruise
Theme URI: https://waikikifireworkscruise.com
Author: Makana Adventures
Author URI: https://waikikifireworkscruise.com
Description: A premium dark-ocean theme for Waikiki Friday Night Fireworks Cruises. Features animated fireworks counter, tour booking pages, and full SEO optimization.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: waikiki-fireworks
Tags: dark, ocean, travel, tours, fireworks, custom-menu, featured-images, full-width-template
*/

/* =========================================================
   CSS CUSTOM PROPERTIES
   ========================================================= */
:root {
  --clr-bg:        #040d18;
  --clr-bg2:       #071428;
  --clr-bg3:       #0d1f35;
  --clr-card:      #0f2040;
  --clr-gold:      #f5c518;
  --clr-orange:    #ff8c00;
  --clr-coral:     #ff5e57;
  --clr-teal:      #00c9b7;
  --clr-text:      #ffffff;
  --clr-text2:     #8db4cc;
  --clr-border:    #1c3a54;
  --clr-overlay:   rgba(4, 13, 24, 0.72);

  --font-heading:  'Playfair Display', Georgia, serif;
  --font-body:     'Inter', system-ui, sans-serif;

  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     24px;

  --shadow-card:   0 4px 32px rgba(0,0,0,0.45);
  --shadow-glow:   0 0 30px rgba(245,197,24,0.25);

  --transition:    0.3s ease;
  --max-width:     1350px;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--clr-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-orange); }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--clr-text);
}

p { margin-bottom: 1rem; color: var(--clr-text2); }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.5rem; }
li { color: var(--clr-text2); margin-bottom: 0.4rem; }

blockquote {
  border-left: 4px solid var(--clr-gold);
  padding: 1rem 1.5rem;
  background: var(--clr-bg3);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--clr-text);
}

hr { border: none; border-top: 1px solid var(--clr-border); margin: 2rem 0; }

/* =========================================================
   LAYOUT UTILITIES
   ========================================================= */
.container { max-width: 1350px !important; margin: 0 auto; padding: 0 1.5rem; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }

.section { padding: 6rem 0; }
.section--sm { padding: 3rem 0; }
.section--lg { padding: 9rem 0; }

.text-center { text-align: center; }
.text-gold { color: var(--clr-gold); }
.text-teal { color: var(--clr-teal); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn--primary {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-orange));
  color: #040d18;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245,197,24,0.4);
  color: #040d18;
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--clr-gold);
  color: var(--clr-gold);
}
.btn--outline:hover {
  background: var(--clr-gold);
  color: #040d18;
}

.btn--ghost {
  background: rgba(255,255,255,0.1);
  color: var(--clr-text);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.2);
  color: var(--clr-text);
}

.btn--sm { padding: 0.55rem 1.25rem; font-size: 0.85rem; }
.btn--lg { padding: 1.1rem 2.75rem; font-size: 1.05rem; }

/* =========================================================
   BADGES / TAGS
   ========================================================= */
.badge {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge--gold { background: rgba(245,197,24,0.15); color: var(--clr-gold); border: 1px solid rgba(245,197,24,0.3); }
.badge--teal { background: rgba(0,201,183,0.15); color: var(--clr-teal); border: 1px solid rgba(0,201,183,0.3); }
.badge--coral { background: rgba(255,94,87,0.15); color: var(--clr-coral); border: 1px solid rgba(255,94,87,0.3); }

/* =========================================================
   SECTION HEADERS
   ========================================================= */
.section-header { margin-bottom: 3.5rem; }
.section-header .eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 0.75rem;
  display: block;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.section-header p {
  font-size: 1.05rem;
  max-width: 600px;
}
.section-header.text-center p { margin: 0 auto; }

/* =========================================================
   CARDS
   ========================================================= */
.card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.card__image { aspect-ratio: 16/10; overflow: hidden; }
.card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card__image img { transform: scale(1.05); }
.card__body { padding: 1.5rem; }
.card__title { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--clr-text); }
.card__text { font-size: 0.92rem; color: var(--clr-text2); margin-bottom: 1rem; }
.card__meta { display: flex; align-items: center; gap: 1rem; font-size: 0.82rem; color: var(--clr-text2); flex-wrap: wrap; }
.card__price { font-size: 1.35rem; font-weight: 700; color: var(--clr-gold); font-family: var(--font-heading); }
.card__price span { font-size: 0.8rem; font-weight: 400; color: var(--clr-text2); font-family: var(--font-body); }

/* Stars */
.stars { color: var(--clr-gold); font-size: 0.85rem; letter-spacing: 0.05em; }

/* =========================================================
   GRID LAYOUTS
   ========================================================= */
.grid { display: grid; gap: 2rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
}

/* =========================================================
   DIVIDER / SEPARATOR
   ========================================================= */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.wave-divider svg { display: block; }

/* =========================================================
   SCROLLBAR
   ========================================================= */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb { background: var(--clr-border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--clr-gold); }

/* =========================================================
   SELECTION
   ========================================================= */
::selection { background: rgba(245,197,24,0.3); color: var(--clr-text); }
