/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Dark Mode Styling */
body {
    font-family: 'Quicksand', sans-serif;
    background: radial-gradient(circle, #1a1a1a, #0d0d0d);
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding: 1rem;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 2rem;
}

.title {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.subtitle {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* Bouncing Paw Animation */
.paw {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

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

/* Gallery Section */
.image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem;
}

.card {
    width: 280px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(135deg, #222, #444);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.2);
}

.card img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

/* Tribute Section */
.tribute {
    margin-top: 3rem;
    text-align: center;
    max-width: 800px;
    width: 100%;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.tribute-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
}

.tribute-content img {
    width: 300px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.tribute-text {
    max-width: 400px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.tribute-text em {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}
