@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    min-height: 100vh;
    width: 100%;
}

/* Home Section */
.home {
    display: flex;
    height: 100vh;
    align-items: center;
    padding: 0 10%;
    background-image: linear-gradient(to bottom, rgba(245, 209, 209, 0), rgb(255, 246, 113)), 
                      url(images/S__14049358.jpg);
    background-position: center;
    background-size: cover;
}

.home-content {
    max-width: 600px;
}

.home-content h1 {
    font-size: 40px; 
    font-weight: bold;
}

.home-content h3 {
    font-weight: 700;
    margin-bottom: 20px;
}

/* Monitoring Section */
.monitoring {
    width: 100%;
    padding: 5%;
    min-height: 100vh;
    background-image: linear-gradient(to bottom, rgb(255, 246, 113), 
                      rgba(245, 209, 209, 0.4), rgb(255, 246, 113)), 
                      url(images/4E48A549-7990-46B3-8E7E-8D59AC49440C.jpg);
    background-position: center;
    background-size: cover;
}

.monitoring-controls {
    margin-bottom: 30px;
}

.monitoring-controls label {
    display: block;
    margin-bottom: 5px;
}

.monitoring-controls input {
    width: 100%;
    max-width: 400px;
    height: 50px;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 15px;
    background: white;
}

.monitoring-status h2 {
    font-size: 24px;
    margin-top: 10px;
}

/* About Section */
.about {
    width: 100%;
    min-height: 50vh;
    padding: 5%;
    background-color: rgb(255, 246, 113);
    text-align: center;
}

.team-members {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    gap: 20px;
}

.member {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.member img {
    width: 150px;
    height: 200px;
    border-radius: 20px;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.member p {
    font-weight: 600;
    color: #333;
    margin-top: 5px;
    width: 150px;
}

/* Buttons */
.btn {
    font-size: 16px;
    cursor: pointer;
    height: 50px;
    margin-top: 15px;
    margin-right: 15px;
    padding: 12px 24px;
    border: 1px solid #000;
    border-radius: 15px;
    background: transparent;
    transition: all 0.3s;
}

.btn:hover {
    color: #ffffff;
    border-color: #ffffff;
    background: rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 800px) {
    .home-content h1 {
        font-size: 35px;
    }
    
    .home-content h3 {
        font-size: 17px;
    }
    
    .member img {
        width: 100px;
        height: 100px;
    }
    
    .team-members {
        gap: 15px;
    }
}

@media (min-width: 800px) and (max-width: 1300px) {
    .team-members img {
        width: 20%;
    }
}