@font-face {
    font-family: 'Century Schoolbook Bold';
    src: url('SCHLBKB.TTF') format('truetype');
    font-weight: bold;
    font-style: normal;
}

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

body {
    font-family: 'Century Schoolbook Bold', serif;
    background-color: #f3eada;
    color: #3a2c1f;
    line-height: 1.5;
}

/* Header */
.header {
    font-family: 'Century Schoolbook Bold', serif;
    background-color: #fff;
    padding: 22px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Logo */
.logo-container .logo {
    max-width: 180px;
    height: auto;
}

/* Leaf Image */
.leaf-top-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 22vw;
    max-width: 220px;
    height: auto;
    z-index: 10;
    pointer-events: none;
    opacity: 0.2;
    transform: rotate(45deg);
}







.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 4rem;
    margin-top: 1rem;
    padding: 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.navbar a,
.dropbtn {
    padding: 1rem;
    margin: 0;
    text-decoration: none;
    color: #714b27;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1 rem;
    transition: background-color 0.3s ease;
}

.navbar a:hover,
.dropbtn:hover {
    background-color: #f4f4f4;
    border-radius: 5px;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    top: 100%;
    left: 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 99;
}

.dropdown-content a {
    padding: 0.8rem 1.2rem;
    display: block;
    color: #714b27;
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background-color: #f3eada;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown>a::after {
    content: ' ▼';
    /* arrow symbol */
    font-size: 0.7rem;
}



.navbar {
    display: flex;
    gap: 4rem;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 1rem;
}

.navbar a {
    text-decoration: none;
    color: #714b27;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1 rem;
}

/* Dropdown Base */
.dropdown {
    position: relative;
}

.dropbtn {
    padding: 0.8rem 2rem;
    text-decoration: none;
    color: #714b27;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1 rem;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 99;
}

.dropdown-content a {
    color: #714b27;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.85rem;
    text-align: center;
}

.dropdown-content a:hover {
    background-color: #f3eada;
}

.dropdown:hover .dropdown-content {
    display: block;
}



/* Hamburger */
.hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 1.5rem;
    z-index: 1001;
    color: #714b27;
}










/* Social Icons */
.social-icons {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 7px;
    z-index: 1000;
}

.social-icons img {
    width: 40px;
    height: 40px;
    cursor: pointer;
}

/* Contact Form Hero Section */
.hero-contact {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    background: url('contact.webp') no-repeat center center/cover;
}

.contact-form {
    background-color: transparent;
    padding: 10px;
    border-radius: 0px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    align-items: center;
    font-family: 'Century Schoolbook Bold', serif;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin: 10px 0;
    padding: 12px;
    background-color: #557C55;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 0px;
    resize: none;
    overflow: hidden;
    line-height: 1.6;
    font-family: 'Century Schoolbook Bold', serif;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: white;
}

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

.contact-form button {
    background-color: white;
    color: #557C55;
    border: none;
    padding: 12px 25px;
    margin-top: 10px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0px;
    transition: background 0.3s;
    align-items: center;
}

.contact-form button:hover {
    background-color: #ccc;
}

.faq-connector-line {
    position: absolute;
    width: 2px;
    height: 30px;
    background-color: #5e3e23;
    left: 50%;
    transform: translateX(-50%);
    top: 160px;
    transition: top 0.4s ease;
    z-index: 1;
}

/* FAQ Section */
.faq-section {
    background-color: white;
    font-family: 'Century Schoolbook Bold', serif;
}

.accordion {
    font-family: 'Century Schoolbook Bold', serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.accordion-item {
    background-color: #f9f1d6;
    margin-bottom: 10px;
    border: none;
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 18px 20px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: bold;
    color: #5c3b1d;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header:hover {
    background-color: #f2e6c3;
}

.accordion-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    font-size: 14px;
    color: #7a5527;
    background-color: #f9f1d6;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    padding: 15px 20px 20px;
}

