<!--
  Minimal plain CSS for the deMayoWeb static site.
  Tailwind-style utility classes recreated as standard classes for clarity and portability.
-->

:root {
    --off-white: #f4f4f4;
    --off-black: #333333;
    --green-primary: #2f9b76;
    --green-light: #a1d5a8;
    --green-dark: #1a6d4a;
    --black: #000000;
    --white: #ffffff;
    --gray-300: #d1d5db;
    --gray-800: #1f2937;
    --red-500: #ef4444;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--off-white);
    color: var(--off-black);
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

/* Layout helpers */
.container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 1rem;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.z-10 {
    z-index: 10;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.hidden {
    display: none;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.mx-auto {
    margin-inline: auto;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.w-full {
    width: 100%;
}

.w-60 {
    width: 15rem;
}

.h-60 {
    height: 15rem;
}

.h-60 {
    height: 15rem;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.border {
    border-width: 1px;
    border-style: solid;
    border-color: var(--gray-300);
}

.border-4 {
    border-width: 4px;
    border-style: solid;
}

.border-green-primary {
    border-color: var(--green-primary);
}

.bg-cover {
    background-size: cover;
}

.bg-center {
    background-position: center;
}

.opacity-60 {
    opacity: 0.6;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.px-6 {
    padding-inline: 1.5rem;
}

.px-8 {
    padding-inline: 2rem;
}

.py-3 {
    padding-block: 0.75rem;
}

.py-6 {
    padding-block: 1.5rem;
}

.py-16 {
    padding-block: 4rem;
}

.py-20 {
    padding-block: 5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.space-x-6 > * + * {
    margin-left: 1.5rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

/* Typography */
.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

/* Colors */
.text-white {
    color: var(--white);
}

.text-black {
    color: var(--black);
}

.text-off-white {
    color: var(--off-white);
}

.text-off-black {
    color: var(--off-black);
}

.text-green-primary {
    color: var(--green-primary);
}

.text-green-light {
    color: var(--green-light);
}

.text-red-500 {
    color: var(--red-500);
}

.bg-white {
    background-color: var(--white);
}

.bg-black {
    background-color: var(--black);
}

.bg-off-white {
    background-color: var(--off-white);
}

.bg-gray-800 {
    background-color: var(--gray-800);
}

.bg-green-primary {
    background-color: var(--green-primary);
}

.bg-green-dark {
    background-color: var(--green-dark);
}

.hover\:text-green-light:hover {
    color: var(--green-light);
}

.hover\:bg-green-light:hover {
    background-color: var(--green-light);
}

/* Grid */
.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.gap-12 {
    gap: 3rem;
}

/* Components */
.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.hover\:shadow-xl:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.transition-shadow {
    transition-property: box-shadow;
    transition-timing-function: ease;
    transition-duration: 0.15s;
}

input,
textarea {
    font-family: inherit;
    font-size: 1rem;
}

input:focus,
textarea:focus {
    outline: 2px solid var(--green-primary);
    outline-offset: 2px;
}

/* Responsive */
@media (min-width: 768px) {
    .md\:flex {
        display: flex;
    }

    .md\:hidden {
        display: none;
    }

    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .text-5xl {
        font-size: 2.25rem;
    }

    .text-4xl {
        font-size: 1.875rem;
    }
}
