/* styles.css */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-image: url('header-bg.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    position: relative;
    z-index: 2;
    text-align: center



    ;}

    header h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 10px;
        }
        
        header p {
        font-size: 1.25rem;
        font-weight: 300;
        margin-bottom: 20px;
        padding-top: 200px;
        }
        
        .cta-button {
        display: inline-block;
        font-size: 1rem;
        font-weight: 700;
        text-decoration: none;
        padding: 12px 25px;
        background-color: #4caf50;
        color: #ffffff;
        border-radius: 5px;
        transition: background-color 0.3s;
        }
        
        .cta-button:hover {
        background-color: #3e8e41;
        }
        
        @media screen and (max-width: 768px) {
        header h1 {
        font-size: 2.5rem;
        }

        header p {
            font-size: 1rem;
        }
        
        .cta-button {
            font-size: 0.9rem;
            padding: 10px 20px;
        }
}        
    
    

.hero {
    background-color: #ffffff;
    padding: 100px 0;
    text-align: center;
    border-bottom: 1px solid #eaeaea;
    animation: fadeIn 1.5s;
    height: 100vh;
    margin-left: 20px;
    margin-right: 20px;
    padding-left: 50px;
    padding-right: 50px;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    animation: fadeInUp 1.5s;
}

.features {
    padding: 80px 0;
    background-color: #f5f5f5;
    border-bottom: 1px solid #eae
}

.feature-block {
text-align: center;
margin-bottom: 30px;
animation: fadeInUp 1.5s;
}

.feature-block i {
font-size: 3rem;
margin-bottom: 20px;
color: #4caf50;
}

.feature-block h4 {
font-size: 1.5rem;
margin-bottom: 10px;
font-weight: 700;
}

.demo-signup {
background-color: #ffffff;
padding: 100px 0;
text-align: center;
animation: fadeIn 1.5s;
}

.demo-signup form {
max-width: 400px;
margin: 0 auto;
}

.demo-signup button {
width: 100%;
background-color: #4caf50;
border: none;
padding: 10px 0;
font-size: 1rem;
color: #ffffff;
cursor: pointer;
margin-top: 20px;
font-weight: 700;
transition: background-color 0.3s;
}

.demo-signup button:hover {
background-color: #3e8e41;
}

@media screen and (max-width: 768px) {
    .hero h2 {
    font-size: 2.5rem;
    }

    .features {
        padding: 60px 0;
    }

    .feature-block i {
        font-size: 2.5rem;
    }

    .feature-block h4 {
        font-size: 1.25rem;
    }
}

/* Animations */
@keyframes fadeIn {
    0% {
    opacity: 0;
    }
    100% {
    opacity: 1;
    }
    }
    
    @keyframes fadeInUp {
    0% {
    opacity: 0;
    transform: translateY(20px);
    }
    100% {
    opacity: 1;
    transform: translateY(0);
    }
    }
