* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ========================================
   FONT FACE
   ======================================== */

@font-face {
    font-family: 'Bernhard Modern ICG';
    src: url('../fonts/bernhard-modern-icg-eng.eot');
    src: url('../fonts/bernhard-modern-icg-eng.eot?#iefix') format('embedded-opentype'),
         url('../fonts/BernhardModernICGEng.woff2') format('woff2'),
         url('../fonts/BernhardModernICGEng.woff') format('woff'),
         url('../fonts/bernhard-modern-icg-eng.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    
}

/* ========================================
   BODY - CREAM BACKGROUND
   ======================================== */

.body {
    background-color: #ebe7de;  /* <-- THIS IS THE CREAM COLOR */
    font-family: 'Bernhard Modern ICG', Arial, sans-serif;
    padding: 20px;             /* <-- ADDED: Breathing room */
    max-width: 1100px;         /* <-- ADDED: Prevents stretching */
    margin: 0 auto;            /* <-- ADDED: Centers the content */
    color: #2c2a26;            /* <-- ADDED: Dark text color */
    min-height: 100vh;
}

h1, h2, h3, p {
    font-family: 'Bernhard Modern ICG', Arial, sans-serif;
    font-weight: 700;
}

/* ========================================
   HEADER
   ======================================== */

.site-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 0;
}

.header-image {
    width: 100%;
    max-width: 1100px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
}

/* ========================================
   ACTION ROW
   ======================================== */

.action-row {
    display: flex;
    justify-content: center;
    gap: 15px;               /* <-- ADDED: Space between buttons */
    flex-wrap: wrap;
    margin: 30px 0;
}

.action-box {
    display: inline-block;
    background-color: #f8f9fa;
    color: #1a1a2e;
    padding: 12px 30px;
    border: 2px solid #d6cec0;  /* <-- CHANGED: Softer border to match cream */
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.action-box:hover {
    background-color: #e9ecef;
    border-color: #4a6cf7;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

/* ========================================
   DONATE BUTTON - MAKES IT STAND OUT
   ======================================== */

.action-box:last-child {
    background-color: #4a6cf7;
    color: #ffffff;
    border-color: #4a6cf7;
}

.action-box:last-child:hover {
    background-color: #3a5bd9;
    border-color: #3a5bd9;
}

/* ========================================
   RESPONSIVE FOR PHONES
   ======================================== */

@media (max-width: 600px) {
    body {
        padding: 15px;
    }

    .action-box {
        padding: 10px 20px;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }

}