/* Konas de Luz - VERSIÓN MASTER */
/* Combinación: Estructura V4 + Estética V1 (Dark Mystic) */

:root {
    /* Updated Green-focused Colors */
    --primary-green: #1a3d28;
    --secondary-green: #2d5a3d;
    --tertiary-green: #4a7c59;
    --accent-gold: #d4af37;
    --accent-gold-light: #f4d03f;
    --accent-gold-dark: #b8941f;
    --text-white: #ffffff;
    --text-gray: #b8b8b8;
    --text-light-gray: #e0e0e0;
    --mystic-green: #2d5a3d;
    --mystic-green-light: #4a7c59;
    --mystic-green-dark: #0f2419;
	--mystic-green-black: #05120b;
    
    /* Glow Effects */
    --glow-gold: rgba(212, 175, 55, 0.6);
    --glow-green: rgba(45, 90, 61, 0.4);
    --glow-white: rgba(255, 255, 255, 0.1);
	--glow-hero: #8e6f0999;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    --gradient-green: linear-gradient(135deg, var(--mystic-green), var(--mystic-green-light));
    --gradient-dark-green: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--primary-green);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 61, 40, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(26, 61, 40, 0.98);
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px var(--glow-gold));
}

.logo-text {
    font-family: 'Crimson Text', serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-menu a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--accent-gold);
    text-shadow: 0 0 10px var(--glow-gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.language-toggle button {
    background: var(--mystic-green-light);
    color: var(--primary-black);
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    
}

.language-toggle button:hover {
    transform: translateY(-2px);
    
}

.language-toggle {
    position: relative;
    display: inline-block;
}

#langBtn {
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 50px;
    font-size: 1.2rem;
    cursor: pointer;
}

.lang-menu {
    position: absolute;
    top: 120%;
    right: 0;
    background-color: var(--mystic-green-light);
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    list-style: none;
    padding: 0.3rem 0;
    display: none;
    min-width: 100px;
    z-index: 9999;
}

.lang-menu li {
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 0.95rem;
}

.lang-menu li:hover {
    background-color: #639d74;
}


/* Navigation Right Container */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--mystic-green-light);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: 
    radial-gradient(circle at 80% 80%, var(--glow-green) 0%, transparent 50%),    
	radial-gradient(circle at 90% 20%, var(--glow-hero) 0%, transparent 50%),    
	radial-gradient(circle at 60% 40%, rgba(212, 175, 55, 0.1) 0%, transparent 70%),    
	linear-gradient(180deg, var(--primary-green) 0%, var(--mystic-green-black) 100%);
    overflow: hidden;
    padding-top: 100px; /* Added padding to separate from navbar */
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-green);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 0 20px var(--glow-green);
    animation: pulse 3s ease-in-out infinite;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.hero-title {
    margin-bottom: 24px;
}

.title-main {
    display: block;
    font-family: 'Crimson Text', serif;
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    margin-bottom: 8px;
    animation: titleGlow 4s ease-in-out infinite;
}

.title-sub {
    display: block;
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--text-gray);
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light-gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(45, 90, 61, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    border-color: var(--accent-gold);
}

.feature-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-shadow: 0 0 15px var(--glow-gold);
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 4px;
}

.feature-subtitle {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary, .btn-secondary {
    padding: 16px 32px;
    border-radius: 25px; /* More rounded corners */
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary-green);
    box-shadow: 0 0 20px var(--glow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--glow-gold);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--primary-green);
    box-shadow: 0 0 20px var(--glow-gold);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Animated Kona Symbol */
.kona-symbol {
    position: relative;
    z-index: 3;
}

.symbol-outer {
    position: relative;
    width: 200px;
    height: 200px;
    border: 3px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: rotate 20s linear infinite;
    box-shadow: 
        0 0 30px var(--glow-gold),
        inset 0 0 30px rgba(212, 175, 55, 0.1);
}

.symbol-inner {
    position: relative;
    width: 140px;
    height: 140px;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.symbol-center {
    width: 30px;
    height: 30px;
    background: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--glow-gold);
    animation: pulse 3s ease-in-out infinite;
}

.symbol-ray {
    position: absolute;
    width: 4px;
    height: 40px;
    background: linear-gradient(to top, var(--accent-gold), transparent);
    transform-origin: center center;
    top: 50%;
    left: 50%;
}

.ray-1 { transform: translate(-50%, -50%) rotate(0deg) translateY(-70px); }
.ray-2 { transform: translate(-50%, -50%) rotate(45deg) translateY(-70px); }
.ray-3 { transform: translate(-50%, -50%) rotate(90deg) translateY(-70px); }
.ray-4 { transform: translate(-50%, -50%) rotate(135deg) translateY(-70px); }
.ray-5 { transform: translate(-50%, -50%) rotate(180deg) translateY(-70px); }
.ray-6 { transform: translate(-50%, -50%) rotate(225deg) translateY(-70px); }
.ray-7 { transform: translate(-50%, -50%) rotate(270deg) translateY(-70px); }
.ray-8 { transform: translate(-50%, -50%) rotate(315deg) translateY(-70px); }