.faq-heading-box {
    background-color: #6e4a2f;
    padding: 40px 20px 40px;
    color: #fff;
    text-align: center;
    position: relative;
}

.faq-heading-box h2 {
    font-family: 'Georgia', serif;
    font-size: 32px;
    margin: 10px 0;
}

.faq-heading-box h4 {
    font-size: 14px;
    letter-spacing: 2px;
    margin-top: 5px;
    font-weight: normal;
    text-transform: uppercase;
    color: #e8dccc;
}

.faq-bg-img {
    position: absolute;
    top: 0px;
    right: 10px;
    width: 160px;
    height: auto;
    opacity: 50;
    filter: brightness(5);
    z-index: 2;
    right: 15%;
}

/* Footer */
.footer {
    background-color: #ffffff;
    padding: 40px 20px 10px;
    border-top: 1px solid #ddd;
    color: #6c8c6b;
    position: relative;
    font-family: 'Century Schoolbook Bold', serif;
}

.footer h2 {
    text-align: center;
    font-family: serif;
    color: #a5513a;
    font-size: 2rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-left: 21rem;
}

.footer-left,
.footer-right {
    flex: 1;
    min-width: 250px;
}

.footer-left h3,
.footer-right h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #6c8c6b;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.footer-left p {
    color: #6c8c6b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-right p {
    color: #6c8c6b;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-right ul li {
    margin-bottom: 0.8rem;
}

.footer-right ul li a {
    text-decoration: none;
    color: #6c8c6b;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-right ul li a:hover {
    color: #4a6249;
}

.footer-leaf {
    position: absolute;
    bottom: 84px;
    right: 20px;
    width: 22vw;
    max-width: 220px;
    opacity: 0.2;
    pointer-events: none;
    transform: rotate(-90deg);
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 40px;
    padding: 20px 10px;
    border-top: 1px solid #ddd;
    font-size: 12px;
    line-height: 1.6;
    color: #6c8c6b;
    text-align: center;
}

.footer-bottom p {
    margin: 5px 0;
}

.footer-bottom a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
    color: #6c8c6b;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-bottom a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #6c8c6b;
    transition: width 0.3s ease;
}

.footer-bottom a:hover {
    color: #355c34;
}

.footer-bottom a:hover::after {
    width: 100%;
}

.footer-bottom .xl-logo {
    height: 30px;
    margin-right: 8px;
}

/* Scroll to Top Button */
#scrollToTopBtn {
    position: fixed;
    bottom: 2rem;
    right: 30px;
    z-index: 999;
    background-color: #714B27;
    border: none;
    outline: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#scrollToTopBtn img {
    width: 24px;
    height: 24px;
}

#scrollToTopBtn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}

