/* ==================== RESET & BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Foundation Logo Colors */
    --primary-color: #003366; /* Navy Blue - Foundation primary */
    --secondary-color: #FF6B35; /* Orange - Foundation accent */
    --accent-color: #FF8C42; /* Bright Orange - Calls to action */
    --dark-bg: #001A33;
    --light-bg: #F5F5F5;
    --white: #FFFFFF;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --overlay-dark: rgba(0, 51, 102, 0.85);
    --overlay-light: rgba(0, 51, 102, 0.4);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.nav-brand img {
    height: 50px;
    width: auto;
}

@media (max-width: 768px) {
    .nav-brand img {
        height: 40px;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.btn-donate {
    background: var(--accent-color);
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
    text-align: center;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-placeholder {
    width: 100%;
    height: 100%;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1.2s ease;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

.hero-dates {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 3px;
}

.hero-tagline {
    font-size: 20px;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.btn-primary:hover {
    background: #A01828;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 10px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

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

/* ==================== SECTION HEADERS ==================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.underline {
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 0 auto;
}

.section-header p {
    margin-top: 15px;
    font-size: 18px;
    color: var(--text-light);
}

/* ==================== LEGACY SECTION ==================== */
.legacy-section {
    padding: var(--section-padding);
    background: var(--white);
}

.legacy-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.intro-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.intro-text .lead {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

/* Timeline */
.timeline {
    position: relative;
    margin: 80px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--secondary-color);
    top: 0;
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
}

.timeline-item:nth-child(odd) .timeline-content {
    padding-right: calc(50% + 40px);
}

.timeline-item:nth-child(even) .timeline-content {
    padding-left: calc(50% + 40px);
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--secondary-color);
    z-index: 2;
}

.timeline-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.timeline-item:nth-child(even) .timeline-content {
    flex-direction: row-reverse;
}

.timeline-image {
    flex: 0 0 300px;
}

.timeline-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.timeline-text {
    flex: 1;
}

.timeline-text h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.timeline-text p strong {
    color: var(--accent-color);
    font-size: 16px;
}

.timeline-text ul {
    margin-top: 15px;
    padding-left: 20px;
}

.timeline-text li {
    margin-bottom: 8px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Career Highlights */
.career-highlights {
    margin: 80px 0;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    text-align: center;
}

.career-highlights h3 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--white);
    margin-bottom: 40px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.highlight-number {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.highlight-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials */
.testimonials {
    margin: 80px 0;
}

.testimonials h3 {
    font-family: var(--font-heading);
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.testimonial {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    transition: transform 0.3s ease;
}

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

.testimonial .quote {
    font-size: 16px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.testimonial .author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
}

/* ==================== MISSION SECTION ==================== */
.mission-section {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.mission-statement .lead {
    font-size: 22px;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    color: var(--text-dark);
}

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

.pillar {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.pillar:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.pillar-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.pillar h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.pillar p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

/* ==================== GALLERY SECTION ==================== */
.gallery-section {
    padding: var(--section-padding);
    background: var(--white);
}

/* ==================== MEMORIAL APPAREL SECTION ==================== */
.apparel-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--light-bg), var(--white));
}

.apparel-content {
    margin-top: 60px;
}

.apparel-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.apparel-showcase {
    position: relative;
}

.shirt-mockup {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--secondary-color);
    transition: all 0.4s ease;
}

.shirt-mockup:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.shirt-mockup img {
    transition: transform 0.4s ease;
}

.shirt-mockup:hover img {
    transform: scale(1.05);
}

.mockup-placeholder {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.05), rgba(255, 107, 53, 0.05));
    border-radius: 10px;
}

.shirt-icon {
    font-size: 120px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.mockup-placeholder p {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 10px 0;
}

.mockup-note {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: var(--text-light) !important;
    font-style: italic;
}

.apparel-details h3 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.apparel-tagline {
    font-size: 18px;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--secondary-color);
}

.apparel-description p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.apparel-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.apparel-features li {
    font-size: 16px;
    padding: 12px 0;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0, 51, 102, 0.1);
}

.apparel-features li:last-child {
    border-bottom: none;
}

.apparel-cta {
    margin-top: 40px;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    border: 2px solid var(--secondary-color);
    text-align: center;
}

.price-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.price-label {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
}

.btn-apparel {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    padding: 20px 50px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.btn-apparel:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-apparel span {
    display: block;
}

.btn-apparel small {
    display: block;
    font-size: 12px;
    font-weight: 400;
    margin-top: 5px;
    opacity: 0.9;
    text-transform: none;
    letter-spacing: 0.5px;
}

.shipping-note {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 15px;
}

.apparel-impact {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    padding: 50px;
    color: var(--white);
}

.impact-card {
    text-align: center;
}

.impact-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.impact-card h4 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 20px;
}

.impact-card p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Apparel Section */
@media (max-width: 1024px) {
    .apparel-featured {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .apparel-details h3 {
        font-size: 28px;
    }
    
    .price-amount {
        font-size: 28px;
    }
    
    .btn-apparel {
        padding: 18px 40px;
        font-size: 16px;
    }
    
    .apparel-impact {
        padding: 40px 30px;
    }
}

/* ==================== GALLERY SECTION ==================== */
.gallery-section {
    padding: var(--section-padding);
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
}

/* ==================== DONATE SECTION ==================== */
.donate-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--dark-bg), var(--primary-color));
    color: var(--white);
}

