/* poems.css */

/* --- 1. POEM PAGE SPECIFIC TYPOGRAPHY --- */
/* We leave 'body' font as Open Sans (from home_style) so the menu looks right.
   We only change the font for the poem container. */

   .poems-main {
    padding-top: 160px; /* Push content down below the fixed navbar */
    min-height: 80vh;
    background-color: black; /* Ensure background stays black */
}

.poems-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    color: white;
}

.poem-title {
    color: #CFB53B; /* Old Gold */
    font-family: 'Montserrat', sans-serif; /* Matching the header font */
    font-weight: 800;
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.poem-author {
    color: #e0e0e0;
    font-family: 'Georgia', serif; /* Elegant font for author */
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 60px;
}

.poem-body {
    font-family: 'Georgia', serif; /* Elegant font for the poem itself */
    font-size: 1.6rem; 
    line-height: 2.0;
    color: #ffffff;
}

.poem-body p {
    margin-bottom: 40px;
}

/* Header Gold Line Styling */
.gold-line-header {
    width: 80px;
    height: 3px;
    background-color: #CFB53B;
    margin: 0 auto 50px auto;
}

.page-title {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 5px;
    margin-bottom: 10px;
    color: white;
    text-transform: uppercase;
}

/* --- 2. FLOATING BUTTONS STYLING --- */

.floating-btn {
    position: fixed;
    bottom: 30px;
    width: 60px;
    height: 60px;
    background-color: #CFB53B; /* Old Gold Background */
    color: white; /* --- CHANGED: Icon is now WHITE by default --- */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
    z-index: 2000; /* Above the footer */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    border: 2px solid #CFB53B;
}

/* The class JS adds to make them appear */
.floating-btn.show {
    opacity: 1;
    visibility: visible;
}

/* HOVER STATE - Inverses colors */
.floating-btn:hover {
    background-color: white; /* Background becomes White */
    color: #CFB53B;          /* Icon becomes Old Gold */
    transform: scale(1.1);
}

/* Positions */
.btn-home {
    left: 40px;
}

.btn-top {
    right: 40px;
}

   /* Footer */
   .footer { width: 100%; background-color: #000000; color: #cccccc; padding: 60px 30px 20px 30px; border-top: 2px solid rgba(207, 181, 59, 0.3); font-family: 'Open Sans', sans-serif; z-index: 3; position: relative; }
   .footer-content { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; margin-bottom: 40px; }
   .footer-col { flex: 1; min-width: 250px; }
   .footer-col h3 { font-family: 'Montserrat', sans-serif; color: var(--old-gold); font-size: 1.1rem; text-transform: uppercase; margin-bottom: 20px; letter-spacing: 1px; font-weight: 700; }
   .brand-col { text-align: center; display: flex; flex-direction: column; align-items: center; }
   .footer-logo { width: 80px; height: auto; margin-bottom: 15px; }
   .brand-text h3, .brand-text h4 { margin: 0; color: white; font-weight: 700; }
   .brand-text h3 { font-size: 1rem; }
   .brand-text h4 { font-size: 0.8rem; font-weight: 400; color: #aaa; margin-top: 5px; }
   .links-col ul { list-style: none; padding: 0; }
   .links-col ul li { margin-bottom: 10px; }
   .links-col ul li a { color: #ccc; text-decoration: none; display: inline-block; transition: color 0.3s ease, transform 0.3s ease; }
   .links-col ul li a:hover { color: var(--old-gold); transform: translateY(-3px); }
   .contact-col p { margin-bottom: 15px; display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
   .contact-col i { color: var(--old-gold); margin-top: 3px; }
   .contact-col a { color: #ccc; text-decoration: none; transition: color 0.3s; }
   .contact-col a:hover { color: var(--old-gold); }
   .social-icons { display: flex; gap: 15px; }
   .social-icons a { display: flex; justify-content: center; align-items: center; width: 40px; height: 40px; background-color: #222; color: var(--old-gold); border-radius: 50%; transition: all 0.3s ease; font-size: 1.2rem; text-decoration: none; }
   .social-icons a:hover { background-color: var(--old-gold); color: black; transform: translateY(-3px); }
   .footer-bottom { border-top: 1px solid #222; padding-top: 20px; text-align: center; font-size: 0.9rem; color: #777; }
   .footer-bottom a { color: #999; text-decoration: none; transition: color 0.3s; }
   .footer-bottom a:hover { color: var(--old-gold); }