/* Floating Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--glow-gold);
    animation: float 8s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    top: 30%;
    left: 70%;
    animation-delay: 6s;
}

.particle:nth-child(5) {
    top: 50%;
    left: 90%;
    animation-delay: 1s;
}

/* Award Banner */
.award-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(45, 90, 61, 0.9);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}

.award-icon {
    font-size: 2.5rem;

}

.award-text h4 {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.award-text p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Animations */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px var(--glow-gold);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 30px var(--glow-gold);
    }
}

@keyframes titleGlow {
    0%, 100% {
        filter: drop-shadow(0 0 15px var(--glow-gold));
    }
    50% {
        filter: drop-shadow(0 0 25px var(--glow-gold));
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) translateX(-15px);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-30px) translateX(5px);
        opacity: 1;
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-green);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 0 15px var(--glow-green);
}

.section-title {
    font-family: 'Crimson Text', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    text-shadow: 0 0 20px var(--glow-white);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Book Section */
.book-section {
    padding: 100px 0;
    background: 
        radial-gradient(circle at 80% 20%, var(--glow-green) 0%, transparent 50%),
        linear-gradient(180deg, var(--mystic-green-black) 0%, var(--secondary-green) 100%);
}

.book-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

.book-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
   
}

.book-quote {
    background: rgba(45, 90, 61, 0.8);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-gold);
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.book-quote p {
    font-family: 'Crimson Text', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--accent-gold);
    line-height: 1.6;
}

.book-text {
    font-size: 1.1rem;
    color: var(--text-light-gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

.traditions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.tradition-card {
    background: rgba(45, 90, 61, 0.8);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.tradition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--accent-gold);
}

.tradition-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 10px var(--glow-gold));
}

.tradition-img {
    width: 50px;
    height: 50px;

}

.tradition-card h4 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.tradition-card p {
    color: var(--text-gray);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.tradition-card ul {
    list-style: none;
}

.tradition-card li {
    color: var(--text-light-gray);
    font-size: 0.9rem;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}

.tradition-card li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

.book-cta {
    text-align: center;
    margin: 20px 0 0 0;
}

.availability {
    margin-top: 16px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Author Section */
.author-section {
    padding: 100px 0;
    background: 
        radial-gradient(circle at 50% -130%, var(--glow-green) 0%, transparent 50%),
        linear-gradient(180deg, var(--secondary-green) 0%, var(--mystic-green-black) 100%);
}

.author-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.author-info {
    order: 1;
}

.author-image {
    order: 2;
}

.author-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    filter: drop-shadow(0 0 15px var(--glow-gold));
}

.author-intro {
    margin-bottom: 30px;
}

.author-intro h3 {
    font-family: 'Crimson Text', serif;
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 16px;
    line-height: 1.2;
}

.author-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.author-location {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 24px;
}

.author-description {
    color: var(--text-light-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.author-description p {
    margin-bottom: 20px;
}

.author-description p:last-child {
    margin-bottom: 0;
}

.author-mission {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--gradient-green);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 0 20px var(--glow-green);
}

.mission-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.mission-content h4 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.mission-content p {
    color: var(--text-white);
    font-weight: 600;
}

/* Workshops Section */
.workshops-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--mystic-green-black) 0%, var(--secondary-green) 100%);
}

.workshops-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.workshop-card {
    background: rgba(45, 90, 61, 0.9);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
	display: flex;
    flex-direction: column;
}

.workshop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.workshop-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
    border-color: var(--accent-gold);
}

.workshop-card ul {
    list-style: none;
}

.workshop-card li {
    color: var(--text-light-gray);
    font-size: 0.9rem;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}

.workshop-card li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

.workshop-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.workshop-level {
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.workshop-title {
    font-family: 'Crimson Text', serif;
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 8px;
}

.workshop-format {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-style: italic;
}

.workshop-description {
    color: var(--text-light-gray);
    line-height: 1.6;
    margin-bottom: 30px;
}

.workshop-objectives h4 {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-bottom: 16px;
}

.objectives-grid {
    display: grid;
    gap: 12px;
    margin-bottom: 30px;
}

.objective-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-light-gray);
}

.objective-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px var(--glow-gold));
}

.workshop-schedule {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(45, 90, 61, 0.2);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.schedule-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px var(--glow-green));
}

.schedule-info p {
    color: var(--text-white);
    font-weight: 500;
    margin-bottom: 4px;
}

.schedule-info small {
    color: var(--text-gray);
    font-size: 0.8rem;
}

.workshop-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
	margin-top: auto;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 25px; /* More rounded corners */
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #20b954;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
    font-size: 1.2rem;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background: var(--primary-green);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 60px;
}

.community-info h3 {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 24px;
}

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

.benefits-list li {
    color: var(--text-light-gray);
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
}

