/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333333;
    background-color: #f8f8f5;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: 0.02em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: 0.01em;
}

h3 {
    font-size: 1.8rem;
    letter-spacing: 0.01em;
}

p {
    font-weight: 300;
    font-size: 1.1rem;
    letter-spacing: 0.01em;
}

/* Color Variables */
:root {
    --primary-green: #d5e8d4;
    --accent-green: #b8d4b6;
    --off-white: #f8f8f5;
    --dark-gray: #333333;
    --light-gray: #666666;
}

/* Button Styles */
.btn {
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid var(--dark-gray);
    background: transparent;
    color: var(--dark-gray);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.01em;
    display: inline-block;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    outline: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: var(--dark-gray);
    color: var(--off-white);
    border-color: var(--dark-gray);
}

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

.btn-outline {
    background: transparent;
    color: var(--dark-gray);
}

.btn-outline:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    min-height: 44px;
}

/* AGGRESSIVELY Hide ALL Gumroad branding */
.gumroad-button::after {
    content: none !important;
    display: none !important;
}

.gumroad-button .gumroad-logo,
.gumroad-button svg,
.gumroad-button img {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
}

a[href*="gumroad.com"]::after,
a[href*="gumroad"]::after {
    content: none !important;
    display: none !important;
}

a[href*="gumroad.com"] svg,
a[href*="gumroad"] svg,
a[href*="gumroad.com"] img,
a[href*="gumroad"] img {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    position: absolute !important;
    left: -9999px !important;
}

/* Prevent Gumroad from adding any content */
.gumroad-button * {
    display: none !important;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--off-white);
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--dark-gray);
}

.lotus-logo {
    transition: transform 0.3s ease;
}

.logo:hover .lotus-logo {
    transform: rotate(5deg);
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 300;
    transition: color 0.3s ease;
    position: relative;
}

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

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

.header-actions {
    display: flex;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    outline: none;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--dark-gray);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: var(--primary-green);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    margin-top: 80px;
    position: relative;
}

.lotus-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    z-index: 1;
}

.lotus-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease;
    position: relative;
    z-index: 2;
}

.hero-image {
    margin-bottom: 3rem;
}

.hero-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.book-cover {
    margin-bottom: 3rem;
    display: none;
}

.book-cover img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.book-cover img:hover {
    transform: scale(1.05);
}

.hero-title {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--light-gray);
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-author {
    font-size: 1rem;
    color: var(--light-gray);
    margin-bottom: 3rem;
    font-weight: 300;
    opacity: 0.8;
}

.hero-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Offering Section */
.offering {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--dark-gray);
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    justify-items: center;
}

.card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-green);
    max-width: 400px;
    width: 100%;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.card p {
    margin-bottom: 2rem;
    color: var(--light-gray);
    line-height: 1.8;
}

.price {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.price span {
    font-size: 1rem;
    color: var(--light-gray);
}

/* About Section */
.about {
    background: var(--off-white);
    padding: 6rem 2rem;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-green);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    align-items: center;
}

.author-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-image img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.author-image img:hover {
    transform: scale(1.05);
}

.author-text h2 {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.author-text p {
    margin-bottom: 1.5rem;
    color: var(--light-gray);
}

.author-text blockquote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin: 2rem 0;
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary-green);
}

.author-text .quote-attribution {
    font-style: italic;
    color: var(--light-gray);
    margin-top: -1rem;
    margin-bottom: 1.5rem;
}

/* Social Media Section */
.social {
    padding: 4rem 2rem;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--dark-gray);
    color: var(--dark-gray);
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    outline: none;
}

.social-icon:hover {
    background: var(--accent-green);
    border-color: var(--accent-green);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: var(--primary-green);
    padding: 3rem 2rem;
    text-align: center;
}

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

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--light-gray);
}

.footer-contact {
    margin-bottom: 2rem;
}

.footer-contact a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--light-gray);
}

.footer-copyright {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.lotus-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 0;
}

.lotus-divider img {
    max-width: 100px;
    height: auto;
    opacity: 0.7;
}

/* Lightbox Modal (for images only) */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.image-lightbox-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: transparent;
    position: relative;
}

.image-lightbox-content img {
    width: min(80vw, 80vh);
    height: min(80vw, 80vh);
    object-fit: cover;
    border-radius: 50%;
    max-width: 600px;
    max-height: 600px;
    position: relative;
    z-index: 1;
    aspect-ratio: 1/1;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox.active.image-mode .lightbox-content {
    background: transparent;
    padding: 0;
    max-width: 100%;
    width: 100%;
    height: 100%;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--light-gray);
    transition: color 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    color: var(--dark-gray);
}

.lightbox.active.image-mode .lightbox-close {
    color: white;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 2rem;
    right: 2rem;
}

.lightbox.active.image-mode .lightbox-close:hover {
    color: white;
    background: rgba(0, 0, 0, 0.7);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background: var(--off-white);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1500;
    padding: 2rem;
}

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

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--dark-gray);
    transition: color 0.3s ease;
    z-index: 10;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    outline: none;
}

.mobile-menu-close:hover {
    color: var(--light-gray);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--dark-gray);
    font-size: 1.1rem;
    font-weight: 300;
    transition: color 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    outline: none;
}

.mobile-nav a:hover {
    color: var(--accent-green);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu-lotus {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    opacity: 0.9;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        padding: 1rem;
    }

    .nav-menu {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        margin-top: 60px;
        padding: 4rem 1rem 2rem;
        min-height: calc(100vh - 60px);
        overflow: hidden;
    }

    .lotus-background {
        display: block;
    }

    .lotus-background img {
        width: 150%;
        height: auto;
        object-fit: contain;
        position: absolute;
        left: 50%;
        bottom: -30%;
        transform: translateX(-50%);
        z-index: 1;
    }

    .hero-image {
        display: none;
    }

    .book-cover {
        display: block;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-large {
        width: 200px;
    }

    .cards-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .author-image {
        order: -1;
    }

    .social-icons {
        gap: 1rem;
    }

    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 1rem 2rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .book-cover img {
        max-width: 320px;
    }

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