/* START OF FILE css/base.css */

/* Basic Reset & Body Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    /* Apply the gradient background */
    background: linear-gradient(to bottom, var(--bg-gradient-start), var(--bg-gradient-end));
    color: var(--text-light); /* Default text is white */
    line-height: 1.6;
    font-size: 16px;
    min-height: 100vh; /* Ensure gradient covers full height */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px; /* Increased default padding slightly (like px-6) */
}

a {
    color: var(--primary-color); /* Yellow links */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color-dark);
    text-decoration: underline; /* Simple underline hover */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Headings */
h1, h2, h3, h4 {
    color: var(--text-light); /* White headings */
    margin-bottom: 0.75em;
    line-height: 1.3;
    font-weight: 600; /* Bolder headings */
}
h1 { font-size: 2rem; font-weight: 700; } /* ~text-2xl/3xl */
h2 { font-size: 1.5rem; } /* ~text-xl/2xl */
h3 { font-size: 1.125rem; } /* ~text-lg */
h4 { font-size: 1rem; font-weight: 600;}


/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    padding: 10px 24px; /* Adjusted padding */
    cursor: pointer;
    border-radius: 9999px; /* Pill shape */
    font-size: 0.95em; /* Slightly smaller base size */
    font-weight: 600; /* Bolder buttons */
    transition: background-color 0.2s ease, color 0.2s ease;
    text-align: center;
    white-space: nowrap;
}
.btn i {
    font-size: 1em;
}

.btn-primary { /* Yellow button */
    background-color: var(--primary-color);
    color: var(--text-dark); /* Black text on yellow */
}
.btn-primary:hover {
    background-color: var(--primary-color-dark);
    color: var(--text-dark);
}

.btn-secondary { /* White button */
    background-color: var(--white);
    color: var(--text-dark); /* Black text on white */
    border: 1px solid var(--border-color-light); /* Subtle border like Tailwind */
}
.btn-secondary:hover {
    background-color: #f9fafb; /* Slightly off-white hover */
    color: var(--text-dark);
}
.btn-full-width {
    width: 100%;
    display: flex;
}
.btn-lg {
    padding: 12px 32px;
    font-size: 1em;
}
button:disabled {
    opacity: 0.5; /* Tailwind uses opacity-50 */
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Responsive Base Adjustments */
@media (max-width: 480px) {
    /* CHANGE HERE: Increase base font size slightly for mobile */
    body { font-size: 1rem; } /* Was 15px, now default 16px or slightly more if needed */
    .container { padding: 0 16px; }
    h1 { font-size: 1.6rem; } /* Adjusted h1 slightly (was 1.6em) */
    h2 { font-size: 1.3rem; } /* Adjusted h2 slightly (was 1.3em) */
    /* Add other specific increases if needed, e.g., for buttons */
    .btn { font-size: 0.95rem; } /* Ensure buttons are readable */
}

/* END OF FILE css/base.css */