.benefits-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.whatsapp-groups h3 {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.contact-icon-img {
    width: 30px;
    height: 30px;

}

.whatsapp-img {
    width: 20px;
    height: 20px;

}

.groups-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.group-card {
    background: rgba(45, 90, 61, 0.8);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.group-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
    border-color: var(--accent-gold);
}

.group-icon {
    font-size: 1.3rem;
    margin-bottom: 8px;
    filter: drop-shadow(0 0 10px var(--glow-gold));
}

.group-card h4 {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-bottom: 6px;
}

.group-card p {
    color: var(--text-gray);
    margin-bottom: 12px;
    line-height: 1.4;
    font-size: 0.85rem;
}

/* Footer */
.footer {
    background: var(--mystic-green-dark);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 60px 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px var(--glow-gold));
}

.footer-logo-text {
    font-family: 'Crimson Text', serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 300px;
}

.social-media {
    display: flex;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(45, 90, 61, 0.8);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.social-link:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.footer-navigation {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.nav-column h4 {
    color: var(--accent-gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-column ul {
    list-style: none;
}

.nav-column li {
    margin-bottom: 12px;
}

.nav-column a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    padding: 4px 0;
}

.nav-column a:hover {
    color: var(--accent-gold);
    text-shadow: 0 0 10px var(--glow-gold);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    text-shadow: 0 0 10px var(--glow-gold);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .book-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .author-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .workshops-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .groups-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-navigation {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(26, 61, 40, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        z-index: 999;
        padding: 20px 0;
    }

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

    .nav-menu li {
        margin: 15px 0;
    }

    .hamburger {
        display: flex;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    /* Hero Section */
    .hero {
        padding-top: 120px; /* Increased padding for mobile */
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .title-sub {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .feature-item {
        padding: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        padding: 14px 24px;
    }
    
    /* Sections */
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    /* Book Section */
    .traditions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tradition-card {
        padding: 20px;
    }
    
    /* Author Section */
    .author-intro h3 {
        font-size: 2rem;
    }
    
    /* Workshops Section */
    .workshops-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .workshop-card {
        padding: 24px;
    }
    
    .workshop-title {
        font-size: 1.3rem;
    }
    
    /* Contact Section */
    .groups-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .group-card {
        padding: 20px;
		margin: 0 10px;
    }
    
    .group-card h4 {
        font-size: 1.1rem;
    }
    
    .group-card p {
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-navigation {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .social-media {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    /* Hero Section */
    .hero {
        padding-top: 100px;
    }
    
    .hero-container {
        padding: 0 16px;
    }
    
    .title-main {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .title-sub {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .feature-item {
        padding: 12px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .feature-number {
        font-size: 1.5rem;
    }
    
    .feature-title {
        font-size: 0.9rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Award Banner */
    .award-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 12px;
    }
    
    .award-text h4 {
        font-size: 1rem;
    }
    
    .award-text p {
        font-size: 0.85rem;
    }
    
    /* Sections */
    .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    /* Book Section */
    .book-section {
        padding: 90px 0;
    }
    
    .book-quote {
        padding: 20px;
    }
    
    .book-quote p {
        font-size: 1.1rem;
    }
    
    .tradition-card {
        padding: 16px;
    }
    
    .tradition-card h4 {
        font-size: 1.1rem;
    }
    
    .tradition-card p {
        font-size: 0.85rem;
    }
    
    .tradition-card li {
        font-size: 0.8rem;
    }
    
    /* Author Section */
    .author-section {
        padding: 90px 0;
    }
    
    .author-intro h3 {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .author-subtitle {
        font-size: 1rem;
    }
    
    .author-description {
        font-size: 1rem;
    }
    
    .author-mission {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    /* Workshops Section */
    .workshops-section {
        padding: 90px 0;
    }
    
    .workshop-card {
        padding: 20px;
    }
    
    .workshop-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .workshop-title {
        font-size: 1.2rem;
        line-height: 1.2;
    }
    
    .workshop-description {
        font-size: 0.9rem;
    }
    
    .workshop-schedule {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .schedule-info p {
        font-size: 0.9rem;
    }
    
    /* Contact Section */
    .contact-section {
        padding: 100px 0;
    }
    
    .community-info h3 {
        font-size: 1.3rem;
    }
    
    .benefits-list li {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .whatsapp-groups h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .group-card {
        padding: 16px;
		margin: 0 10px;
    }
    
    .group-card h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .group-card p {
        font-size: 0.8rem;
        margin-bottom: 16px;
    }
    
    .btn-whatsapp {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-main {
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-tagline {
        font-size: 0.9rem;
        max-width: 100%;
    }
    
    .nav-column h4 {
        font-size: 1rem;
        margin-bottom: 16px;
    }
    
    .nav-column a {
        font-size: 0.85rem;
        padding: 2px 0;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .title-main {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .hero-features {
        gap: 12px;
    }
    
    .feature-item {
        padding: 10px;
    }
    
    .tradition-card, .workshop-card, .group-card {
        padding: 12px;
		margin: 0 10px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 10px 16px;
        font-size: 13px;
    }
}

