@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700&display=swap");

body {
    font-family: "Heebo", sans-serif;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-button.active {
    background: #7c5a66;
    color: white;
    transform: translateY(-2px);
}

.lotus-icon {
    width: 40px;
    height: 40px;
}

.whatsapp-link {
    transition: transform 0.2s ease;
}

.whatsapp-link:hover {
    transform: scale(1.1);
}

/* Mobile Responsiveness Improvements */
@media (max-width: 768px) {
    /* Header adjustments */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Navigation tabs - make them smaller and wrap better */
    nav .flex {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }

    nav .tab-button {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        white-space: nowrap;
    }

    /* Main content adjustments */
    main {
        padding: 1rem;
    }

    /* Card padding adjustments */
    .p-8 {
        padding: 1.5rem !important;
    }

    .p-12 {
        padding: 2rem !important;
    }

    /* Text sizing for mobile */
    .text-3xl {
        font-size: 1.75rem !important;
    }

    .text-2xl {
        font-size: 1.5rem !important;
    }

    /* Grid adjustments */
    .grid.md\\:grid-cols-2 {
        grid-template-columns: 1fr;
    }

    .grid.md\\:grid-cols-3 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Image adjustments */
    img.max-w-md {
        max-width: 100% !important;
    }

    /* Form adjustments */
    .flex.md\\:flex-row {
        flex-direction: column !important;
    }

    /* Contact form grid */
    .grid.md\\:grid-cols-2 {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Modal adjustments */
    .max-w-2xl,
    .max-w-4xl {
        max-width: 90% !important;
        margin: 0 1rem;
    }

    /* Header title adjustments */
    #site-title {
        font-size: 1.25rem !important;
        line-height: 1.3;
    }

    /* Navigation spacing */
    .space-x-2 > * + * {
        margin-right: 0.25rem !important;
    }

    /* Button adjustments */
    .transform.hover\\:scale-105:hover {
        transform: none !important;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    nav .tab-button {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
    }

    .p-8 {
        padding: 1rem !important;
    }

    .text-3xl {
        font-size: 1.5rem !important;
    }

    #site-title {
        font-size: 1rem !important;
    }

    /* Stack header elements */
    header .flex {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    /* Adjust WhatsApp contact */
    .flex.items-center.gap-2 {
        justify-content: center;
    }
}
