/*
Theme Name: Humandalas
Theme URI: https://humandalas.com
Author: Humandalas
Description: A modern, block-based WordPress theme for Humandalas landing pages with editable patterns. Built with Full Site Editing (FSE).
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: humandalas
Tags: full-site-editing, block-patterns, block-styles, custom-colors, editor-style, featured-images, translation-ready

Humandalas theme, Copyright 2023 Humandalas
Humandalas theme is distributed under the terms of the GNU GPL
*/

/* Modern Epic Landing Page Styles */
:root {
  --primary-color: #FF8F5A;
  --primary-color-rgb: 255, 143, 90;
  --secondary-color: #3A1C71;
  --accent-color: #ffeb3b;
  --text-color: #333;
  --light-bg: #f9f9f9;
  --dark-bg: #232323;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Base Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  line-height: 1.8;
  color: var(--text-color);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.2rem);
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

/* Container */
.wp-block-group.humandalas-container,
.humandalas-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header/Navigation - Block Theme */
header.wp-block-template-part {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  background: #3A1C71 !important; /* Solid purple background - explicit color */
  background-color: #3A1C71 !important; /* Ensure solid background */
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  z-index: 1000;
  padding: 0 !important;
  opacity: 1 !important;
}

header.wp-block-template-part .wp-block-group {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  max-width: 1400px;
  margin: 0 auto;
}

header.wp-block-template-part .site-header-inner {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Site Logo in header - Top Left Position */
header .wp-block-site-logo {
  margin: 0 !important;
  margin-right: auto !important; /* Push navigation to the right */
  flex-shrink: 0; /* Prevent logo from shrinking */
}

header .wp-block-site-logo a {
  display: flex;
  align-items: center;
}

header .wp-block-site-logo img {
  height: 50px !important;
  width: auto !important;
  max-width: 200px;
  display: block;
  object-fit: contain;
}

/* Navigation in header */
header .wp-block-navigation {
  gap: 2rem;
}

header .wp-block-navigation__container {
  display: flex !important;
  gap: 2rem;
  align-items: center;
}

header .wp-block-navigation-item__content {
  color: rgba(255, 255, 255, 0.9) !important; /* White text on purple background */
  text-decoration: none !important;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: var(--transition);
}

header .wp-block-navigation-item__content:hover {
  color: var(--primary-color) !important; /* Orange on hover */
}

/* Space for fixed header */
body {
  padding-top: 80px;
}

/* First section should account for fixed header */
.site-main > .wp-block-cover:first-child,
.site-main > .humandalas-hero:first-child {
  margin-top: -80px;
  padding-top: 180px !important;
}

/* Navigation Menu - Legacy Support */
.humandalas-nav {
  background-color: var(--secondary-color); /* Solid purple background */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.humandalas-nav img {
  max-height: 50px;
  transition: var(--transition);
}

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

.humandalas-nav-menu a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9); /* White text on purple background */
  font-weight: 500;
  transition: var(--transition);
}

.humandalas-nav-menu a:hover {
  color: var(--primary-color); /* Orange on hover */
}

/* Hero Section - Mockup Style */
.wp-block-cover.humandalas-hero-mockup {
  min-height: 100vh !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 120px 40px 60px !important;
  position: relative;
  overflow: hidden;
}

