/*
Theme Name: Freedom Coaching
Theme URI: https://yourwebsite.com
Author: Your Name
Author URI: https://yourwebsite.com
Description: Custom theme for Freedom Coaching by Angelina Grissom
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: freedom-coaching
Tags: luxury, coaching, black, gold, responsive
*/

/* Base Styles */
:root {
  --black: #000000;
  --dark-gray: #121212;
  --medium-gray: #333333;
  --light-gray: #777777;
  --white: #ffffff;
  --amber: #ffc107;
  --amber-dark: #ff8f00;
  --amber-light: #ffd54f;
}

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

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: var(--white);
  background-color: var(--black);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

p {
  margin-bottom: 1rem;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 1.5rem 2.5rem;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--amber);
  color: var(--black);
  border-color: var(--amber);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--amber);
}

.btn-outline {
  background-color: transparent;
  color: var(--amber);
  border-color: var(--amber);
}

.btn-outline:hover {
  background-color: var(--amber);
  color: var(--black);
}

/* Section Styles */
section {
  padding: 8rem 0;
}

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

.divider {
  width: 4rem;
  height: 2px;
  background-color: var(--amber);
  margin: 0 auto 2rem;
}

.subtitle {
  color: var(--amber);
  font-size: 1.25rem;
  margin-top: 1rem;
}

.description {
  color: var(--light-gray);
  max-width: 800px;
  margin: 1.5rem auto;
}

/* Header/Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  background-color: rgba(0, 0, 0, 0.8);
  transition: all 0.3s ease;
}

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

.logo img {
  height: 50px;
}

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

.nav-menu li {
  margin-left: 2rem;
}

.nav-menu a {
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

/* Mobile Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--black);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    transition: right 0.3s ease;
    z-index: 999;
  }

  .nav-menu.active {
    right: 0;
  }

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

  .close-menu {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
  }
}

/* Hero Section */
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 10;
 /* max-width: 800px;*/
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero-content h1 span {
  color: var(--amber);
  font-weight: 400;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* Coach Section */
.coach-section {
  background-color: var(--dark-gray);
}

.coach-profile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.coach-image {
  position: relative;
  border: 2px solid var(--amber);
  height: 600px;
}

.coach-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.coach-content h3 {
  color: var(--amber);
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

.coach-content p {
  color: var(--light-gray);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.coach-signature {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--medium-gray);
}

.coach-signature p {
  color: var(--amber);
  font-size: 1.5rem;
  font-style: italic;
  letter-spacing: 0.1em;
}

/* Experience Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.benefit-item {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--amber);
}

.benefit-icon {
  color: var(--amber);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.benefit-item h3 {
  color: var(--amber);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.benefit-item p {
  color: var(--light-gray);
}

/* Lifestyle Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.gallery-item {
  position: relative;
  height: 500px;
  overflow: hidden;
  border: 1px solid var(--medium-gray);
  transition: border-color 0.5s ease;
}

.gallery-item:hover {
  border-color: var(--amber);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  color: var(--amber);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.gallery-overlay p {
  color: rgba(255, 255, 255, 0.8);
}

/* Membership Tiers */
.membership-section {
  background-color: var(--dark-gray);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background-color: var(--black);
  border: 1px solid var(--medium-gray);
  transition: border-color 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--amber);
}

.pricing-card.featured {
  border: 2px solid var(--amber);
  transform: scale(1.05);
  z-index: 10;
}

.card-header {
  padding: 2rem;
  border-bottom: 1px solid var(--medium-gray);
  text-align: center;
}

.card-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.price {
  color: var(--amber);
  font-size: 1.75rem;
  font-weight: 300;
}

.card-content {
  padding: 2rem;
}

.features-list {
  list-style: none;
}

.features-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--light-gray);
}

.features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--amber);
}

.card-footer {
  padding: 1.5rem 2rem 2rem;
}

.card-footer .btn {
  width: 100%;
}

/* Grissom Legacy Section */
.legacy-container {
  border: 1px solid rgba(255, 193, 7, 0.3);
  padding: 3rem;
}

