/*
Theme Name: Coravida Experiences
Theme URI: https://coravida.com
Description: Wellness Experiences Marketplace - Powered by Cora Tokens
Author: Full Potential AI
Version: 1.0.0
License: Proprietary
Text Domain: coravida

Experience Life. Circulate Consciously.
*/

:root {
  /* Primary Colors */
  --ocean-blue: #0077B6;
  --jungle-green: #2D6A4F;
  --sunset-gold: #F4A261;
  
  /* Secondary Colors */
  --deep-ocean: #023E8A;
  --light-sage: #95D5B2;
  --warm-sand: #E9C46A;
  --coral: #E76F51;
  
  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --light-gray: #E9ECEF;
  --medium-gray: #6C757D;
  --dark-gray: #343A40;
  --near-black: #1A1A2E;
  
  /* Typography */
  --font-heading: 'DM Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Playfair Display', serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--dark-gray);
  line-height: 1.6;
  background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--near-black);
  line-height: 1.3;
}

a {
  color: var(--ocean-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--deep-ocean);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn-primary {
  background: var(--ocean-blue);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--deep-ocean);
  color: var(--white);
}

.btn-cora {
  background: linear-gradient(135deg, var(--sunset-gold), var(--coral));
  color: var(--white);
}

.btn-cora:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 162, 97, 0.4);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--ocean-blue);
  color: var(--ocean-blue);
}

.btn-secondary:hover {
  background: var(--ocean-blue);
  color: var(--white);
}

/* Cora Badge */
.cora-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--sunset-gold), var(--warm-sand));
  color: var(--near-black);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--light-gray);
  padding: 16px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--ocean-blue);
}

.logo span {
  color: var(--jungle-green);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-menu a {
  color: var(--dark-gray);
  font-weight: 500;
}

.nav-menu a:hover {
  color: var(--ocean-blue);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--deep-ocean) 0%, var(--ocean-blue) 50%, var(--jungle-green) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
  background-size: 100px 100px;
  animation: float 20s linear infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-100px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 900px;
  padding: 0 24px;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero .tagline {
  font-size: clamp(18px, 2.5vw, 24px);
  opacity: 0.9;
  margin-bottom: 40px;
}

.hero .cora-promo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 50px;
  margin-bottom: 40px;
}

.hero .cora-promo .icon {
  font-size: 24px;
}

.search-box {
  display: flex;
  background: var(--white);
  border-radius: 12px;
  padding: 8px;
  gap: 8px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.search-box input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  font-size: 16px;
  background: transparent;
  color: var(--dark-gray);
}

.search-box input::placeholder {
  color: var(--medium-gray);
}

.search-box .btn {
  padding: 16px 32px;
}

/* Categories Section */
.categories {
  padding: 80px 0;
  background: var(--off-white);
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.section-title p {
  color: var(--medium-gray);
  font-size: 18px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.category-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 119, 182, 0.15);
  border-color: var(--ocean-blue);
}

.category-card .icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.category-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.category-card p {
  color: var(--medium-gray);
  font-size: 14px;
}

/* Experience Cards */
.experiences {
  padding: 80px 0;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.experience-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.experience-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.experience-card .image {
  position: relative;
  height: 220px;
  background: linear-gradient(135deg, var(--ocean-blue), var(--jungle-green));
  overflow: hidden;
}

.experience-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-card .save-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.experience-card .save-btn:hover {
  background: var(--white);
  transform: scale(1.1);
}

.experience-card .rating {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.experience-card .content {
  padding: 24px;
}

.experience-card .category-tag {
  display: inline-block;
  background: var(--light-sage);
  color: var(--jungle-green);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.experience-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.experience-card .location {
  color: var(--medium-gray);
  font-size: 14px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.experience-card .price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.experience-card .price {
  font-size: 20px;
  font-weight: 700;
  color: var(--near-black);
}

.experience-card .price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--medium-gray);
}

/* Cora Section */
.cora-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--sunset-gold) 0%, var(--coral) 100%);
  color: var(--white);
}

.cora-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cora-content h2 {
  font-size: 42px;
  color: var(--white);
  margin-bottom: 24px;
}

.cora-content p {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 24px;
}

.cora-benefits {
  list-style: none;
}

.cora-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  margin-bottom: 16px;
}

.cora-benefits li::before {
  content: '✓';
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.cora-visual {
  text-align: center;
}

.cora-token-icon {
  font-size: 120px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Partner Section */
.partner-section {
  padding: 80px 0;
  background: var(--near-black);
  color: var(--white);
}

.partner-content {
  text-align: center;
}

.partner-content h2 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 16px;
}

.partner-content .subtitle {
  color: var(--sunset-gold);
  font-size: 20px;
  margin-bottom: 40px;
}

.partner-features {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 40px;
}

.partner-feature {
  text-align: center;
}

.partner-feature .number {
  font-size: 48px;
  font-weight: 700;
  color: var(--sunset-gold);
}

.partner-feature .label {
  color: var(--light-gray);
}

/* Footer */
.site-footer {
  background: var(--near-black);
  color: var(--light-gray);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
}

.footer-col h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: var(--light-gray);
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--sunset-gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.footer-bottom a {
  color: var(--sunset-gold);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .search-box {
    flex-direction: column;
  }
  
  .cora-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .partner-features {
    flex-direction: column;
    gap: 24px;
  }
}
