/*
Theme Name: CanWe.fit Sky - White & Blue Edition
Theme URI: https://canwe.fit
Description: Liberating white and sky blue WordPress theme for fitness transformation with expert mentorship
Version: 3.0.0-FRESH
Author: CanWe.fit
Author URI: https://canwe.fit
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: canwefit-sky-theme
Domain Path: /languages
Requires at least: 5.0
Requires PHP: 7.4
*/

/* CANWEFIT SKY THEME - APPLE-LIKE AESTHETIC */
/* White, Sky Blue, Bold Black - Premium Minimalist */

:root {
  --cwf-sky-primary: #0099ff;
  --cwf-sky-secondary: #00d4ff;
  --cwf-sky-light: #87ceeb;
  --cwf-white: #ffffff;
  --cwf-black: #000000;
  --cwf-light-gray: #f5f5f7;
  --cwf-medium-gray: #e5e5e7;
  --cwf-dark-gray: #a1a1a6;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  color: #000000;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { 
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 { 
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h3 { 
  font-size: 1.75rem;
  font-weight: 700;
}

h4 { 
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  color: #555555;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 400;
}

a {
  color: #0099ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #0077cc;
}

.cwf-sky-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.cwf-sky-section {
  padding: 80px 0;
  width: 100%;
}

main {
  flex: 1;
}

/* NAVBAR */
.cwf-sky-navbar {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e7;
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  background-color: rgba(255, 255, 255, 0.95);
}

.cwf-sky-navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.cwf-sky-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: #000000;
  letter-spacing: -0.02em;
}

.cwf-sky-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.cwf-sky-menu a {
  font-weight: 500;
  font-size: 0.95rem;
  color: #555555;
  transition: color 0.3s ease;
}

.cwf-sky-menu a:hover {
  color: #0099ff;
}

/* BUTTONS */
.cwf-sky-btn {
  display: inline-block;
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.cwf-sky-btn-primary {
  background-color: #0099ff;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 153, 255, 0.2);
}

.cwf-sky-btn-primary:hover {
  background-color: #0077cc;
  box-shadow: 0 4px 12px rgba(0, 153, 255, 0.3);
  transform: translateY(-1px);
}

.cwf-sky-btn-secondary {
  background-color: transparent;
  border: 1.5px solid #0099ff;
  color: #0099ff;
}

.cwf-sky-btn-secondary:hover {
  background-color: #0099ff;
  color: #ffffff;
}

/* PILLAR CARDS */
.cwf-sky-pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.cwf-sky-pillar-card {
  background-color: #ffffff;
  border: 1px solid #e5e5e7;
  border-radius: 12px;
  padding: 50px 35px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cwf-sky-pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  border-color: #0099ff;
}

.cwf-sky-pillar-icon {
  font-size: 3.5rem;
  margin-bottom: 25px;
}

.cwf-sky-pillar-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: none;
  letter-spacing: -0.02em;
  color: #000000;
}

.cwf-sky-pillar-subtitle {
  font-size: 0.9rem;
  color: #0099ff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 18px;
}

.cwf-sky-pillar-description {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.7;
  background-color: #f5f5f7;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* CARDS */
.cwf-sky-card {
  background-color: #ffffff;
  border: 1px solid #e5e5e7;
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.cwf-sky-card:hover {
  border-color: #0099ff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.cwf-sky-card-title {
  font-size: 1.4rem;
  color: #000000;
  margin-bottom: 15px;
  font-weight: 700;
}

/* FORMS */
.cwf-sky-form-group {
  margin-bottom: 25px;
}

.cwf-sky-form-label {
  display: block;
  font-weight: 600;
  color: #000000;
  margin-bottom: 10px;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.cwf-sky-form-input,
.cwf-sky-form-select,
.cwf-sky-form-textarea {
  width: 100%;
  padding: 12px 15px;
  background-color: #f5f5f7;
  border: 1px solid #e5e5e7;
  border-radius: 8px;
  color: #000000;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
  font-weight: 400;
}

.cwf-sky-form-input:focus,
.cwf-sky-form-select:focus,
.cwf-sky-form-textarea:focus {
  outline: none;
  border-color: #0099ff;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 153, 255, 0.1);
}

.cwf-sky-form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* FOOTER */
.cwf-sky-footer {
  background-color: #f5f5f7;
  border-top: 1px solid #e5e5e7;
  padding: 50px 0;
  margin-top: 80px;
  text-align: center;
}

.cwf-sky-footer p {
  color: #555555;
  margin-bottom: 8px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .cwf-sky-container {
    padding: 0 30px;
  }

  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }

  .cwf-sky-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .cwf-sky-container {
    padding: 0 20px;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }

  .cwf-sky-navbar-content {
    padding: 0 20px;
  }

  .cwf-sky-menu {
    gap: 1.5rem;
    font-size: 0.9rem;
  }

  .cwf-sky-pillar-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cwf-sky-pillar-card {
    min-height: 300px;
    padding: 35px 25px;
  }

  .cwf-sky-section {
    padding: 40px 0;
  }

  .cwf-sky-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .cwf-sky-container {
    padding: 0 16px;
  }

  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1rem; }

  .cwf-sky-navbar-content {
    flex-direction: column;
    gap: 0.8rem;
    padding: 0 16px;
  }

  .cwf-sky-menu {
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
  }

  .cwf-sky-menu a {
    font-size: 0.85rem;
  }

  .cwf-sky-btn {
    width: 100%;
    padding: 12px 20px;
  }

  .cwf-sky-pillar-card {
    padding: 25px 20px;
    min-height: 250px;
  }

  .cwf-sky-pillar-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }

  .cwf-sky-pillar-title {
    font-size: 1.3rem;
  }

  .cwf-sky-section {
    padding: 30px 0;
  }
}
