/* =========================================================
   CONTACT US PAGE — LIGHT THEME + PERFECT ALIGNMENT
   Comic Sans + Brown text + Cream UI
========================================================= */

/* ==== GLOBAL BACKGROUND ==== */
body {
    background-color: #fdef98; /* Light cream */
    font-family: 'Comic Neue', 'Comic Sans';
    color: #5d3301;
    margin: 0;
    padding: 0;
}
 
/* ==== FADE-IN ANIMATION ==== */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==== MAIN PAGE CONTAINER ==== */
.contact-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    animation: fadeUp 1s ease-out;
}

/* ==== PAGE TITLE ==== */
.page-title {
    text-align: center;
    color: #734100;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* ==== FLEX LAYOUT ==== */
.contact-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

/* Shared Box Design (Left + Right Same) */
.contact-info,
.contact-form-box {
    flex: 1;
    min-width: 300px;
    background: #fff2c2; /* Soft light cream (fixed) */
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.10);
    animation: fadeUp 1s ease-out;
    box-sizing: border-box;
}

/* ==== LEFT BOX ==== */
.contact-info h2 {
    color: #714000;
    margin-bottom: 15px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.contact-info ul li {
    margin-bottom: 12px;
    font-size: 16px;
}

/* ==== RIGHT BOX / FORM ==== */
.contact-form-box h2 {
    color: #8b4e00;
    margin-bottom: 20px;
}

/* Input + Textarea */
.contact-form-box form input,
.contact-form-box form textarea {
    width: 100%;
    background: #fffdf4; /* Matches box tone perfectly */
    border: 1px solid #d1b079;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    color: #5a3e1b;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
}

/* Focus Effect */
.contact-form-box form input:focus,
.contact-form-box form textarea:focus {
    border-color: #d4963a;
    box-shadow: 0 0 8px rgba(212, 150, 58, 0.45);
}

/* Button */
.contact-form-box form button {
    width: 100%;
    background: #f39f05;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    color: #fff;
    transition: 0.25s;
}

.contact-form-box form button:hover {
    background: #ea830e;
}

/* ==== MOBILE FIX ==== */
@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
    }
}
/* ==== ACTION BUTTONS ==== */
.action-btn {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
    padding: 13px;
    margin: 0 auto 15px auto;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    transition: 0.25s;
}

/* Email Button */
.email-btn {
    background: #f88d01;
    color: #fff;
}

.email-btn:hover {
    background: #c66b02;
}

/* Map Button stage 1
.map-btn {
    background: #fef434;
    color: #7f4601;
}

.map-btn:hover {
    background: #ceb601;
}*/

/* Map / Google Button */
.map-btn {
    background: #ffffff;      /* white */
    color: #5d3301;           /* dark brown text */
    border: 1px solid #d1b079;
}

.map-btn:hover {
    background: #eeeeee;      /* light grey on hover */
}

.xr-btn {
    display: block;
    width: 100%;
    padding: 13px;           /* same as Send Email */
    background: #ffffff;     /* white default */
    color: #5d3301;          /* dark brown text */
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;         /* match Send Email */
    border-radius: 10px;
    border: 1px solid #ccc;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    transition: 0.25s;
    cursor: pointer;
}

.xr-btn:hover,
.xr-btn:focus {
    background: #f2f2f2;     /* light silver shade */
    box-shadow: 0 5px 8px rgba(0,0,0,0.15);
    color: #5d3301;          /* keep text dark brown */
    text-decoration: none;
}

.contact-form-box {
    padding: 30px 28px;
}
/*fontload*/
.cursive {
    font-family: 'Dancing Script', cursive;
}
/*for mini logos*/
.btn-icon {
    width: 14px;       /* fixed size */
    height: 18px;
    margin-right: 0px; /* space between icon & text */
    flex-shrink: 0;    /* prevents image from shrinking or stretching weirdly */
}
.btn-icon1 {
    width: 16px;          /* adjust for square */
    height: 16px;
    margin-right: 0px;
    flex-shrink: 0;       /* keep size fixed */
}
.btn-icon2 {
    width: 22px;          /* adjust for square */
    height: 21px;
    margin-right: 0px;
    flex-shrink: 0;       /* keep size fixed */
}
.btn-icon, .btn-icon1, .btn-icon2 {
    flex-shrink: 0;
    vertical-align: middle; /* this will ground the icon next to text */
}