.wp-block-cover.humandalas-hero-mockup .wp-block-cover__inner-container {
  width: 100%;
  max-width: 1600px;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.humandalas-hero-panel {
  background: rgba(34, 67, 51, 0.85) !important; /* Dark green semi-transparent */
  backdrop-filter: blur(10px);
  padding: 60px 50px !important;
  border-radius: 12px;
  max-width: 600px !important;
  margin-left: 0 !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.humandalas-hero-panel h1 {
  color: white !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 0 !important;
}

.humandalas-hero-panel p {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.humandalas-hero-cta-mockup .wp-block-button__link {
  background: #8B4513 !important; /* Brown/reddish-brown */
  color: white !important;
  border: none !important;
  box-shadow: 0 5px 15px rgba(139, 69, 19, 0.4) !important;
  transition: all 0.3s ease !important;
}

.humandalas-hero-cta-mockup .wp-block-button__link:hover {
  background: #A0522D !important; /* Slightly lighter brown */
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 69, 19, 0.5) !important;
}

@media (max-width: 768px) {
  .wp-block-cover.humandalas-hero-mockup {
    min-height: 100vh !important;
    padding: 80px 20px 40px !important;
    justify-content: center !important;
    align-items: center !important;
  }
  
  .wp-block-cover.humandalas-hero-mockup .wp-block-cover__inner-container {
    justify-content: center !important;
    align-items: center !important;
    padding: 0 20px !important;
  }
  
  .humandalas-hero-panel {
    padding: 40px 25px 35px !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto !important;
    border-radius: 16px !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4) !important;
  }
  
  .humandalas-hero-panel h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem) !important;
    line-height: 1.2 !important;
    margin-bottom: 20px !important;
  }
  
  .humandalas-hero-panel p {
    font-size: clamp(1rem, 4vw, 1.2rem) !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
  }
  
  .humandalas-hero-panel p:last-of-type {
    margin-bottom: 30px !important;
  }
  
  .humandalas-hero-panel .wp-block-buttons {
    justify-content: center !important;
    width: 100%;
  }
  
  .humandalas-hero-cta-mockup {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  
  .humandalas-hero-cta-mockup .wp-block-button__link {
    padding: 14px 35px !important;
    font-size: 1rem !important;
    width: 100%;
    display: block;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .wp-block-cover.humandalas-hero-mockup {
    padding: 70px 15px 30px !important;
  }
  
  .humandalas-hero-panel {
    padding: 35px 20px 30px !important;
    border-radius: 12px !important;
  }
  
  .humandalas-hero-panel h1 {
    font-size: clamp(1.5rem, 7vw, 2rem) !important;
    margin-bottom: 18px !important;
  }
  
  .humandalas-hero-panel p {
    font-size: clamp(0.95rem, 4vw, 1.1rem) !important;
    margin-bottom: 18px !important;
  }
  
  .humandalas-hero-panel p:last-of-type {
    margin-bottom: 25px !important;
  }
  
  .humandalas-hero-cta-mockup .wp-block-button__link {
    padding: 12px 30px !important;
    font-size: 0.95rem !important;
  }
}

/* Hero Section - Epic */
.wp-block-cover.humandalas-hero-epic {
  min-height: 100vh !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 60px !important;
  position: relative;
  overflow: hidden;
}

.wp-block-cover.humandalas-hero-epic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 143, 90, 0.1) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.humandalas-hero-content-epic {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 60px 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.humandalas-hero-content-epic h1 {
  color: #ffffff !important;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.humandalas-hero-content-epic p {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.humandalas-cta-epic .wp-block-button__link {
  box-shadow: 0 10px 30px rgba(255, 143, 90, 0.4) !important;
  transition: all 0.3s ease !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

.humandalas-cta-epic .wp-block-button__link:hover {
  transform: translateY(-5px) scale(1.05) !important;
  box-shadow: 0 15px 40px rgba(255, 143, 90, 0.6) !important;
  background: var(--secondary-color) !important;
}

/* Hero Section - Legacy */
.wp-block-cover.humandalas-hero {
  min-height: 100vh !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 60px !important;
  position: relative;
}

.wp-block-cover.humandalas-hero .wp-block-cover__inner-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 2;
}

.humandalas-hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 40px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
}

.humandalas-hero-content h1 {
  color: var(--secondary-color) !important;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.humandalas-hero-content p {
  font-size: 1.3rem;
  color: var(--text-color) !important;
  margin-bottom: 30px;
  line-height: 1.6;
}

.humandalas-hero-content p.has-large-font-size {
  font-size: 1.5rem;
}

/* Hero Section - Legacy Support */
.humandalas-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 20px 60px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.humandalas-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130%;
  z-index: -1;
  object-fit: cover;
  object-position: top;
  filter: brightness(0.75);
}

.humandalas-hero h1 {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.humandalas-hero p {
  font-size: 1.3rem;
  color: var(--text-color);
  margin-bottom: 30px;
}

/* CTA Button */
.humandalas-cta-button {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  border: 2px solid transparent;
}

.humandalas-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  background: var(--secondary-color);
}

/* Path Section - 4 Steps */
.humandalas-path {
  padding: 100px 20px;
  background: linear-gradient(to bottom, #ffffff 0%, #f9f9f9 100%);
  position: relative;
  overflow: hidden;
}

.humandalas-path::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('assets/images/watermark-geometric.png');
  background-repeat: repeat;
  background-size: 400px 400px;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

.humandalas-path > * {
  position: relative;
  z-index: 1;
}

.humandalas-path h2 {
  text-align: center;
  margin-bottom: 20px;
  color: var(--secondary-color);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
}

.humandalas-path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  counter-reset: path-step;
}

