/* General body styles */
body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f7f1;
    color: #333;
}

/* Header styling */
header {
    color: white;
    /* padding: 20px; */
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#grad1 {
    height: 250px;
    width: 100%;
    background-color: #1fc8db;
    background: linear-gradient(140deg,#bc70a4 25%,#99b017 75%);
}

/*  */

#hd-sm {font-size: .5px;}

#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: red; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
}
#myBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
}

header h1 {
    font-size: 3em;
    margin: 0;
    font-family: 'Noto', sans-serif;
}

/* Navigation Bar */
nav {
    background: linear-gradient(90deg, #16222e, #1892a5, #a683c1);
    background-size: 400% 400%; /* Allows animation */
    animation: gradientMove 15s ease infinite; /* Smooth animation */
    display: flex;
    justify-content: center;
    padding: 10px;
    color: #ffffff; /* Ensure good contrast with text */
    font-weight: bold; /* Helps with readability */
    text-shadow: 1px 1px 2px #000000; /* Adds clarity for the text */
    /* */
}

/* Add keyframes for the gradient animation */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


nav a {
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    font-size: 1.1em;
    border-radius: 4px;
    border: 2px solid rgba(255,255,255,0.6);
    margin: 0 15px;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: #ff4500;
    border-color: #fff;
}

.nav-active {
    transform: translateX(0);
    transition: transform 0.5s ease-in-out;
}
.nav-active a {
    display: block;
    margin: 5px 0;
}
nav a.active {
    border:2px solid #fff;
    background-color: rgba(255,255,255,0.3);
}

#logo {
    width: 170px;
    height: 150px;
}

/* Main Content Section */
.content {
    padding: 30px;
    text-align: center;
}

.bio {
    margin-bottom: 40px;
}

.bio h2 {
    font-size: 2.5em;
    color: #7e007c;
}

.bio p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

/* Testimonial Section */
.testimonials {
    background-color: #fff;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.testimonials h3 {
    font-size: 2.2em;
    color: #7e007c;
    margin-bottom: 20px;
}

.testimonial-card {
    background-color: #f4f4f4;
    padding: 20px;
    margin: 20px 0;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
    font-size: 1.1em;
    color: #555;
    font-style: italic;
}

.testimonial-card h4 {
    font-size: 1.2em;
    color: #4c00d1;
    margin-top: 15px;
}

.footer {
    background-color: #025e02;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 0.9em;
}
.footer a {
    color: rgb(255, 174, 0);
    text-decoration: none;
}

/* Button Styling */
.cta-button {
    background-color: #ff6347;
    color: white;
    padding: 15px 30px;
    font-size: 1.2em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #ff45
}


/* Code for hamburger menu when screen size is below min value */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        position: relative;
    }
    
    nav a {
        margin: 5px 0;
        display: none;
    }
    
    /* Hamburget navigation */
    .hamburger::before {
        content: "☰ << Open Menu"; /* Default hamburger icon */
    }
    
    .hamburger.close::before {
        content: "✖ << Close menu"; /* Close icon */
    }
    
    
    .nav-active a {
        display: block;
    }
    
    .content {
        padding: 15px;
    }
    
    .testimonial-card {
        margin: 10px;
    }
    
    header h1 {
        font-size: 2em;
    }
}

span {
    color: rgb(0, 255, 34);
}