.legacy-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.legacy-content img {
  max-width: 700px;
  margin-bottom: 3rem;
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: var(--black);
  border: 1px solid var(--medium-gray);
  padding: 2.5rem;
  transition: border-color 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--amber);
}

.quote-icon {
  color: var(--amber);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.quote {
  color: var(--light-gray);
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--medium-gray);
}

.author-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border: 2px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dark-gray);
  color: var(--amber);
  margin-right: 1rem;
}

.author-avatar-img img {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: cover;
  border: 2px solid var(--amber);
  margin-right: 1rem;
}

.author-name {
  color: var(--white);
  margin-bottom: 0.25rem;
}

.author-role {
  color: var(--amber);
  font-size: 0.875rem;
}

/* Blueprint Section */
.blueprint-section {
  background-color: var(--dark-gray);
}

.blueprint-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--amber);
  overflow: hidden;
}

.blueprint-content {
  background-color: var(--black);
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blueprint-content h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.blueprint-content .subtitle {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.blueprint-content .description {
  color: var(--light-gray);
  margin: 0 0 1rem;
}

.blueprint-content .price {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.blueprint-image {
  background-color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.blueprint-image img {
  max-height: 100%;
  object-fit: contain;
}

/* CTA Section */
.cta-section h2 {
  max-width: 900px;
  margin: 0 auto 2rem;
  font-size: 2rem;
}

.cta-section h2 span {
  color: var(--amber);
}

.cta-section p {
  color: var(--light-gray);
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* Footer */
.site-footer {
  background-color: var(--dark-gray);
  padding: 5rem 0 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.footer-logo img {
  height: 40px;
}

.footer-menu {
  display: flex;
  list-style: none;
}

.footer-menu li {
  margin-right: 2rem;
}

.footer-menu a {
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: var(--amber);
}

.footer-social a {
  color: var(--white);
  font-size: 1.25rem;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--amber);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--medium-gray);
}

.footer-bottom p {
  color: var(--light-gray);
  font-size: 0.875rem;
}

/* WordPress Specific Styles */
.wp-block-image img {
  max-width: 100%;
  height: auto;
}

.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 0.875rem;
  color: var(--light-gray);
  text-align: center;
  margin-top: 0.5rem;
}

/* Page Styles */
.page-header {
  text-align: center;
  margin-bottom: 3rem;
}

.page-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.entry-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Blog Styles */
.post {
  margin-bottom: 4rem;
}

.entry-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.entry-title a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.entry-title a:hover {
  color: var(--amber);
}

.entry-meta {
  color: var(--light-gray);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.entry-meta a {
  color: var(--amber);
  text-decoration: none;
}

.entry-meta a:hover {
  text-decoration: underline;
}

.entry-footer {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--medium-gray);
  font-size: 0.875rem;
  color: var(--light-gray);
}

/* Comments */
.comments-area {
  margin-top: 4rem;
}

.comment-list {
  list-style: none;
}

.comment {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--medium-gray);
}

.comment-author {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.comment-author .avatar {
  margin-right: 1rem;
  border-radius: 50%;
}

.comment-metadata {
  font-size: 0.875rem;
  color: var(--light-gray);
  margin-bottom: 1rem;
}

.comment-content p {
  margin-bottom: 1rem;
}

.comment-reply-link {
  color: var(--amber);
  text-decoration: none;
  font-size: 0.875rem;
}

.comment-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--light-gray);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1.5rem;
  background-color: var(--dark-gray);
  border: 1px solid var(--medium-gray);
  color: var(--white);
}

.comment-form input[type="submit"] {
  background-color: var(--amber);
  color: var(--black);
  border: none;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.comment-form input[type="submit"]:hover {
  background-color: var(--amber-dark);
}

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

  .pricing-card.featured {
    grid-column: span 2;
    margin-bottom: 2rem;
  }

  .blueprint-container {
    grid-template-columns: 1fr;
  }

  .blueprint-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 5rem 0;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .coach-profile,
  .benefits-grid,
  .gallery-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    grid-column: auto;
    transform: none;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo,
  .footer-links,
  .footer-social {
    margin-bottom: 2rem;
  }

  .footer-menu {
    justify-content: center;
  }

  .footer-social a {
    margin: 0 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .btn {
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
  }
}
