
/* 

Brand Guidelines:

Logo: Need to find (Currently it is text)
Font: Montserrat (Looking up how to implement)
Colors: Grey and Dark Blue
Design Style: Sleek and Modern
Pictures Used: Realistic, Tech Orientied, No drawn images.

*/


/* General Styles */

body {
    font-family: Arial, sans-serif; /* I want to use a font called Montseratt I need to figure out how to use it */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

button {
    padding: 10px 20px;
    background-color: #230097;
    color: #fff;
    border: none;
    cursor: pointer;  /* Changes cursor to hand to show that an element is clickable */
    border-radius: 5px;
}

button:hover {
    opacity: 0.8;
}

/* Nav Bar Styles */

nav {

    display: flex;
    justify-content: space-between; /* Distributes items with equal spacing */
    align-items: center;
    padding: 20px;
    background-color: #333;
}

.logo {                   /* Will be changed for an image in the future */
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar ul li {
    display: inline;
}

.navbar ul li a {
    color: #fff;
    font-size: 16px;
}

.book-demo {
    background-color: #230097;
    color: #fff;
    padding: 10px;
}

/* Welcome Section */

.welcome-section {
    position: relative;
    width: 100%;
    height: 400px;
    background: url('Welcome.jpg') no-repeat center center/cover; 
    text-align: center;
    color: #fff;
}

.welcome-section .tagline {  
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    font-weight: bold;
}

.welcome-section .learn-more {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translateX(-50%);  /* Centers elements */
}

/* Product Overview */

.product-overview {
    text-align: center;
    padding: 50px 20px;
}

.product-overview .overview-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
}

.features {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.feature-box {
    width: 80%;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
}

.feature-box img {
    width: 100%;
    border-radius: 5px;
}

.feature-box h3 {
    margin: 10px 0;
}

/* Blogs */

.featured-blogs {
    text-align: center;
    padding: 50px 20px;
}

.featured-blogs .read-more {
    margin: 20px 0;
}

.blog-items {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.blog-item {
    width:30%;
    text-align: center;
}

.blog-item img {
    width: 100%;
    border-radius: 5px;
}

/* Contact Us */

.contact-us {
    padding: 50px 20px;
    background-color: #fff;
}

.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-image img {
    width: 100%;
    border-radius: 10px;
}

.contact-text {
    max-width: 50%;
}

.contact-button {
    margin-top: 20px;
}

/* Feature Page */

.feature-page-box {
    width: 100%;
    max-width: 400px;
    background: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
}

/* Media Query */

@media (max-width: 768px) {
    .navbar ul {
        display: block;
        padding: 0;
        margin: 0;
    }

    .navbar ul li {
        margin: 10px 0;
    }

    .navbar ul li a {
        display: block;
        text-align: center;
        padding: 10px;
        width: 100%;
    }

    .hamburger-menu {
        display: block;
    }

    .feature-box {
        width: 100%;
        padding: 15px;
    }

    .blog-items {
        display: block;
    }

    .contact-containers {
        flex-direction: column;
        align-items: center;
    }
}

/* Button Hover Animation */

button:hover {
    background-color: #333;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}