/* ========================================
   Palmer Moses Ministries - Styles
   ======================================== */

/* CSS Variables */
:root {
    --primary-color: #8B4513;
    --primary-dark: #654321;
    --primary-light: #A0522D;
    --secondary-color: #DAA520;
    --accent-color: #CD853F;
    --text-dark: #2C2416;
    --text-medium: #5D4E37;
    --text-light: #8B7355;
    --bg-light: #FDF8F0;
    --bg-cream: #F5EBD9;
    --bg-white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --gradient-gold: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    --shadow-soft: 0 4px 20px rgba(139, 69, 19, 0.1);
    --shadow-medium: 0 8px 30px rgba(139, 69, 19, 0.15);
    --shadow-strong: 0 15px 50px rgba(139, 69, 19, 0.2);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-soft);
    padding: 12px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    height: 45px;
    width: auto;
}

.nav-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bg-white);
    transition: var(--transition);
}

.navbar.scrolled .nav-logo span {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-link {
    padding: 10px 18px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--bg-white);
    border-radius: 8px;
    transition: var(--transition);
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
}

.navbar.scrolled .nav-link:hover {
    background: var(--bg-cream);
    color: var(--primary-color);
}

.nav-cta {
    background: var(--secondary-color) !important;
    color: var(--text-dark) !important;
}

.nav-cta:hover {
    background: var(--accent-color) !important;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--bg-white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--text-dark);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #1a0f0a 0%, #2d1810 50%, #3d2117 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(218,165,32,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(218, 165, 32, 0.2);
    border: 1px solid var(--secondary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    color: var(--bg-white);
    margin-bottom: 24px;
    text-shadow: 2px 4px 20px rgba(0,0,0,0.3);
}

.hero-scripture {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    line-height: 1.8;
}

.hero-reference {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--text-dark);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--bg-white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--bg-white);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ========================================
   Section Styles
   ======================================== */
