@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: url('images/daisy-meadow.jpg') center/cover no-repeat fixed;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu-spread {
    justify-content: space-evenly;
    width: 100%;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4a90e2;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)),
        url('images/daisy-meadow.jpg') center/cover no-repeat fixed;
    position: relative;
    overflow: hidden;
}



.hero::after {
    content: '';
    position: absolute;
    top: 4%;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/jersingingandguitar.jpg') center center/cover no-repeat;
    background-position: center 40%;
    opacity: 1;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: multiply;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 100%;
    padding: 2rem 20px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.9), 
                 1px 1px 4px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-side-text {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    max-width: 300px;
    color: white;
    font-size: 0.9rem;
    line-height: 1.4;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.6);
    padding: 1.5rem;
    border-radius: 10px;
    z-index: 2;
}

.hero-side-text p {
    margin-bottom: 1rem;
}

.hero-side-text p:last-child {
    margin-bottom: 0;
}

.hero-split {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 3rem auto 0;
    opacity: 0;
    animation: fadeInUp 1s ease 1.5s forwards;
}

.hero-text {
    flex: 1;
    color: white;
    text-align: left;
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.hero-buttons-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 2rem;
}

.hero-text-title {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.hero-text p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-text p:last-child {
    margin-bottom: 0;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    font-style: italic;
    font-weight: 300;
    margin: 0;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: white;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 1s forwards;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 1.5s forwards;
}

.btn {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #357abd, #2c5aa0);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

.btn-donate {
    background: #4a90e2;
    color: white;
    animation: pulse 2s infinite;
}

.btn-donate:hover {
    background: #357abd;
    transform: translateY(-2px);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(74, 144, 226, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(74, 144, 226, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 144, 226, 0); }
}



@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin: 0 auto 3rem auto;
    color: white;
    background: rgba(0, 0, 0, 0.85);
    padding: 0.8rem 2rem;
    border-radius: 8px;
    display: inline-block;
}

/* Dear Visitor Section */
.dear-visitor-section {
    padding: 4rem 0;
    background: 
        linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)),
        url('images/daisy-meadow.jpg') center/cover no-repeat fixed;
    color: #333;
}

.dear-visitor-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.7);
    position: relative;
    font-family: 'Dancing Script', cursive;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.dear-visitor-content:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.dear-visitor-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 400;
    font-family: 'Georgia', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    text-align: left;
}

.dear-visitor-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    font-family: 'Georgia', serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.dear-visitor-content p:last-child {
    margin-bottom: 0;
}

.letter-signature {
    margin-top: 3rem;
    text-align: left;
    padding-left: 2rem;
}

.letter-signature p {
    margin-bottom: 0.8rem;
    text-indent: 0;
    font-size: 1.4rem;
    font-weight: 500;
}

.signature-name {
    font-size: 1.5rem;
    font-weight: 500;
    color: white;
    margin-left: 0;
    font-family: 'Georgia', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    font-style: italic;
}

.signature-name::before {
    content: '~';
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 0.5rem;
}

/* Music Section */
.music-section {
    background: 
        linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)),
        url('images/daisy-meadow.jpg') center/cover no-repeat fixed;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.music-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.music-card:hover {
    transform: translateY(-5px);
}

.music-cover {
    width: 200px;
    height: 200px;
    margin: 0 auto 1rem;
    background: #4a90e2;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.cover-placeholder {
    color: white;
    font-weight: 600;
}

.play-icon {
    position: absolute;
    font-size: 3rem;
    color: white;
    opacity: 0.8;
}

.music-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.music-card p {
    color: #7f8c8d;
    margin-bottom: 1rem;
}

.music-card audio {
    width: 100%;
    margin-top: 1rem;
}

