:root {
    --bkbb-purple: #41147d;
}

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

.debug-container {
    border: 1px solid red;
    display: none;
}

body {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', sans-serif;
    background-color: white;
}

.body-container {
    padding: 50px;
    background-color: white;
    color: darkgrey;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h3 {
    color: darkgray;
    padding-bottom: 10px;
}

.body-container-card.active {
    display: block;
}

.body-container-card {
    display: none;
    padding: 10px;
    margin: 10px;
}

.body-container-card-section {
    border: 1px solid lightgrey;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    color: darkgray;

}

.body-container-card-section-text {
    display: block;
    text-align: center;
}

#services-screen {
    text-align: center;
}


.app-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.app-icon img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
}

.book-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.book-icon img {
    max-width: 200px;
    border-radius: 10px;
}

.divider {
    width: 90vw;
    height: 2px;
    background: var(--bkbb-purple);
    margin: 0 auto 10px;
}

.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    width: 100%;
}

.header-top {
    text-align: center;
}

.header-top img {
    max-width: 100%;
    height: auto;
}

.navbar {
    display: flex;
    justify-content: center;
    padding: 4px;
    width: 100%;
    background-color: var(--bkbb-purple);
    color: white;
    letter-spacing: 0.1em;
    font-weight: bold;
    text-transform: uppercase;

}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.navbar li {
    float: left;
}

.navbar li a {
    display: block;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    color: darkgrey;
    font-size: 1.2em;
}

.navbar li a:hover {
    color: white;
}

.navbar li a.active-nav {
    color: white;
}

.footer {
    background-color: white;
    color: darkgrey;
    text-align: center;

}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-social {
    margin-bottom: 15px;
}

.footer-social a {
    text-decoration: none;
    margin: 0 12px;
    font-size: 14px;
    color: var(--bkbb-purple);
}

.footer-social a:hover {
    text-decoration: underline;
    color: grey;

}

.footer-copy {
    font-size: 13px;
    color: #aaa;
    padding-bottom: 10px;
}

/* Contact Form Styles */
.contact-form {
    max-width: 500px;
    margin: 30px auto;
    padding: 30px;
    background: #fcfcfc;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--bkbb-purple);
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bkbb-purple);
    box-shadow: 0 0 0 3px rgba(65, 20, 125, 0.2);
}

.submit-btn {
    background-color: var(--bkbb-purple);
    color: white;
    border: none;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s, transform 0.1s;
}

.submit-btn:hover {
    background-color: #551c9d;
}

.submit-btn:active {
    transform: scale(0.98);
}