.donate-section .section-header h2,
.donate-section .section-header p {
    color: var(--white);
}

.donate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.donate-text h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 20px;
}

.donate-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.donation-impact {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    border-left: 4px solid var(--accent-color);
}

.donation-impact h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 20px;
}

.donation-impact ul {
    list-style: none;
    padding: 0;
}

.donation-impact li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 15px;
}

.donation-impact li:last-child {
    border-bottom: none;
}

.donate-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    color: var(--text-dark);
}

.checkout-placeholder {
    text-align: center;
    padding: 60px 40px;
    background: var(--light-bg);
    border-radius: 8px;
    margin-bottom: 30px;
}

.btn-checkout {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 18px 50px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.btn-checkout:hover {
    background: #A01828;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

.secure-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 15px;
}

.other-ways {
    padding-top: 30px;
    border-top: 2px solid var(--light-bg);
}

.other-ways h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 15px;
}

.other-ways p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: var(--text-light);
}

.other-ways strong {
    color: var(--text-dark);
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.memorial-dates {
    font-style: italic;
    margin-top: 10px;
    color: var(--secondary-color);
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 5px 0;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }
    
    .legacy-intro {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        padding-left: 80px;
        padding-right: 0;
    }
    
    .timeline-marker {
        left: 30px;
    }
    
    .timeline-content {
        flex-direction: column !important;
    }
    
    .timeline-image {
        flex: 1;
        width: 100%;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-pillars {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .donate-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-dates {
        font-size: 18px;
    }
    
    .hero-tagline {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-pillars {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .btn-primary {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* ==================== FLOATING CELEBRATION POPUP ==================== */
.celebration-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    animation: floatBounce 3s ease-in-out infinite;
    pointer-events: auto;
}

/* ==================== TRIBUTE MEMORIAL POPUP (TOP LEFT) ==================== */
.tribute-popup {
    position: fixed;
    top: 100px;
    left: 20px;
    z-index: 9998;
    animation: floatBounce 4s ease-in-out infinite;
    animation-delay: 0.5s;
    pointer-events: auto;
}

.tribute-content {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    max-width: 280px;
    border: 3px solid var(--accent-color);
    transition: all 0.3s ease;
    pointer-events: auto;
}

.tribute-content:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.5);
}

.tribute-content a {
    text-decoration: none;
    display: block;
}

.tribute-card {
    padding: 30px 25px;
    text-align: center;
    color: var(--white);
}

.tribute-icon {
    font-size: 50px;
    margin-bottom: 15px;
    animation: pulse 2s ease-in-out infinite;
}

.tribute-card h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--white);
}

.tribute-card p {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.95;
    line-height: 1.4;
}

.tribute-cta {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tribute-content:hover .tribute-cta {
    background: var(--accent-color);
    color: var(--white);
    transform: translateX(5px);
}

.close-tribute {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    pointer-events: auto;
}

.close-tribute:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: rotate(90deg) scale(1.1);
}

.close-tribute:active {
    transform: rotate(90deg) scale(0.95);
}

@keyframes floatBounce {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.celebration-content {
    position: relative;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    max-width: 350px;
    border: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
    pointer-events: auto;
}

.celebration-content:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.4);
}

.celebration-content img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    pointer-events: auto;
}

.close-popup:hover {
    background: var(--primary-color);
    transform: rotate(90deg) scale(1.1);
}

.close-popup:active {
    transform: rotate(90deg) scale(0.95);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .celebration-popup {
        bottom: 10px;
        right: 10px;
        left: auto;
        animation: floatBounce 4s ease-in-out infinite;
    }
    
    .celebration-content {
        max-width: 220px;
        border-width: 3px;
    }
    
    .close-popup {
        width: 35px;
        height: 35px;
        font-size: 24px;
        top: 8px;
        right: 8px;
    }
    
    .tribute-popup {
        top: 80px;
        left: 10px;
        animation: floatBounce 4s ease-in-out infinite;
    }
    
    .tribute-content {
        max-width: 200px;
        border-width: 2px;
    }
    
    .tribute-card {
        padding: 20px 15px;
    }
    
    .tribute-icon {
        font-size: 40px;
    }
    
    .tribute-card h4 {
        font-size: 18px;
    }
    
    .tribute-card p {
        font-size: 12px;
    }
    
    .tribute-cta {
        font-size: 11px;
        padding: 8px 15px;
    }
    
    .close-tribute {
        width: 30px;
        height: 30px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .celebration-content {
        max-width: 180px;
        border-width: 2px;
    }
    
    .close-popup {
        width: 30px;
        height: 30px;
        font-size: 20px;
    }
    
    .tribute-content {
        max-width: 180px;
    }
    
    .tribute-card {
        padding: 15px 12px;
    }
}

/* Pulse effect for extra attention */
@keyframes pulse {
    0% {
        box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
    }
    50% {
        box-shadow: 0 10px 50px rgba(255, 107, 53, 0.6);
    }
    100% {
        box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
    }
}

.celebration-content {
    animation: pulse 2s ease-in-out infinite;
}

.celebration-content:hover {
    animation: none;
}
