/* Westcoast Hot Yoga - Custom Styles */
/* Using Tailwind CSS via CDN with custom color palette inspired by original teal/spa aesthetic */

:root {
  /* Primary - Teal/Cyan (spa-inspired from original) */
  --primary-50: #e6f7f9;
  --primary-100: #cceff3;
  --primary-200: #99dfe7;
  --primary-300: #66cfdb;
  --primary-400: #33bfcf;
  --primary-500: #008B99;
  --primary-600: #007a87;
  --primary-700: #005f69;
  --primary-800: #00454d;
  --primary-900: #002a2f;

  /* Secondary - Warm Sand */
  --secondary-50: #fdfcfb;
  --secondary-100: #faf7f4;
  --secondary-200: #f5efe8;
  --secondary-300: #e8ddd0;
  --secondary-400: #d4c4b0;
  --secondary-500: #b39f85;
  --secondary-600: #8f7d66;
  --secondary-700: #6b5d4d;
  --secondary-800: #473e33;
  --secondary-900: #241f1a;

  /* Accent - Warm Coral */
  --accent-500: #e07c5f;
  --accent-600: #c9664a;

  /* Neutrals */
  --gray-50: #fafafa;
  --gray-100: #f4f4f5;
  --gray-200: #e4e4e7;
  --gray-300: #d4d4d8;
  --gray-400: #a1a1aa;
  --gray-500: #71717a;
  --gray-600: #52525b;
  --gray-700: #3f3f46;
  --gray-800: #27272a;
  --gray-900: #18181b;

  /* Text */
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-light: #717171;
}

/* Base Typography */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lora', Georgia, serif;
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 17px;
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', 'Segoe UI', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--gray-800);
}

/* Custom Tailwind Overrides */
.bg-primary {
  background-color: var(--primary-500) !important;
}

.bg-primary-dark {
  background-color: var(--primary-700) !important;
}

.bg-secondary {
  background-color: var(--secondary-100) !important;
}

.text-primary-color {
  color: var(--primary-500) !important;
}

.border-primary {
  border-color: var(--primary-500) !important;
}

/* Hero Sections */
.hero-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,139,153,0.85) 0%, rgba(0,95,105,0.9) 100%);
  z-index: 1;
}

.hero-section img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Navigation */
.navbar {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background-color: white !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-link {
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-500);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

/* Buttons */
.btn-primary-custom {
  background-color: var(--primary-500);
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn-primary-custom:hover {
  background-color: var(--primary-600);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,139,153,0.3);
  color: white;
}

.btn-outline-custom {
  background-color: transparent;
  color: var(--primary-500);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  border: 2px solid var(--primary-500);
}

.btn-outline-custom:hover {
  background-color: var(--primary-500);
  color: white;
}

.btn-white {
  background-color: white;
  color: var(--primary-600);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-white:hover {
  background-color: var(--secondary-100);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Cards */
.card-custom {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.card-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* Section Styling */
.section-padding {
  padding: 80px 0;
}

.section-header {
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Content Styling */
.content-section h2 {
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-700);
}

.content-section h3 {
  font-size: 1.4rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--gray-700);
}

.content-section p {
  margin-bottom: 1.25rem;
  color: var(--text-secondary);
}

.content-section ul, .content-section ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.content-section li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.content-section a {
  color: var(--primary-500);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.content-section a:hover {
  color: var(--primary-700);
}

/* Blockquotes (for testimonials) */
blockquote {
  background: var(--secondary-50);
  border-left: 4px solid var(--primary-500);
  padding: 25px 30px;
  margin: 30px 0;
  border-radius: 0 12px 12px 0;
}

blockquote p {
  font-style: italic;
  margin-bottom: 10px;
}

blockquote em {
  font-style: normal;
  color: var(--primary-600);
  font-weight: 500;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
}

footer a {
  color: var(--gray-400);
  transition: color 0.2s ease;
  text-decoration: none;
}

footer a:hover {
  color: var(--primary-400);
}

/* Utility Classes */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.divider {
  height: 4px;
  width: 60px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-300));
  border-radius: 2px;
}

.img-rounded {
  border-radius: 16px;
}

/* Feature Grid */
.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-200) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon i {
  font-size: 24px;
  color: var(--primary-600);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    min-height: 400px;
  }

  .section-padding {
    padding: 50px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  h1 {
    font-size: 2.2rem;
  }
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Image Styling */
.content-image {
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  margin: 20px 0;
}

/* List Styling */
.styled-list {
  list-style: none;
  padding-left: 0;
}

.styled-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.styled-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--primary-500);
  border-radius: 50%;
}
