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

body {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background: #D8E9F0;
    color: #000;
    margin: 0;
    padding: 0;
}

h2 {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

p {
    margin: 20px 0;
}

html, body {
    height: 100%;
    overflow-x: hidden;
    margin: 0;
}

/* Full-width sections with background images */
.full {
    height: 100vh;
    background-position: center center; /* Ensures the background image is centered */
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

/* Centering the logo image */
header {
    text-align: center;
    padding: 20px;
    position: relative;
    width: 100%;
}

header img {
    max-width: 100%; /* Ensures the image is never wider than its container */
    height: auto;
    max-height: 250px; /* You can adjust this height depending on the logo size */
    display: block;
    margin: 0 auto; /* Ensures the logo is centered */
}

section.content {
    width: 90%;
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    opacity: 0.95;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

section#puppy, section#dogpeep, section#pinkglasses {
    min-height: 400px; /* Ensures the parallax images are visible */
    opacity: 0.9; /* Adjusts opacity for better visibility */
    background-position: center center; /* Ensures background is centered */
    background-size: cover; /* Ensures full image coverage */
}

section#puppy {
    background-image: url(Images/background-dog-resized.png);
}

section#dogpeep {
    background-image: url(Images/dogpeep-resized.png);
}

section#pinkglasses {
    background-image: url(Images/pink-glasses-resized.png);
}

section#map {
    text-align: center;
    margin: 0 auto;
}

footer {
    text-align: center;
    padding: 20px;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    h2 {
        font-size: 1.5em;
    }

    section.content {
        width: 95%;
    }

    iframe {
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 1.2em;
    }

    section.content {
        padding: 15px;
    }
}