/* CoachForExecs main stylesheet */
:root {
  --primary-color: #0066cc;
  --secondary-color: #333333;
  --accent-color: #ff9900;
  --text-color: #333333;
  --background-color: #ffffff;
  --container-width: 1280px;
  --spacing-unit: 1rem;
  --header-height: 80px;
}

/* Global Styles */
body {
  font-family: "Instrument Sans", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-unit);
}

/* Typography */
h1, .h1-heading {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.subheading {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 2rem;
}

.paragraph-lg {
  font-size: 1.125rem;
  line-height: 1.7;
}

/* Navigation */
.nav {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: var(--background-color);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem var(--spacing-unit);
}

.nav-menu-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu-list-item {
  margin: 0 1rem;
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color);
}

/* Navigation Styles */
.nav-logo {
  text-decoration: none;
}

.nav-logo .paragraph-lg {
  color: var(--text-color);
}

.inverse-nav .nav-logo .paragraph-lg {
  color: var(--background-color);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.inverse-section {
  background-color: var(--secondary-color);
  color: var(--background-color);
}

/* Grid Layout */
.grid-layout {
  display: grid;
  gap: 2rem;
}

.desktop-3-column {
  grid-template-columns: repeat(3, 1fr);
}

/* Buttons */
.button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  font-weight: 500;
}

.button:hover {
  background-color: #0052a3;
}

.secondary-button {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.secondary-button:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Pricing Cards */
.pricing-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.featured {
  border: 2px solid var(--primary-color);
}

.pricing-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1rem 0;
}

.pricing-features-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.pricing-features-list li {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.pricing-features-list li::before {
  content: "•";
  color: var(--text-color);
  margin-right: 0.75rem;
}

/* Responsive Design */
@media (max-width: 991px) {
  .desktop-3-column {
    grid-template-columns: repeat(2, 1fr);
  }
  
  h1, .h1-heading {
    font-size: 3rem;
  }
}

@media (max-width: 767px) {
  .desktop-3-column {
    grid-template-columns: 1fr;
  }
  
  .nav-menu-list {
    display: none;
  }
  
  h1, .h1-heading {
    font-size: 2.5rem;
  }
  
  .section {
    padding: 3rem 0;
  }
}

/* Header Image Styles */
.header-image-container {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}

.header-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.header-image:hover {
  transform: scale(1.05);
}

/* About Image Styles */
.about-image-container {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.about-image:hover {
  transform: scale(1.05);
}

/* Responsive Image Adjustments */
@media screen and (max-width: 767px) {
  .header-image-container {
    height: 300px;
  }
  
  .about-image-container {
    height: 250px;
  }
}

/* Team Section Styles */
.team-section-header {
  max-width: 800px;
  margin: 0 auto 4rem auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-member {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member-info {
  text-align: center;
}

.team-member-title {
  color: var(--primary-color);
  font-weight: 500;
  margin: 0.5rem 0;
}

.team-member-bio {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 1rem 0 0 0;
}

/* Contact Form Styles */
.contact-section-header {
  max-width: 800px;
  margin: 0 auto 4rem auto;
}

.contact-form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.form-field-wrapper {
  margin: 0;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-color);
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background-color: #fff;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

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

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0;
}

.checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  cursor: pointer;
}

.checkbox-label {
  font-size: 0.875rem;
  color: var(--text-color);
  line-height: 1.5;
}

.checkbox-label a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

.contact-form .button {
  width: 100%;
  margin-top: 1rem;
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-container {
    padding: 1.5rem;
  }
}

/* Privacy and Terms Pages */
.privacy-content,
.terms-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.privacy-section,
.terms-section {
  margin-bottom: 3rem;
}

.privacy-content h1,
.terms-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.last-updated {
  color: #666;
  font-style: italic;
  margin-bottom: 2rem;
}

.privacy-content h2,
.terms-content h2 {
  font-size: 1.75rem;
  margin: 2rem 0 1rem;
  color: var(--secondary-color);
}

.privacy-content h3,
.terms-content h3 {
  font-size: 1.25rem;
  margin: 1.5rem 0 1rem;
  color: var(--secondary-color);
}

.privacy-content p,
.terms-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.privacy-content ul,
.terms-content ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.privacy-content li,
.terms-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.contact-info {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

/* Responsive Adjustments */
@media screen and (max-width: 767px) {
  .privacy-content,
  .terms-content {
    padding: 1rem;
  }

  .privacy-content h1,
  .terms-content h1 {
    font-size: 2rem;
  }

  .privacy-content h2,
  .terms-content h2 {
    font-size: 1.5rem;
  }

  .privacy-content h3,
  .terms-content h3 {
    font-size: 1.125rem;
  }
}

/* Footer Social Media */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.social-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

@media screen and (max-width: 767px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Business Page Styles */
.business-content {
  padding-top: var(--header-height);
  min-height: 100vh;
}

.business-header {
  margin-bottom: 3rem;
}

.business-section {
  margin-bottom: 4rem;
} 