/* 
  Yoga Luma Yoga - Custom Stylesheet 
  Colors: Forest Green, Sage Green, Warm White, Beige, Charcoal
*/
:root {
  --brand-primary: #FF6A00;
  --brand-secondary: #FF8C00;
  --warm-white: #111111;
  --beige: #1A1A1A;
  --charcoal: #000000;
  --text-color: #F0F0F0;
  --light-gray: #222222;
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-color);
  background-color: var(--warm-white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--text-color);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* Typography */
.text-center { text-align: center; }
.section-title { font-size: 2.5rem; margin-bottom: 1rem; }
.section-subtitle { font-size: 1.1rem; color: var(--brand-primary); margin-bottom: 3rem; }

/* Layout */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.bg-light { background-color: var(--light-gray); }
.bg-dark { background-color: var(--charcoal); color: white; }
.bg-dark h2, .bg-dark h3 { color: white; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

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

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

.btn-outline {
  background-color: transparent;
  color: white;
  border-color: white;
}

.btn-outline:hover {
  background-color: var(--light-gray);
  color: var(--brand-primary);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
}

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

.nav-links a {
  font-weight: 500;
  color: var(--text-color);
  font-size: 0.95rem;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--brand-primary);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin: 5px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  height: 100vh;
  background-image: linear-gradient(rgba(255, 106, 0, 0.7), rgba(255, 106, 0, 0.7)), url('https://images.unsplash.com/photo-1508700115892-45ecd05ae2ad?q=80&w=2000&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding-top: 80px;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--warm-white);
}

.hero-btns .btn {
  margin: 0 10px;
}

/* About/Philosophy */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(255, 106, 0,0.12);
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.5rem;
}

.features-list {
  list-style: none;
  margin-top: 2rem;
}

.features-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.features-list li::before {
  content: '✓';
  color: var(--brand-primary);
  font-weight: bold;
  margin-right: 10px;
}

/* Cards / Services */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.card {
  background: var(--light-gray);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(255, 106, 0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(255, 106, 0,0.15);
}

.card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.card-content {
  padding: 2rem;
}

.card-content h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.card-content p {
  margin-bottom: 1.5rem;
  color: var(--text-color);
  font-size: 0.95rem;
}

/* Health & Diet Layout */
.article-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--brand-primary);
}

.article-content p, .article-content ul {
  margin-bottom: 1.5rem;
}

.article-content ul {
  padding-left: 2rem;
}

.disclaimer {
  background-color: var(--beige);
  padding: 1.5rem;
  border-radius: 16px;
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 3rem;
}

/* Contact Page */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info-block {
  margin-bottom: 2rem;
}

.contact-info-block h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.contact-form {
  background: var(--light-gray);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(255, 106, 0,0.08);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 30px;
  font-family: inherit;
  background-color: var(--warm-white);
  color: var(--text-color);
  border: 1px solid var(--brand-primary);
}

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

/* Footer */
footer {
  background-color: var(--charcoal);
  color: var(--text-color);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #777;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--brand-secondary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: #777;
}

/* Legal Pages */
.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.legal-content p, .legal-content ul {
  margin-bottom: 1rem;
}
.legal-content ul {
  padding-left: 2rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero h1 { font-size: 2.8rem; }
  .two-column, .contact-container { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background-color: var(--light-gray);
    width: 100%;
    text-align: center;
    padding: 2rem 0;
    box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
  }
  
  .nav-links.active { left: 0; }
  .nav-links li { margin: 1.5rem 0; }
  .mobile-menu-btn { display: block; }
  .mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
  .mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
  
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1rem; }
  .hero-btns { display: flex; flex-direction: column; gap: 1rem; }
  .hero-btns .btn { margin: 0; }
}


/* Bento Grid layout for Health & Diet */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.bento-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(255, 106, 0,0.08);
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bento-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(255, 106, 0,0.15);
}
.bento-item.large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 500px;
}
.bento-item.medium {
  grid-column: span 2;
}
.bento-img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: transform 0.5s ease;
}
.bento-item:hover .bento-img {
  transform: scale(1.05);
}
.bento-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(255, 106, 0, 0.9) 0%, rgba(255, 106, 0, 0.2) 100%);
  z-index: 2;
}
.bento-content {
  position: relative;
  z-index: 3;
  padding: 2rem;
  color: white;
}
.bento-content h3 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}
.bento-content p {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}

/* Editorial layout */
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-top: 4rem;
}
.editorial-sidebar {
  position: sticky;
  top: 100px;
}
.quote-block {
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  color: var(--brand-primary);
  line-height: 1.4;
  border-left: 4px solid var(--brand-primary);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.list-styled {
  list-style: none;
}
.list-styled li {
  padding: 1.5rem;
  background: var(--light-gray);
  border-radius: 16px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(255, 106, 0,0.05);
  display: flex;
  align-items: flex-start;
}
.list-styled li h4 {
  color: var(--brand-primary);
  margin-bottom: 0.5rem;
}
.list-icon {
  width: 40px;
  height: 40px;
  background: var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  color: var(--brand-primary);
  font-weight: bold;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-sidebar { position: static; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-item.large, .bento-item.medium { grid-column: span 2; }
}
@media (max-width: 576px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-item.large, .bento-item.medium { grid-column: span 1; }
}