/* Connecting line between steps */
.humandalas-path-grid::before {
  content: '';
  position: absolute;
  top: 150px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--primary-color), transparent);
  opacity: 0.3;
  z-index: 0;
}

@media (max-width: 1200px) {
  .humandalas-path-grid::before {
    display: none;
  }
}

.humandalas-path-step {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 16px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 1;
}

.humandalas-path-step::before {
  content: counter(path-step);
  counter-increment: path-step;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(58, 28, 113, 0.3);
  z-index: 2;
}


.humandalas-path-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(58, 28, 113, 0.15);
  border-color: var(--primary-color);
}

.humandalas-path-step .wp-block-image {
  margin-bottom: 25px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 12px;
}

.humandalas-path-step img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 0;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: var(--transition);
}

.humandalas-path-step:hover img {
  transform: scale(1.05);
}

.humandalas-path-step h3 {
  margin-bottom: 15px;
  color: var(--secondary-color);
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}

.humandalas-path-step p {
  color: #666;
  margin-bottom: 24px;
  line-height: 1.7;
  text-align: left;
  flex-grow: 1;
}

.humandalas-path-step .wp-block-buttons {
  margin-top: auto;
  justify-content: center;
}

.humandalas-path-step .wp-block-button__link {
  background: var(--dark-bg) !important;
  color: white !important;
  border-radius: 8px !important;
  padding: 12px 28px !important;
  font-weight: 600 !important;
  border: none !important;
  transition: var(--transition);
  font-size: 0.95rem !important;
}

.humandalas-path-step .wp-block-button__link:hover {
  background: var(--secondary-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(58, 28, 113, 0.3);
}

/* Responsive for path grid */
@media (max-width: 1200px) {
  .humandalas-path-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
  
  .humandalas-path {
    padding: 80px 20px;
  }
}

@media (max-width: 768px) {
  .humandalas-path-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .humandalas-path {
    padding: 60px 20px;
  }
  
  .humandalas-path-step {
    padding: 25px 15px;
  }
  
  .humandalas-path-step p {
    text-align: center;
  }
  
  .humandalas-path-step::before {
    width: 35px;
    height: 35px;
    font-size: 1rem;
    top: -17.5px;
  }
}

/* Founder Section */
.humandalas-founder {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f9f9f9, #f1f1f1);
}

.humandalas-founder-content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.humandalas-founder-image {
  flex: 0 0 300px;
}

.humandalas-founder-image img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.humandalas-founder-text {
  flex: 1;
}

.humandalas-founder-text h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.humandalas-founder-text h4 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* Testimonials */
.humandalas-testimonials {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
  text-align: center;
}

.humandalas-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.humandalas-testimonial {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: left;
  position: relative;
}

.humandalas-testimonial img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}

.humandalas-testimonial p {
  font-style: italic;
  color: #555;
  line-height: 1.8;
}

/* Benefits Section */
.humandalas-benefits {
  padding: 100px 20px;
  background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
}

.humandalas-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.humandalas-benefit {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.humandalas-benefit:hover {
  transform: translateY(-10px);
}

.humandalas-benefit-icon {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  background: var(--light-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.humandalas-benefit-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--primary-color);
}

.humandalas-benefit-text h4 {
  margin: 0 0 10px 0;
  font-size: 1.3rem;
}

.humandalas-benefit-text p {
  margin: 0;
  color: #666;
}

/* Gallery Section */
.humandalas-gallery {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f5f7fa, #e5ebf0);
}

.humandalas-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.humandalas-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1;
  cursor: pointer;
}

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

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

/* FAQ Section */
.humandalas-faq {
  padding: 100px 20px;
  background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
}