/* Streaming Links */
.streaming-links {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.streaming-links h3 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.platform-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.platform-link {
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.platform-link.spotify {
    background: #1DB954;
    color: white;
}

.platform-link.apple {
    background: #000;
    color: white;
}

.platform-link.youtube {
    background: #4a90e2;
    color: white;
}

.platform-link.soundcloud {
    background: #357abd;
    color: white;
}

.platform-link:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Poetry Section */
.poetry-section {
    background: transparent !important;
}

.poetry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.poem-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.poem-card:hover {
    transform: translateY(-5px);
}

.poem-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ecf0f1;
}

.poem-header h3 {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
    font-size: 1.4rem;
}

.poem-date {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.poem-content {
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.poem-content p {
    margin-bottom: 1rem;
    font-style: italic;
}

/* Enhanced poem line formatting */
.poem-line {
    margin: 0 0 0.2rem 0 !important;
    padding: 0.1rem 0 !important;
    line-height: 1.5 !important;
    font-family: 'Georgia', serif !important;
    font-style: normal !important;
    font-weight: normal !important;
    color: #2c3e50 !important;
    white-space: pre-wrap;
    text-align: left;
    font-size: 1.1em;
}

.poem-line.stanza-end {
    margin-bottom: 1.5em !important;
}

/* Dynamic Content Placeholder Styles */
.placeholder-card {
    border: 2px dashed rgba(74, 144, 226, 0.3) !important;
    background: rgba(74, 144, 226, 0.05) !important;
    opacity: 0.8;
    text-align: center;
    transition: all 0.3s ease;
}

.placeholder-card:hover {
    border-color: rgba(74, 144, 226, 0.5) !important;
    background: rgba(74, 144, 226, 0.1) !important;
}

.placeholder-card .album-art,
.placeholder-card .poem-content {
    opacity: 0.6;
}

.placeholder-card h3 {
    color: #4a90e2 !important;
    font-style: italic;
}

.placeholder-card p {
    color: #7f8c8d !important;
}

.poem-text .poem-line {
    color: #2c3e50 !important;
    text-shadow: none !important;
    font-weight: normal !important;
    font-style: normal !important;
}

.read-more-btn {
    background: #4a90e2;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
}

.read-more-btn:hover {
    background: #c0392b;
}

/* About Section */
.about-section {
    background: 
        linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)),
        url('images/daisy-meadow.jpg') center/cover no-repeat fixed;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    color: #34495e;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    color: #4a90e2;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #7f8c8d;
    font-weight: 500;
}

.about-image {
    text-align: center;
}

.profile-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    display: block;
    border: 4px solid #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
                0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15),
                0 6px 24px rgba(0, 0, 0, 0.12);
}

.image-placeholder {
    width: 250px;
    height: 250px;
    background: #ecf0f1;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #7f8c8d;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    background: 
        linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)),
        url('images/daisy-meadow.jpg') center/cover no-repeat fixed;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.contact-info h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.contact-info p {
    color: #2c3e50;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-item i {
    color: #4a90e2;
    width: 20px;
}

.contact-link {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #c0392b;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #4a90e2;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* Contact Form */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e74c3c;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: #bdc3c7;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #e74c3c;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-split {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons-section {
        padding-top: 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        justify-content: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .platform-links {
        flex-direction: column;
        align-items: center;
    }

    .music-grid {
        grid-template-columns: 1fr;
    }

    .poetry-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }
}

/* Donation Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    padding: 2rem;
    border-bottom: 1px solid #ecf0f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #2c3e50;
    font-family: 'Playfair Display', serif;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #e74c3c;
}

.modal-body {
    padding: 2rem;
}

.donation-content {
    text-align: center;
}

.donation-options h4 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.amount-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.amount-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e74c3c;
    background: white;
    color: #e74c3c;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.amount-btn:hover,
.amount-btn.selected {
    background: #e74c3c;
    color: white;
}

#customAmount {
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    text-align: center;
    margin: 0 0.5rem;
    width: 150px;
}

.payment-methods {
    margin: 2rem 0;
}

.paypal-btn {
    background: #0070ba;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.paypal-btn:hover {
    background: #005ea6;
}

.donation-note {
    margin-top: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.donation-note p {
    margin: 0;
    color: #666;
}

/* Admin Link Styles */
.admin-link-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