section {
    padding: 100px 0;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: var(--bg-cream);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-header .section-label {
    background: rgba(139, 69, 19, 0.1);
}

.section-header.light .section-label {
    background: rgba(255, 255, 255, 0.2);
    color: var(--secondary-color);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-header.light .section-title {
    color: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   About Section
   ======================================== */
.about {
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-strong);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--secondary-color);
    border-radius: var(--border-radius);
    z-index: -1;
}

.about-text .section-label {
    margin-bottom: 12px;
}

.about-text .section-title {
    margin-bottom: 24px;
}

.about-description {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.about-verse {
    margin-top: 32px;
    padding: 24px;
    background: var(--bg-white);
    border-left: 4px solid var(--secondary-color);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.about-verse i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.about-verse p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.about-verse span {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* ========================================
   Testimony Section
   ======================================== */
.testimony {
    background: var(--bg-white);
}

.testimony-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

.testimony-card {
    background: var(--gradient-primary);
    padding: 40px;
    border-radius: var(--border-radius);
    color: var(--bg-white);
    position: sticky;
    top: 120px;
}

.testimony-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.testimony-icon i {
    font-size: 1.5rem;
}

.testimony-verse p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.testimony-verse span {
    font-size: 0.95rem;
    opacity: 0.9;
}

.testimony-text p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.9;
}

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

/* ========================================
   Mission Section
   ======================================== */
.mission {
    background: var(--gradient-primary);
    position: relative;
}

.mission-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.mission .container {
    position: relative;
    z-index: 2;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.mission-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mission-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.mission-icon i {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.mission-card h3 {
    font-size: 1.3rem;
    color: var(--bg-white);
    margin-bottom: 12px;
}

.mission-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.mission-verse {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
}

.mission-verse i {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.mission-verse p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--bg-white);
    line-height: 1.8;
    margin-bottom: 16px;
}

.mission-verse span {
    color: var(--secondary-color);
    font-weight: 600;
}

/* ========================================
   Watch On Section (Streaming Platforms)
   ======================================== */
.watch-on-section {
    background: var(--bg-cream);
    padding: 80px 0;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.platform-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    text-decoration: none;
    border: 2px solid transparent;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.platform-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.platform-icon i,
.platform-icon svg {
    font-size: 2rem;
}

/* Roku Card */
.roku-card .platform-icon {
    background: linear-gradient(135deg, #662D91 0%, #4B2076 100%);
    color: white;
}

.roku-card .platform-icon svg {
    width: 32px;
    height: 32px;
}

.roku-card:hover {
    border-color: #662D91;
}

/* Amazon Card */
.amazon-card .platform-icon {
    background: linear-gradient(135deg, #FF9900 0%, #E88B00 100%);
    color: white;
}

.amazon-card:hover {
    border-color: #FF9900;
}

/* YouTube Card */
.youtube-card .platform-icon {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    color: white;
}

.youtube-card:hover {
    border-color: #FF0000;
}

.platform-info {
    flex: 1;
}

.platform-info h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.platform-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.platform-arrow {
    color: var(--text-light);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.platform-card:hover .platform-arrow {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 900px) {
    .platform-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* ========================================
   Content Section
   ======================================== */
.content-section {
    background: var(--bg-white);
}

.embed-container {
    min-height: 400px;
}

/* ========================================
   Connect Section
   ======================================== */
.connect {
    background: var(--bg-light);
}

.connect-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.connect-description {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 1.8;
}

.connect-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.connect-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--bg-white);
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.connect-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.connect-link i {
    font-size: 1.3rem;
}

.connect-link.roku i {
    color: #662D91;
}

.connect-link.amazon i {
    color: #FF9900;
}

.connect-link.youtube i {
    color: #FF0000;
}

.salvation-message {
    background: var(--bg-white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.salvation-message h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.salvation-message > p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.prayer-box {
    margin-top: 24px;
    padding: 30px;
    background: var(--bg-cream);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
}

.prayer-box p {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.9;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-logo p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-verse p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1rem;
    max-width: 400px;
    text-align: right;
    opacity: 0.9;
    margin-bottom: 8px;
}

.footer-verse span {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ========================================
   Mobile Responsive
   ======================================== */
@media (max-width: 1024px) {
    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        gap: 50px;
    }

    .testimony-content {
        grid-template-columns: 1fr;
    }

    .testimony-card {
        position: static;
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: var(--bg-white);
        flex-direction: column;
        padding: 100px 24px 40px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
        gap: 0;
        overflow-y: auto;
    }

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

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        display: block;
        color: var(--text-dark);
        padding: 16px 0;
        border-bottom: 1px solid var(--bg-cream);
        font-size: 1.1rem;
        font-weight: 500;
        background: transparent !important;
        border-radius: 0 !important;
    }

    .nav-link:hover {
        color: var(--primary-color);
        background: transparent !important;
    }

    /* Special buttons in mobile menu */
    .nav-give,
    .nav-cta {
        display: block;
        text-align: center;
        margin-top: 12px;
        padding: 16px 24px !important;
        border-radius: 50px !important;
        border-bottom: none !important;
    }

    .nav-give {
        background: var(--primary-color) !important;
        color: white !important;
    }

    .nav-cta {
        background: var(--secondary-color) !important;
        color: var(--text-dark) !important;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

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

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .about-image-accent {
        display: none;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .youtube-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .youtube-info {
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-logo {
        flex-direction: column;
    }

    .footer-verse {
        text-align: center;
    }

    .footer-verse p {
        text-align: center;
    }

    .salvation-message {
        padding: 30px 20px;
    }

    .prayer-box {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-scroll {
        display: none;
    }

    .nav-logo span {
        font-size: 1rem;
    }

    .nav-logo img {
        height: 35px;
    }

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

    .mission-card {
        padding: 30px 20px;
    }

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

/* ========================================
   Give Button & Modal
   ======================================== */
.nav-give {
    background: var(--secondary-color) !important;
    color: var(--text-dark) !important;
}

.nav-give:hover {
    background: var(--accent-color) !important;
}

.give-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.give-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.give-modal {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 650px;
    width: 100%;
    text-align: center;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.give-modal-overlay.active .give-modal {
    transform: translateY(0) scale(1);
}

.give-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-cream);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.give-modal-close:hover {
    background: var(--primary-color);
    color: white;
}

.give-modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.give-modal-icon i {
    font-size: 2rem;
    color: white;
}

.give-modal h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.give-modal > p {
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.7;
}

.give-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.give-option {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-cream);
    border-radius: 16px;
    padding: 20px 24px;
}

.give-option-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    min-width: 100px;
    flex-shrink: 0;
}

.give-option-logo.zelle {
    background: #6D1ED4;
}

.give-option-logo.paypal {
    background: #003087;
}

.give-option-logo i {
    font-size: 1.2rem;
}

.give-option-label {
    display: none;
}

.give-option-value {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 12px 16px;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: var(--transition);
    flex: 1;
}

.give-option:hover .give-option-value {
    border-color: var(--primary-color);
}

.give-option-value i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.give-option-value span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.btn-copy {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-copy:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-copy.copied {
    background: #10b981;
}

.give-blessing {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--text-light);
    font-size: 0.95rem;
}

@media (max-width: 680px) {
    .give-modal {
        padding: 40px 20px;
        margin: 20px;
    }

    .give-modal h2 {
        font-size: 1.5rem;
    }

    .give-option {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 20px 16px;
        gap: 12px;
    }

    .give-option-logo {
        align-self: center;
    }

    .give-option-value {
        justify-content: center;
    }

    .give-option-value span {
        font-size: 0.9rem;
        word-break: break-all;
    }

    .btn-copy {
        align-self: center;
    }
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}