/* Tablet Responsiveness (768px and below) */
@media (max-width: 768px) {
    .logo-container .logo {
        max-width: 120px;
        width: 100%;
    }

    .header {
        padding: 10px 0;
        text-align: center;
    }

    .leaf-top-left {
        width: 25vw;
        max-width: 160px;
        opacity: 0.25;
    }

    .hamburger {
        display: block;
    }

    .navbar {
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 1rem;
        display: none;
        position: absolute;
        top: 80px;
        right: 0;
        width: 100%;
        background-color: #fff;
        z-index: 999;
    }

    .navbar.active {
        display: flex;
    }

    .navbar a,
    .dropbtn {
        padding: 0.8rem 1.2rem;
        width: auto;
        text-align: center;
        font-size: 0.85rem;
    }

    .dropdown-content {
        position: relative;
        box-shadow: none;
        padding-left: 1rem;
    }

    .dropdown-content a {
        padding-left: 2rem;
    }

    .dropdown:hover .dropdown-content {
        display: none;
    }

    .dropdown.open .dropdown-content {
        display: block;
    }

    .social-icons {
        right: 10px;
        top: 50%;
        gap: 8px;
    }

    .social-icons img {
        width: 30px;
        height: 30px;
    }

    .hero-contact {
        padding: 60px 15px;
        flex-direction: column;
        min-height: 80vh;
    }

    .contact-form {
        max-width: 90%;
        padding: 20px 15px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 15px;
        padding: 10px;
    }

    .contact-form button {
        padding: 10px 20px;
        font-size: 15px;
    }

    .faq-connector-line {
        top: 140px;
        height: 25px;
    }

    .accordion {
        max-width: 90%;
        padding: 15px;
    }

    .accordion-header {
        font-size: 15px;
        padding: 16px 18px;
    }

    .accordion-icon {
        font-size: 16px;
    }

    .accordion-content {
        font-size: 13px;
        padding: 0 15px;
    }

    .accordion-item.active .accordion-content {
        padding: 12px 15px 16px;
    }

    .faq-heading-box {
        padding: 30px 15px;
    }

    .faq-heading-box h2 {
        font-size: 28px;
    }

    .faq-heading-box h4 {
        font-size: 13px;
    }

    .faq-bg-img {
        width: 130px;
        top: 10px;
        right: 10%;
        filter: brightness(3);
    }

    .footer {
        padding: 30px 15px 10px;
    }

    .footer h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
        padding: 0 10px;
        margin: 0 auto;
    }

    .footer-left,
    .footer-right {
        width: 100%;
        min-width: unset;
    }

    .footer-left p {
        padding: 0;
    }

    .footer-right ul {
        padding: 0;
    }

    .footer-right ul li {
        margin-bottom: 0.75rem;
    }

    .footer-leaf {
        width: 28vw;
        max-width: 160px;
    }

    .footer-bottom {
        font-size: 11px;
        padding: 15px 10px;
    }

    .footer-bottom .xl-logo {
        height: 24px;
    }

    .footer-bottom a::after {
        width: 100%;
    }

    #scrollToTopBtn {
        bottom: 1.5rem;
        right: 20px;
        width: 35px;
        height: 35px;
    }

    #scrollToTopBtn img {
        width: 20px;
        height: 20px;
    }
}

/* Mobile Responsiveness (480px and below) */
@media (max-width: 480px) {
    .logo-container .logo {
        max-width: 100px;
    }

    .header {
        padding: 8px 0;
    }

    .leaf-top-left {
        width: 45vw;
        max-width: 93px;
        opacity: 0.25;
    }

    .hamburger {
        font-size: 1.8rem;
        right: 1rem;
        top: 1rem;
    }

    .navbar {
        position: static;
        top: 86px;
        left: 7px;
        width: 95%;
        height: auto;
        padding: 1.5rem 1rem;
        gap: 0.5rem;
    }

    .navbar a,
    .dropbtn {
        font-size: 0.9rem;
        padding: 0.75rem 0;
        border-bottom: 2px solid #eee;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown>a::after {
        content: ' ▾';
        font-size: 0.8rem;
    }

    .dropdown-content {
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        display: none;
        flex-direction: column;
        padding-left: 1rem;
        width: 100%;
        z-index: 999;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .dropdown.open .dropdown-content {
        display: flex;
    }

    .dropdown-content a {
        font-size: 0.85rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid #eee;
    }

    .social-icons {
        gap: 8px;
        right: 10px;
        top: 250px;
    }

    .social-icons img {
        width: 28px;
        height: 28px;
    }

    .hero-contact {
        padding: 40px 10px;
        min-height: 50vh;
    }

    .contact-form {
        max-width: 95%;
        padding: 15px 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 14px;
        padding: 10px;
        margin: 8px 0;
    }

    .contact-form button {
        padding: 10px 18px;
        font-size: 14px;
    }

    .faq-connector-line {
        top: 130px;
        height: 20px;
    }

    .accordion {
        max-width: 95%;
        padding: 10px;
    }

    .accordion-header {
        font-size: 14px;
        padding: 14px 16px;
    }

    .accordion-icon {
        font-size: 15px;
    }

    .accordion-content {
        font-size: 12.5px;
        padding: 0 12px;
    }

    .accordion-item.active .accordion-content {
        padding: 10px 12px 14px;
    }

    .faq-heading-box {
        padding: 25px 12px;
    }

    .faq-heading-box h2 {
        font-size: 22px;
    }

    .faq-heading-box h4 {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .faq-bg-img {
        width: 60px;
        top: 8px;
        right: 8%;
        opacity: 0.3;
    }

    .footer {
        padding: 25px 10px 10px;
    }

    .footer h2 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .footer-content {
        gap: 1.5rem;
        padding: 0 5px;
        margin: 0 auto;
    }

    .footer-left p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    .footer-right ul li {
        margin-bottom: 0.6rem;
    }

    .footer-right ul li a {
        font-size: 0.9rem;
    }

    .footer-leaf {
        width: 35vw;
        max-width: 120px;
        right: 10px;
        bottom: 5px;
    }

    .footer-bottom {
        margin-top: 30px;
        padding: 15px 8px;
        font-size: 10px;
    }

    .footer-bottom .xl-logo {
        height: 20px;
        margin-right: 5px;
    }

    #scrollToTopBtn {
        bottom: 1rem;
        right: 15px;
        width: 35px;
        height: 35px;
    }

    #scrollToTopBtn img {
        width: 18px;
        height: 18px;
    }
}