.admin-link {
    background: #2c3e50;
    color: white;
    padding: 1rem;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.admin-link:hover {
    background: #34495e;
    transform: translateY(-2px);
}

/* Individual Track Streaming Links */
.track-streaming-links {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.streaming-link {
    padding: 0.5rem 1rem;
    border-radius: 15px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.streaming-link.spotify {
    background: #1DB954;
    color: white;
}

.streaming-link.apple {
    background: #000;
    color: white;
}

.streaming-link:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Enhanced Music Card Styles */
.music-card .cover-placeholder {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

/* Full Poem Content Styles */
.full-poem-content {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #e74c3c;
}

.full-poem-content p {
    line-height: 1.8;
    font-style: italic;
    color: #2c3e50;
}

/* Mobile Responsive Donations */
@media screen and (max-width: 480px) {
    .amount-buttons {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .amount-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    #customAmount {
        width: 100%;
        margin: 0.5rem 0;
    }
}

/* Poetry Section - FORCE TRANSPARENCY EVERYWHERE */
.poetry-section,
.poetry-section *:not(.carousel-card):not(.search-result-card):not(.btn):not(input):not(.modal):not(.modal *) {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

/* Make text readable against daisy background */
.poetry-section .section-title,
.poetry-section .featured-title,
.poetry-section .search-title,
.poetry-section h2,
.poetry-section h3,
.poetry-section h4 {
    color: white !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 
                 1px 1px 4px rgba(0, 0, 0, 0.9) !important;
    background: rgba(0, 0, 0, 0.6) !important;
    padding: 1rem 2rem !important;
    border-radius: 10px !important;
    backdrop-filter: blur(10px) !important;
}

.poetry-section {
    padding: 4rem 0;
}

.poetry-section .container {
    background: transparent !important;
}

.poetry-section .featured-poems-container {
    background: transparent !important;
}

.poetry-section .poetry-search-container {
    background: transparent !important;
}

/* Featured Poems Carousel */
.featured-poems-container {
    margin-bottom: 4rem;
}

.featured-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.poem-carousel-wrapper {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.poem-carousel {
    position: relative;
    width: 350px;
    height: 350px;
    margin: 0 auto;
}

.carousel-card {
    position: absolute;
    width: 280px;
    height: 320px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: center;
    opacity: 0.4;
    transform: scale(0.8) translateX(-50%) translateY(-50%);
    top: 50%;
    left: 50%;
    cursor: pointer;
}

.carousel-card.active {
    opacity: 1;
    transform: scale(1) translateX(-50%) translateY(-50%);
    z-index: 3;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.carousel-card.prev {
    opacity: 0.6;
    transform: scale(0.85) translateX(-120%) translateY(-50%) rotateY(-25deg);
    z-index: 2;
}

.carousel-card.next {
    opacity: 0.6;
    transform: scale(0.85) translateX(20%) translateY(-50%) rotateY(25deg);
    z-index: 2;
}

.carousel-card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.carousel-poem-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.carousel-poem-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.carousel-poem-preview {
    flex: 1;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.carousel-read-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.carousel-read-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.carousel-controls {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Poetry Search */
.poetry-search-container {
    max-width: 800px;
    margin: 0 auto;
}

.search-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.poetry-search-box {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    background: white;
    padding: 0.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.poetry-search-box input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    background: rgba(255, 255, 255, 0.9) !important;
    color: #333 !important;
    backdrop-filter: blur(5px);
}

.search-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 60px;
}

.search-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Search Results */
.search-results-title {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.search-result-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.search-result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.search-card-header {
    margin-bottom: 1rem;
}

.search-card-header h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.search-card-meta {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
}

.search-card-preview {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.search-read-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.search-read-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.no-results {
    text-align: center;
    padding: 3rem;
    color: #6c757d;
}

.no-results i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-featured {
    text-align: center;
    color: #6c757d;
    font-size: 1.1rem;
    padding: 2rem;
}

/* Poem Modal */
.poem-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.poem-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

.poem-modal-header {
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.poem-modal-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 0;
    flex: 1;
    line-height: 1.3;
}

.poem-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6c757d;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.poem-modal-close:hover {
    background: #f8f9fa;
    color: #495057;
}

.poem-modal-meta {
    padding: 0 2rem 1rem 2rem;
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.poem-modal-body {
    padding: 1rem 2rem 2rem 2rem;
    max-height: 60vh;
    overflow-y: auto;
}

.poem-text-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
    font-family: 'Georgia', serif;
}

.poem-text-content p {
    margin-bottom: 1rem;
}

.poem-text-content p:empty {
    margin-bottom: 0.5rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive Modal */
@media screen and (max-width: 768px) {
    .poem-modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .poem-modal-header {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }
    
    .poem-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .poem-modal-meta,
    .poem-modal-body {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .poem-text-content {
        font-size: 1rem;
    }
}

