:root {
    --primary-light: #aed7f3;
    --primary-dark: #21409a;
    --color-red: #ff5e5e;
    --color-yellow: #ffe66d;
    --color-green: #7bed9f;
    --color-purple: #c56cf0;
    --color-orange: #ffb347;
    --light-color: #d7ebff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', sans-serif;
}

body {
    background-color: var(--light-color);
    /* background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23aed7f3' fill-opacity='0.3'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); */
    color: #333;
    line-height: 1.6;
}



.floating-contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
}

.contact-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ff6b6b;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-5px) rotate(15deg);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.5);
}

.contact-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.contact-options.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.contact-option {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #546de5;
    font-size: 1.3rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-option:hover {
    background-color: #546de5;
    color: white;
    transform: scale(1.1);
}



.page-name-holder {
    display: none;
}


.phone-bar {
    display: none;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
}



nav {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 5px solid var(--color-yellow);
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0 0.5rem;
}

nav a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: bold;
    padding: 0.7rem 1.2rem;
    border-radius: 30px;
    transition: all 0.3s;
    display: inline-block;
    background-color: white;
    border: 3px solid var(--primary-light);
    box-shadow: 0 4px 0 var(--primary-dark);
    position: relative;
    top: 0;
}

nav a:hover, nav a.active {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    top: 2px;
    box-shadow: 0 2px 0 var(--primary-dark);
}




footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: white;
    text-align: center;
    padding: 5rem 0 1rem 0;
    position: relative;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,192L48,197.3C96,203,192,213,288,234.7C384,256,480,288,576,277.3C672,267,768,213,864,197.3C960,181,1056,203,1152,213.3C1248,224,1344,224,1392,224L1440,224L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
}

.footer-section p {
    margin-bottom: 0.8rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: white;
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
    font-weight: bold;
}

.social-icons a:hover {
    transform: translateY(-5px) rotate(10deg);
    background-color: var(--color-yellow);
}

.copyright {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px dashed rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.footer-logo img {
    max-width: 50%;
    margin: -10px;
    padding: 0px;
    align-self: center;
    position: flex;
}

.footer-logo {
    align-items: center;
}

.shortcuts {
    text-align: center;
    background-color: var(--primary-light);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 20px auto;
}

.shortcuts h1 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.shortcuts a {
    display: block;
    padding: 10px;
    font-size: 1rem;
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease-in-out;
}

.shortcuts a:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
}




@media (max-width: 600px) {
    .shortcuts {
        width: 90%;
        padding: 15px;
    }

    .shortcuts a {
        padding: 8px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .phone-bar {
        width: 100%;
        height: auto;
        position: sticky;
        top: -40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: white;
        padding: 15px 0;
        border-radius: 30px;
        border: 3px solid var(--primary-light);
        box-shadow: 0 4px 0 var(--primary-dark);
        z-index: 101;
    }
    
    .phone-bar a {
        margin-top: 25px;
        padding: 10px 25px;
        width: 40%;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50px;
        background-color: white;
        transition: all 0.1s ease-in-out;
    }
    
    .phone-bar a:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
        background-color: rgba(255, 255, 255, 0.9);
    }
    
    .phone-bar img {
        padding: 0;
        width: 100%;
        height: auto;
        transition: transform 0.15s ease-in-out;
    }
    
    .phone-bar a:hover img {
        transform: scale(1.05);
    }    


    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 0.5rem 0;
        width: 100%;
        text-align: center;
    }

    nav {
        position: relative;
    }
}