/* Extra Small Mobile (320px) */
@media (max-width: 360px) {
    .logo-container .logo {
        max-width: 85px;
    }

    .header {
        padding: 6px 0;
    }

    .hamburger {
        font-size: 1.5rem;
        right: 0.8rem;
        top: 0.8rem;
    }

    .navbar {
        padding: 1rem 0.8rem;
        width: 98%;
    }

    .navbar a,
    .dropbtn {
        font-size: 0.85rem;
        padding: 0.65rem 0;
    }

    .social-icons {
        right: 8px;
        top: 220px;
        gap: 6px;
    }

    .social-icons img {
        width: 26px;
        height: 26px;
    }

    .hero-contact {
        padding: 30px 8px;
    }

    .contact-form {
        max-width: 98%;
        padding: 12px 8px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 13px;
        padding: 8px;
        margin: 6px 0;
    }

    .contact-form button {
        padding: 9px 16px;
        font-size: 13px;
    }

    .accordion {
        max-width: 98%;
        padding: 8px;
    }

    .accordion-header {
        font-size: 13px;
        padding: 12px 14px;
    }

    .accordion-content {
        font-size: 12px;
        padding: 0 10px;
    }

    .accordion-item.active .accordion-content {
        padding: 8px 10px 12px;
    }

    .faq-heading-box {
        padding: 20px 10px;
    }

    .faq-heading-box h2 {
        font-size: 20px;
    }

    .faq-heading-box h4 {
        font-size: 10px;
        letter-spacing: 0.5px;
    }

    .faq-bg-img {
        width: 50px;
        top: 6px;
        right: 5%;
    }

    .footer {
        padding: 20px 8px 10px;
    }

    .footer h2 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .footer-content {
        gap: 1.2rem;
        padding: 0;
        margin: 0 auto;
    }

    .footer-left p {
        font-size: 0.8rem;
        margin-bottom: 0.7rem;
    }

    .footer-right ul li {
        margin-bottom: 0.5rem;
    }

    .footer-right ul li a {
        font-size: 0.85rem;
    }

    .footer-bottom {
        margin-top: 25px;
        padding: 12px 6px;
        font-size: 9px;
    }

    .footer-bottom .xl-logo {
        height: 18px;
        margin-right: 4px;
    }

    #scrollToTopBtn {
        bottom: 0.8rem;
        right: 12px;
        width: 32px;
        height: 32px;
    }

    #scrollToTopBtn img {
        width: 16px;
        height: 16px;
    }
}