/* PTW Website - Main Stylesheet */

/* ===== GLOBAL RESPONSIVE SAFETY ===== */
html,
body {
    overflow-x: hidden;
    /* Prevent horizontal scroll globally */
    width: 100%;
    -webkit-text-size-adjust: 100%;
    /* Prevent iOS text inflation */
}

/* Prevent media from overflowing */
img,
video,
iframe,
canvas,
svg {
    max-width: 100%;
    height: auto;
    display: block;
    /* remove bottom margin from inline images */
}

/* Ensure text wraps */
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a {
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: 100%;
}

/* Better touch targets */
button,
a,
input,
select,
textarea {
    touch-action: manipulation;
}

/* ===== ROOT & BASE STYLES ===== */
:root {
    --ptw-gold: #D9A536;
    --ptw-gold-light: #f5cc70;
    --ptw-gold-dark: #B8892A;
    --ptw-blue: #2196F3;
    --ptw-blue-light: #64B5F6;
    --ptw-blue-dark: #1976D2;
    --ptw-black: #121212;
    --ptw-dark: #1a1a1a;
    --ptw-dark-light: #2a2a2a;
    --ptw-grey: #E6E6E6;
    --ptw-white: #ffffff;
}

body {
    background-color: var(--ptw-black);
    color: var(--ptw-white);
    font-family: 'Outfit', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(135deg, var(--ptw-gold), var(--ptw-gold-light));
}

.text-gradient-gold {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(135deg, var(--ptw-gold), var(--ptw-gold-light));
}

.text-gradient-blue {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(135deg, var(--ptw-blue), var(--ptw-blue-light));
}

.text-gradient-mixed {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(135deg, var(--ptw-blue), var(--ptw-gold));
}

/* ===== GLASSMORPHISM ===== */
.glass-dark {
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-light {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* ===== NAVIGATION ===== */
.nav-scrolled {
    background-color: rgba(18, 18, 18, 0.95) !important;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(217, 165, 54, 0.2) !important;
}

/* ===== ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.animate-on-scroll.active {
    opacity: 1;
    transform: translateY(0) !important;
    transform: translateX(0) !important;
}

.slide-up {
    transform: translateY(40px);
}

.slide-left {
    transform: translateX(-40px);
}

.slide-right {
    transform: translateX(40px);
}

.zoom-reveal {
    transform: scale(0.9);
}

.zoom-reveal.active {
    transform: scale(1);
}

/* Float Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes float-reverse {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(20px);
    }
}

@keyframes pulse-slow {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.animate-float {
    animation: float 8s ease-in-out infinite;
}

.animate-float-reverse {
    animation: float-reverse 8s ease-in-out infinite;
}

.animate-pulse-slow {
    animation: pulse-slow 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ===== BUTTONS ===== */
.btn-gold {
    background: linear-gradient(135deg, var(--ptw-gold), var(--ptw-gold-light));
    color: var(--ptw-black);
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    box-shadow: 0 0 30px -5px rgba(217, 165, 54, 0.6);
    transform: translateY(-2px);
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--ptw-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--ptw-gold), var(--ptw-gold-dark));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--ptw-gold-light);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--ptw-gold) var(--ptw-dark);
}

/* ===== GALLERY ===== */
.gallery-item {
    transition: all 0.5s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item:hover img {
    filter: brightness(1.1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 100;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

/* ===== DONATION TIERS ===== */
.donation-tier {
    transition: all 0.3s ease;
}

.donation-tier:hover {
    transform: translateY(-8px);
}

.donation-tier.selected {
    border-color: var(--ptw-gold);
    box-shadow: 0 0 30px -5px rgba(217, 165, 54, 0.4);
}

/* ===== BLOB SHAPE ===== */
.blob-shape {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

/* ===== FORM ELEMENTS ===== */
input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--ptw-gold) !important;
}

/* ===== SHADOW UTILITIES ===== */
.shadow-glow-gold {
    box-shadow: 0 0 30px -5px rgba(217, 165, 54, 0.6);
}

.shadow-glow-blue {
    box-shadow: 0 0 30px -5px rgba(33, 150, 243, 0.6);
}

/* ===== DELAY UTILITIES ===== */
.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.delay-400 {
    transition-delay: 400ms;
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-to-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--ptw-gold), var(--ptw-gold-light));
    color: var(--ptw-black);
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(217, 165, 54, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease, box-shadow 0.3s ease;
}

.scroll-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top-btn:hover {
    box-shadow: 0 0 30px rgba(217, 165, 54, 0.7);
    transform: translateY(-3px);
}

.scroll-to-top-btn:active {
    transform: translateY(0) scale(0.95);
}

/* Pulse ring effect on hover */
.scroll-to-top-btn::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--ptw-gold);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: scale(0.9);
}