.humandalas-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.humandalas-faq-item {
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.humandalas-faq-question {
  padding: 20px;
  background: white;
  cursor: pointer;
  font-weight: 600;
  color: var(--secondary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.humandalas-faq-question::after {
  content: '+';
  font-size: 24px;
  color: var(--primary-color);
  transition: transform 0.3s;
}

.humandalas-faq-item.active .humandalas-faq-question::after {
  transform: rotate(45deg);
}

.humandalas-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  padding: 0 20px;
}

.humandalas-faq-item.active .humandalas-faq-answer {
  max-height: 1000px;
  padding: 20px;
}

/* Final CTA Section */
.humandalas-final-cta {
  padding: 100px 20px;
  background: linear-gradient(135deg, #2c3e50, #1a2a38);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.humandalas-final-cta h2 {
  color: white;
  margin-bottom: 20px;
}

.humandalas-final-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-size: 1.2rem;
}

/* Footer Styles - Block Theme */
footer.wp-block-template-part {
  background: var(--dark-bg) !important;
  color: white;
}

footer.wp-block-template-part .site-footer,
footer.wp-block-template-part .wp-block-group.site-footer {
  background: transparent !important;
}

footer.wp-block-template-part .wp-block-columns {
  max-width: 1400px;
  margin: 0 auto;
  gap: 3rem;
}

footer.wp-block-template-part .wp-block-column {
  padding: 0;
}

/* Footer headings */
footer.wp-block-template-part h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color) !important;
}

/* Footer lists */
footer.wp-block-template-part ul,
footer.wp-block-template-part .wp-block-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

footer.wp-block-template-part li {
  margin-bottom: 0.75rem;
  list-style: none !important;
}

footer.wp-block-template-part li::marker {
  content: none;
}

/* Footer links */
footer.wp-block-template-part a {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none !important;
  transition: var(--transition);
}

footer.wp-block-template-part a:hover {
  color: var(--primary-color) !important;
  text-decoration: none !important;
}

/* Footer paragraphs */
footer.wp-block-template-part p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

/* Social links in footer */
footer.wp-block-template-part .wp-block-social-links {
  gap: 1rem;
  margin-top: 1rem;
  padding: 0;
  list-style: none;
}

footer.wp-block-template-part .wp-block-social-link {
  margin: 0;
}

footer.wp-block-template-part .wp-block-social-link a {
  background: rgba(255, 255, 255, 0.1) !important;
  border-radius: 50%;
  padding: 0.5rem;
}

footer.wp-block-template-part .wp-block-social-link a:hover {
  background: var(--primary-color) !important;
}

footer.wp-block-template-part .wp-block-social-link svg {
  fill: var(--white) !important;
}

/* Footer - Legacy Support */
.humandalas-footer {
  background: var(--dark-bg);
  color: white;
  padding: 60px 20px 30px;
}

.humandalas-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 30px;
}

.humandalas-footer-column h4 {
  color: white;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
}

.humandalas-footer-column ul {
  list-style: none;
  padding: 0;
}

.humandalas-footer-column a {
  color: #ccc;
  text-decoration: none;
  transition: var(--transition);
}

.humandalas-footer-column a:hover {
  color: white;
}

.humandalas-footer-copyright {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .humandalas-nav {
    flex-direction: column;
    padding: 15px;
  }
  
  .humandalas-nav-menu {
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
  }
  
  .humandalas-founder-content {
    flex-direction: column;
  }
  
  .humandalas-founder-image {
    flex: 0 0 auto;
    width: 80%;
    max-width: 300px;
  }
  
  .humandalas-path-grid,
  .humandalas-testimonials-grid,
  .humandalas-benefits-grid,
  .humandalas-gallery-grid,
  .humandalas-faq-grid {
    grid-template-columns: 1fr;
  }
}

/* WordPress Block Editor Styles */
.site-main {
  margin-top: 70px;
}

/* Full width sections */
.site-main .alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* First section after header needs no extra margin since body has padding-top */
.site-main > *:first-child {
  margin-top: 0;
}

/* Block Editor Styles */
.wp-block-group.humandalas-section {
  padding: 80px 20px;
}

.wp-block-group.humandalas-section.has-background {
  padding: 80px 20px;
}

/* Utilities */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-0 {
  margin-top: 0;
}

/* ============================================
   EPIC LANDING PAGE STYLES
   ============================================ */

/* Epic Path Section */
.humandalas-path-epic {
  padding: 120px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 50%, #ffffff 100%);
  position: relative;
}

.humandalas-path-grid-epic {
  gap: 40px !important;
  max-width: 1600px;
  margin: 0 auto;
}

.humandalas-path-step-epic {
  background: white;
  border-radius: 25px;
  padding: 40px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.humandalas-path-step-epic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #FF8F5A, #3A1C71);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.humandalas-path-step-epic:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(58, 28, 113, 0.2);
  border-color: #FF8F5A;
}

.humandalas-path-step-epic:hover::before {
  transform: scaleX(1);
}

.path-step-number {
  margin-bottom: 20px;
}

