/* GENERAL PAGE STYLE */
body {
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.7;
    background: #f4f4f4;
    padding: 20px;
    margin: 0;
}

/* POEM SECTIONS */
section {
    background: #ffffff;
    padding: 25px;
    margin-bottom: 40px;
    border-left: 6px solid #0a4d8c; /* deep blue accent */
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* HEADINGS */
h2 {
    margin-top: 0;
    color: #0a4d8c;
    font-size: 1.6rem;
    letter-spacing: 0.5px;
}

/* POEM TEXT */
p {
    white-space: pre-wrap;
    font-size: 1.1rem;
}

/* OPTIONAL: Smooth scroll if you will add navigation */
html {
    scroll-behavior: smooth;
}
 header {
    position: relative;
    height: 230px;         /* increased height so the photo has space */
    background: #0a4d8c;
    text-align: center;
    color: white;
    padding-top: 80px;     /* pushes the title down so photo is visible */
    overflow: hidden;
}

/* Floating photo FIXED */
.float-photo {
    width: 120px;
    position: absolute;
    top: 20px;             /* adjust vertical position */
    left: 20px;           /* photo now appears on the left inside header */
    z-index: 5;            /* ensures it stays ABOVE the background */
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%   { transform: translate(0px,0px); }
    50%  { transform: translate(-20px, -25px); }
    100% { transform: translate(0px,0px); }
}
.float-photo {
    width: 120px;
    position: absolute;
    top: 20px;             /* adjust vertical position */
    right: 20px;           /* photo now appears on the right inside body */
    z-index: 5;            /* ensures it stays ABOVE the background */
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%   { transform: translate(0px,0px); }
    50%  { transform: translate(-20px, -25px); }
    100% { transform: translate(0px,0px); }
}nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

nav a {
    margin: 8px;
    text-decoration: none;
    font-size: 18px;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }
    
    nav a {
        font-size: 16px;
        width: 100%;
        text-align: center;
    }
}
.whatsapp-btn {
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}
.whatsapp-btn:hover {
    background-color: #1ebe5d;
}