.scroll-to-top-btn:hover::after {
    opacity: 0.5;
    transform: scale(1);
}

/* ===== FOOTER ACCREDITATION LOGOS ===== */
.footer-accreditation-logo {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.footer-accreditation-logo:hover {
    transform: scale(1.1) translateY(-4px);
}

/* ===== MOBILE RESPONSIVE STYLES ===== */

/* Mobile Navigation Improvements */
@media (max-width: 767px) {

    /* Touch-friendly tap targets */
    nav a,
    button,
    .service-card,
    .donation-tier {
        min-height: 44px;
        min-width: 44px;
    }

    /* Improved mobile navigation */
    #mobile-menu {
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    #mobile-menu a {
        padding: 12px 0;
        font-size: 1.1rem;
    }

    /* Mobile hero adjustments */
    .hero-section h1,
    header h1 {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }

    /* Reduce padding on mobile */
    section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Mobile card improvements */
    .service-card,
    .donation-tier {
        padding: 1.25rem;
    }

    /* Smaller gaps on mobile */
    .grid {
        gap: 1rem;
    }

    /* Form improvements */
    input,
    textarea,
    select {
        font-size: 16px !important;
        /* Prevents zoom on iOS */
        padding: 14px 16px;
    }

    /* Footer mobile layout */
    footer .grid {
        gap: 2rem;
    }

    footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Accreditation logos on mobile */
    .footer-accreditation-logo {
        height: 40px !important;
    }

    /* Scroll-to-top button smaller on mobile */
    .scroll-to-top-btn {
        width: 42px;
        height: 42px;
        bottom: 1.25rem;
        right: 1.25rem;
        font-size: 0.95rem;
    }

    /* Step indicator adjustments */
    .step-indicator {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }

    /* Quote/decorative elements */
    .animate-float,
    .animate-float-reverse {
        animation: none;
        /* Reduce motion on mobile for performance */
    }

    /* Better button sizing on mobile */
    .btn-gold,
    button[type="submit"] {
        width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
    }

    /* Prevent images from overflowing */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Prevent any element from causing horizontal scroll */
    .max-w-7xl,
    .max-w-6xl,
    .max-w-5xl,
    .max-w-4xl,
    .max-w-3xl {
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Fix text overflow on mobile */
    h1,
    h2,
    h3,
    h4,
    p {
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    /* Improve table/wide content scrolling */
    pre,
    table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Small mobile devices (phones) */
@media (max-width: 480px) {

    /* Even smaller hero text */
    header h1 {
        font-size: 2rem !important;
    }

    header p,
    section p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Stack buttons vertically */
    .flex-wrap {
        flex-direction: column;
        gap: 0.75rem;
    }

    .flex-wrap>* {
        width: 100%;
        text-align: center;
    }

    /* Keep accreditation logos in a wrapping row, not a column */
    footer .flex-wrap {
        flex-direction: row;
        gap: 1rem;
    }

    footer .flex-wrap>* {
        width: auto;
    }

    /* Reduce border radius on small screens */
    .rounded-3xl {
        border-radius: 1rem;
    }

    .rounded-2xl {
        border-radius: 0.75rem;
    }

    /* Hide decorative elements */
    .blob-shape,
    .animate-pulse-slow {
        display: none;
    }

    /* Compact cards */
    .service-card,
    .donation-tier {
        padding: 1rem;
    }

    /* Smaller icons */
    .w-14.h-14 {
        width: 48px !important;
        height: 48px !important;
    }

    .w-16.h-16 {
        width: 48px !important;
        height: 48px !important;
    }

    /* Gallery adjustments */
    .gallery-item {
        height: 150px;
    }

    .gallery-item img {
        height: 100%;
    }

    /* Accreditation logos on small phones */
    .footer-accreditation-logo {
        height: 32px !important;
    }

    /* Reduce footer section padding */
    footer {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    /* Scroll-to-top even smaller */
    .scroll-to-top-btn {
        width: 38px;
        height: 38px;
        bottom: 1rem;
        right: 1rem;
        font-size: 0.85rem;
    }

    /* Compact navigation */
    nav {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    /* Section title scaling */
    .text-4xl {
        font-size: 1.75rem !important;
    }

    .text-3xl {
        font-size: 1.5rem !important;
    }

    .text-2xl {
        font-size: 1.25rem !important;
    }
}

/* Tablet optimizations */
@media (min-width: 768px) and (max-width: 1023px) {

    /* Two-column grids for tablets */
    .grid.md\:grid-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Adjusted spacing */
    section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

/* Landscape mobile optimization */
@media (max-height: 500px) and (orientation: landscape) {

    /* Reduce hero height */
    header {
        min-height: auto;
        padding-top: 5rem;
        padding-bottom: 3rem;
    }

    /* Hide floating elements in landscape */
    .animate-float,
    .animate-float-reverse,
    .blob-shape {
        display: none;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {

    /* Disable hover effects that don't work on touch */
    .gallery-item:hover {
        transform: none;
    }

    .donation-tier:hover {
        transform: none;
    }

    /* Always show hover states for service cards */
    .service-card .check-icon {
        display: none;
    }

    .service-card.selected .check-icon {
        display: flex !important;
    }

    /* Disable hover animation on touch for accreditation logos */
    .footer-accreditation-logo:hover {
        transform: none;
    }

    /* Disable hover on scroll-to-top for touch */
    .scroll-to-top-btn:hover {
        transform: translateY(0);
        box-shadow: 0 4px 20px rgba(217, 165, 54, 0.4);
    }
}

/* Improved focus states for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--ptw-gold);
    outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none !important;
    }
}

/* Safe area insets for notched devices */
@supports (padding: max(0px)) {
    body {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }

    nav {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {

    .text-gradient,
    .text-gradient-gold,
    .text-gradient-blue {
        -webkit-text-fill-color: var(--ptw-gold);
        background: none;
    }

    .border-white\/10,
    .border-white\/20 {
        border-color: rgba(255, 255, 255, 0.5);
    }
}

/* ========================================= */
/*      STYLES MIGRATED FROM HTML FILES      */
/* ========================================= */

/* --- From contact.html (Toast & Booking Form) --- */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.toast {
    pointer-events: all;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    min-width: 320px;
    max-width: 420px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    animation: toastSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Outfit', sans-serif;
}

.toast.hiding {
    animation: toastSlideOut 0.35s cubic-bezier(0.7, 0, 0.84, 0) forwards;
}

.toast-error {
    background: rgba(220, 38, 38, 0.15);
    border-color: rgba(220, 38, 38, 0.3);
}

.toast-warning {
    background: rgba(217, 165, 54, 0.15);
    border-color: rgba(217, 165, 54, 0.3);
}

.toast-success {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
}

.toast-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.toast-error .toast-icon {
    background: rgba(220, 38, 38, 0.2);
    color: #f87171;
}

.toast-warning .toast-icon {
    background: rgba(217, 165, 54, 0.2);
    color: #D9A536;
}

.toast-success .toast-icon {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

.toast-body {
    flex: 1;
    min-width: 0;
}

.toast-title {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.toast-error .toast-title {
    color: #f87171;
}

.toast-warning .toast-title {
    color: #D9A536;
}

.toast-success .toast-title {
    color: #4ade80;
}

.toast-message {
    color: #d1d5db;
    font-size: 0.825rem;
    line-height: 1.4;
}

.toast-close {
    flex-shrink: 0;
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 4px;
    font-size: 14px;
    transition: color 0.2s;
    margin-top: -2px;
}

.toast-close:hover {
    color: white;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 3px;
    border-radius: 3px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
}

.toast-progress-bar {
    height: 100%;
    border-radius: 3px;
    animation: toastProgress var(--toast-duration, 5s) linear forwards;
}

.toast-error .toast-progress-bar {
    background: #f87171;
}

.toast-warning .toast-progress-bar {
    background: #D9A536;
}

.toast-success .toast-progress-bar {
    background: #4ade80;
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(100px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes toastSlideOut {
    from {
        opacity: 1;
        transform: translateX(0) scale(1);
    }

    to {
        opacity: 0;
        transform: translateX(100px) scale(0.95);
    }
}

@keyframes toastProgress {
    from {
        width: 100%;
    }

    to {
        width: 0%;
    }
}

@media (max-width: 480px) {
    .toast-container {
        left: 12px;
        right: 12px;
        top: 90px;
    }

    .toast {
        min-width: unset;
        max-width: unset;
    }
}

/* Booking Form Styles */
.step-indicator {
    transition: all 0.3s ease;
}

.step-indicator.active {
    background: linear-gradient(135deg, #D9A536, #f5cc70);
    color: #121212;
    transform: scale(1.1);
}

.step-indicator.completed {
    background: #22c55e;
    color: white;
}

.step-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.step-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: #D9A536;
}

.service-card.selected {
    border-color: #D9A536;
    background: rgba(217, 165, 54, 0.1);
}

.service-card.selected .check-icon {
    display: flex;
}

.time-slot {
    transition: all 0.2s ease;
    cursor: pointer;
}

.time-slot:hover:not(.unavailable) {
    border-color: #D9A536;
    background: rgba(217, 165, 54, 0.1);
}

.time-slot.selected {
    background: linear-gradient(135deg, #D9A536, #f5cc70);
    color: #121212;
    border-color: transparent;
}

.time-slot.unavailable {
    opacity: 0.4;
    cursor: not-allowed;
}

@media (max-width: 767px) {
    .step-indicator {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    #line-1-2,
    #line-2-3,
    #line-3-4 {
        width: 2rem;
    }

    .service-card {
        padding: 1rem;
    }

    .service-card .w-14 {
        width: 40px;
        height: 40px;
    }

    .service-card h3 {
        font-size: 1rem;
    }

    .service-card p {
        font-size: 0.8rem;
    }

    .time-slot {
        padding: 0.75rem;
        font-size: 0.875rem;
    }

    .step-content h2 {
        font-size: 1.5rem;
    }

    #prev-btn,
    #next-btn,
    #submit-btn {
        padding: 14px 20px;
        font-size: 1rem;
    }

    .text-center.p-6 {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .step-indicator {
        width: 28px;
        height: 28px;
    }

    #line-1-2,
    #line-2-3,
    #line-3-4 {
        width: 1.5rem;
    }

    .service-card {
        padding: 0.875rem;
    }

    .time-slot {
        padding: 0.5rem;
    }
}

/* --- From gallery.html --- */
@media (max-width: 767px) {
    #gallery-grid.grid.lg\:grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.lg\:col-span-2 {
        grid-column: span 1;
    }

    .gallery-item {
        height: 180px;
    }
}

@media (max-width: 480px) {
    #gallery-grid.grid.grid-cols-2 {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 200px;
    }
}

/* --- From index.html --- */
/* Fallback Logo Style */
.logo-fallback {
    display: none;
}

img[src="logo.jpg"][style*="display: none"]+.logo-fallback {
    display: flex;
}

@media (max-width: 767px) {
    header {
        min-height: auto;
        padding-top: 6rem;
        padding-bottom: 3rem;
    }

    header .grid {
        gap: 2rem;
    }

    #mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        padding: 0;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
    }

    #mobile-menu-btn:hover {
        background: rgba(217, 165, 54, 0.1);
        border-color: var(--ptw-gold);
        color: var(--ptw-gold);
    }

    .animate-float-reverse.max-w-xs {
        display: none;
    }

    .absolute.w-48 {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 2rem !important;
        line-height: 1.2;
    }

    nav.py-4 {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    nav img.h-16 {
        height: 48px;
    }
}

/* --- From donation.html --- */
@media (max-width: 767px) {
    .donation-tier {
        padding: 1rem;
    }

    .p-10 {
        padding: 1.5rem;
    }

    .grid.md\:grid-cols-3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    input.text-3xl {
        font-size: 1.5rem;
    }

    button.px-12 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}