/* General Layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #E0F7FA; /* Light Ocean Blue */
    color: #FFFFFF;
    background: url('https://s3.us-east-1.amazonaws.com/www.zotkins.com/background.png') no-repeat center center fixed; /* Use your ocean image */
    background-size: cover;
}

/* Header */
header {
    text-align: center;
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay to enhance text readability */
    color: white;
}

h1 {
    font-size: 4em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

p {
    font-size: 1.5em;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}

/* Call to Action Button */
.cta-button {
    padding: 10px 20px;
    background-color: #00BCD4; /* Sea Green */
    color: white;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Section Styling */
section {
    padding: 40px 20px;
    text-align: center;
}

/* About Section */
.about {
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
    padding: 40px 0;
}

.about-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.about-img {
    border-radius: 50%;
    width: 250px;
    height: 250px;
    object-fit: cover;
    border: 4px solid #ffffff;
}

.about-text {
    max-width: 600px;
    text-align: left;
    color: #ffffff;
    line-height: 1.8;
}

.about-text h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.2em;
}
/* General Image Styling */
img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
}

/* Family Photo Section */
.family-photo {
    text-align: center;
    margin: 40px 0;
}

.family-img {
    max-width: 80%; /* Make sure it doesn't stretch too much */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Dog Photo Section */
.dog-photo {
    text-align: center;
    margin: 40px 0;
}

.dog-img {
    max-width: 80%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.7); /* Dark footer */
    color: white;
}

footer a {
    color: #00BCD4; /* Sea Green */
    text-decoration: none;
    font-size: 1.2em;
}

footer .social-links a {
    margin: 0 15px;
    font-size: 1.5em;
}

/* Ensure everything is legible on small screens */
@media (max-width: 768px) {
    h1 {
        font-size: 3em;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-img {
        width: 200px;
        height: 200px;
    }

    .about-text h2 {
        font-size: 2em;
    }

    .about-text p {
        font-size: 1.1em;
    }
}