@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Lato:wght@300;400;700&family=Pacifico&display=swap');

:root {
  --azure: #1A7BB8;
  --azure-dark: #1A5A8A;
  --azure-light: #D0E9F7;
  --terracotta: #C4622D;
  --terracotta-light: #F2D5C4;
  --navy: #1A3350;
  --navy-dark: #0D1F33;
  --sand: #FAF3E2;
  --sand-dark: #F0E4C8;
  --gold: #E8C84A;
  --gold-dark: #C9A830;
  --white: #FFFDF8;
  --text: #1A3350;
  --text-muted: #5A6E7A;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(26,51,80,0.12);
  --shadow-lg: 0 8px 40px rgba(26,51,80,0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  background: var(--sand);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--azure);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(196,98,45,0.35);
}

.btn-primary:hover {
  background: #B05020;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(196,98,45,0.45);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26,51,80,0.25);
}

.btn-secondary:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(232,200,74,0.35);
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

/* === CARDS === */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-body {
  padding: 24px;
}

/* === PAGE HEADER === */
.page-header {
  background: var(--navy);
  padding: 60px 40px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(26,123,184,0.2) 0%, transparent 60%);
  pointer-events: none;
}

.page-header h1 {
  color: var(--sand);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-style: italic;
}

.page-header p {
  color: var(--azure-light);
  margin-top: 8px;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* === SECTION === */
.section {
  padding: 60px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-title::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--terracotta), transparent);
}

/* === BADGES === */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.badge-confirmed { background: #E3F5E9; color: #2E7D52; border: 1px solid #A8D5B8; }
.badge-pending { background: #FEF3E2; color: #B07020; border: 1px solid #F0D090; }
.badge-booked { background: var(--azure-light); color: var(--azure-dark); border: 1px solid #A0CCE8; }

/* === FORM === */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--sand-dark);
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.form-input:focus {
  border-color: var(--azure);
}

/* === DIVIDER === */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 40px 0;
  color: var(--gold);
  font-size: 16px;
}

.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sand-dark), transparent);
}

/* === WAVES DECORATION === */
.waves {
  position: relative;
  overflow: hidden;
}

.waves::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60'%3E%3Cpath d='M0 30 Q150 0 300 30 Q450 60 600 30 Q750 0 900 30 Q1050 60 1200 30 L1200 60 L0 60 Z' fill='%23FAF3E2'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
}

/* === LOADING === */
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--sand-dark);
  border-top-color: var(--azure);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-up {
  animation: fadeUp 0.6s ease forwards;
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .section { padding: 40px 20px; }
  .page-header { padding: 40px 20px 30px; }
  .btn { padding: 12px 24px; font-size: 13px; }
}