.path-step-number p {
  line-height: 1;
  margin: 0;
  opacity: 0.9;
}

.humandalas-path-step-epic .wp-block-image {
  margin-bottom: 25px;
  overflow: hidden;
  border-radius: 20px;
}

.humandalas-path-step-epic img {
  transition: transform 0.5s ease;
}

.humandalas-path-step-epic:hover img {
  transform: scale(1.08);
}

.humandalas-path-step-epic h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.humandalas-path-step-epic .wp-block-button__link {
  transition: all 0.3s ease !important;
}

.humandalas-path-step-epic .wp-block-button__link:hover {
  transform: translateX(5px) !important;
  background: var(--primary-color) !important;
}

/* Epic Founder Section */
.humandalas-founder-epic {
  padding: 120px 20px;
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  position: relative;
}

.humandalas-founder-image-epic {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
  transition: transform 0.4s ease;
}

.humandalas-founder-image-epic:hover {
  transform: scale(1.05);
}

.humandalas-founder-text-epic {
  padding-left: 20px;
}

/* Epic Testimonials */
.humandalas-testimonials-epic {
  padding: 120px 20px;
  background: white;
  position: relative;
}

.humandalas-testimonial-epic {
  background: #f9f9f9;
  padding: 40px 35px;
  border-radius: 20px;
  border-left: 5px solid var(--primary-color);
  transition: all 0.3s ease;
  text-align: center;
}

.humandalas-testimonial-epic:hover {
  background: white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.humandalas-testimonial-epic .wp-block-image {
  margin: 0 auto 25px;
  display: block;
}

.humandalas-testimonial-epic img {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 4px solid white;
}

.humandalas-testimonial-epic h4 {
  color: var(--secondary-color);
}

/* Lightbox Styles */
.humandalas-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.humandalas-lightbox.active {
  opacity: 1;
}

.lightbox-image-container {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.lightbox-image-container.fading {
  opacity: 0.5;
}

.lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: transparent;
  border: none;
  color: white;
  font-size: 50px;
  font-weight: 300;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 100000;
  line-height: 1;
  padding: 0;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 100000;
  padding: 0;
  backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
  background: rgba(255, 143, 90, 0.8);
  border-color: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.lightbox-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 16px;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 20px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
  .lightbox-close {
    top: 10px;
    right: 15px;
    font-size: 40px;
    width: 40px;
    height: 40px;
  }
  
  .lightbox-nav {
    width: 50px;
    height: 50px;
    font-size: 30px;
  }
  
  .lightbox-prev {
    left: 15px;
  }
  
  .lightbox-next {
    right: 15px;
  }
  
  .lightbox-counter {
    bottom: 20px;
    font-size: 14px;
    padding: 6px 15px;
  }
}

/* Epic Gallery */
.humandalas-gallery-epic {
  padding: 120px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
}

.humandalas-gallery-grid-epic {
  max-width: 1400px;
  margin: 0 auto;
  gap: 20px !important;
}

.humandalas-gallery-item-epic {
  overflow: hidden;
  border-radius: 15px !important;
  transition: all 0.4s ease;
}

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

.humandalas-gallery-item-epic:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.humandalas-gallery-item-epic:hover img {
  transform: scale(1.1);
}

/* Epic Final CTA */
.humandalas-final-cta-epic {
  padding: 0;
  position: relative;
}

.final-cta-cover {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.final-cta-cover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 143, 90, 0.2) 0%, transparent 70%);
  z-index: 1;
}

.final-cta-cover .wp-block-cover__inner-container {
  position: relative;
  z-index: 2;
}

.final-cta-cover h2 {
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.final-cta-cover p {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive Epic Styles */
@media (max-width: 1200px) {
  .humandalas-path-grid-epic {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .humandalas-gallery-grid-epic {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .humandalas-hero-content-epic {
    padding: 40px 30px;
  }
  
  .humandalas-path-epic,
  .humandalas-founder-epic,
  .humandalas-testimonials-epic,
  .humandalas-gallery-epic {
    padding: 80px 20px;
  }
  
  .humandalas-path-grid-epic,
  .humandalas-testimonials-grid-epic,
  .humandalas-gallery-grid-epic {
    grid-template-columns: 1fr !important;
  }
  
  .humandalas-founder-text-epic {
    padding-left: 0;
    margin-top: 40px;
  }
  
  .final-cta-cover {
    min-height: 400px;
  }
}