/**
 * Yoga Page Styles
 * Aesthetic: Indian/Spiritual, Earthy, Serene
 */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
    --yoga-saffron: #e76f51;
    /* Muted Saffron */
    --yoga-sage: #8ab0ab;
    /* Sage Green */
    --yoga-sand: #f4a261;
    /* Earthy Sand */
    --yoga-charcoal: #264653;
    --yoga-cream: #fdfcdc;
    --yoga-white: #ffffff;
    --yoga-overlay: rgba(38, 70, 83, 0.7);
    /* Dark teal overlay */
}

/* Base Overrides for Yoga Page */
body.yoga-page {
    font-family: 'Lato', sans-serif;
    color: var(--yoga-charcoal);
    background-color: var(--yoga-cream);
    /* Warm nice background */
    /* background-image: url('../img/yoga-pattern.png'); */
    /* Subtle pattern placeholder */
    background-blend-mode: overlay;
}

.yoga-page h1,
.yoga-page h2,
.yoga-page h3,
.yoga-page h4,
.yoga-page h5 {
    font-family: 'Playfair Display', serif;
    color: var(--yoga-charcoal);
}

/* Sections */
.yoga-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.yoga-section.alt-bg {
    background-color: rgba(138, 176, 171, 0.1);
    /* Light sage tint */
}

/* Full Width Banners */
.yoga-banner {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--yoga-white);
}

.yoga-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--yoga-overlay);
}

.yoga-banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.yoga-banner h2 {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--yoga-white);
    text-transform: capitalize;
    letter-spacing: 1px;
}

.yoga-banner p {
    font-size: 1.25em;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

/* Content Areas */
.yoga-content-block {
    padding: 60px 0;
}

.yoga-icon {
    font-size: 3em;
    color: var(--yoga-saffron);
    margin-bottom: 20px;
    display: block;
}

/* Buttons */
.btn-yoga {
    background-color: var(--yoga-saffron);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--yoga-saffron);
    display: inline-block;
    margin-top: 20px;
}

.btn-yoga:hover {
    background-color: transparent;
    color: var(--yoga-saffron);
    transform: translateY(-3px);
}

.btn-yoga-secondary {
    background-color: transparent;
    color: var(--yoga-charcoal);
    padding: 12px 30px;
    border-radius: 30px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--yoga-charcoal);
    display: inline-block;
    margin-top: 20px;
    margin-left: 10px;
}

.btn-yoga-secondary:hover {
    background-color: var(--yoga-charcoal);
    color: #fff;
    transform: translateY(-3px);
}

/* Animations */
@keyframes lotusFloat {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.lotus-icon {
    animation: lotusFloat 4s ease-in-out infinite;
}

/* Specific Section Styles */
#yoga-intro .lead-text {
    font-size: 1.2em;
    line-height: 1.8;
    color: var(--yoga-charcoal);
}

/* Card Styling for Mantras/Pranayamas */
.yoga-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
    border-bottom: 4px solid var(--yoga-sage);
    height: 100%;
}

.yoga-card:hover {
    transform: translateY(-10px);
}

.yoga-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--yoga-charcoal);
}

/* Responsive */
@media (max-width: 768px) {
    .yoga-banner h2 {
        font-size: 2.5em;
    }

    .btn-yoga-secondary {
        margin-left: 0;
        margin-top: 10px;
    }
}

/* Footer Styles */
.yoga-footer {
    background-color: var(--yoga-charcoal);
    color: var(--yoga-white);
    padding: 60px 0 20px;
    font-family: 'Lato', sans-serif;
    border-top: 5px solid var(--yoga-saffron);
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget h4 {
    color: var(--yoga-saffron);
    font-family: 'Playfair Display', serif;
    font-size: 1.5em;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-widget h4::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--yoga-sage);
    margin-top: 5px;
}

/* Logo Widget */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-logo h3 {
    margin: 0;
    color: var(--yoga-white);
    font-size: 1.4em;
}

.namaste-text {
    font-style: italic;
    color: var(--yoga-sage);
    font-size: 1.1em;
}

/* Contact List */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    font-size: 1.05em;
}

.footer-contact i {
    color: var(--yoga-saffron);
    margin-right: 15px;
    font-size: 1.2em;
    margin-top: 3px;
}

/* Social & Links */
.footer-social {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    gap: 15px;
}

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

.footer-social li a:hover {
    background: var(--yoga-saffron);
    color: white;
    transform: translateY(-3px);
}

.footer-links {
    margin-top: 20px;
}

.footer-links a {
    color: var(--yoga-sage);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
    margin: 0 5px;
}

.footer-links a:hover {
    color: var(--yoga-saffron);
}

/* Copyright */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9em;
}
