/* styles.css - Responsive Design Stylesheet */

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #8ad4d6;
}

/* Container for main content */
.container {
    max-width: 836px;
    min-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
}

/* Header styles */
header {
    text-align: center;
    margin-bottom: 40px;
}

.title {
    font-family: serif;
    font-variant: small-caps;
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #4f7faf;
}

.subtitle {
    font-family: serif;
    font-size: 1.5em;
    color: #4b8b64;
    font-weight: normal;
}

/* Main content styles */
main {
    margin-bottom: 40px;
}

.content {
    font-family: sans-serif;
}

h3 {
    font-family: serif;
    font-size: 1.4em;
    margin: 30px 0 15px 0;
    color: #2c3e50;
}

p {
    margin-bottom: 20px;
    text-align: justify;
}

/* List styles */
ul {
    margin: 20px 0;
    padding-left: 30px;
}

li {
    margin-bottom: 8px;
}

/* Image styles */
img {
    display: block;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.single-image {
    max-width: 825px;
    width: 100%;
    margin: 20px auto;
}

.image-pair {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    justify-content: space-between;
}

.half-image {
    width: 412px;
    max-width: 48%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.half-image:hover {
    max-width: 600px;
    width: 825px;
    position: relative;
    z-index: 10;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Footer styles */
footer {
    background-color: lightblue;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
}

footer h3 {
    font-family: serif;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}


.team-section {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.logo-section {
    
}

.footer-image {
    width: 120px;
    height: 120px;
    border-radius: 25%;
    margin: 0 auto 10px;
    object-fit: cover;
    border: 3px solid #fff;
}

.footer-content p {
    margin: 0;
    font-weight: bold;
    color: #2c3e50;
    text-align: center;
}

.footer-content a {
    color: #2c3e50;
    text-decoration: none;
}

.footer-content a:hover {
    text-decoration: underline;
}

/* Responsive design */
@media screen and (max-width: 768px) {
    .container {
        padding: 15px;
        min-width: 320px;
    }
    
    .title {
        font-size: 2em;
    }
    
    .subtitle {
        font-size: 1.2em;
    }
    
    .image-pair {
        flex-direction: column;
        align-items: center;
    }
    
    .half-image {
        width: 100%;
        max-width: 100%;
    }
    
    .half-image:hover {
        max-width: 100%;
        width: 100%;
        transform: scale(1.05);
    }
    
    .single-image {
        max-width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .title {
        font-size: 1.8em;
    }
    
    .subtitle {
        font-size: 1.1em;
    }
    
    h3 {
        font-size: 1.2em;
    }
    
    .footer-image {
        width: 60px;
        height: 60px;
    }
}