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

body {
    font-family: 'Patrick Hand', cursive;
    background-color: #F5F5DC; /* Cream background */
    color: #000;
    line-height: 1.6;
    font-size: 18px;
}

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

/* Header */
.header {
    background-color: #F5F5DC;
    border-bottom: 4px solid #000;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo img {
    height: 60px;
    width: auto;
    border: 3px solid #000;
    border-radius: 10px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #000;
    font-size: 20px;
    font-weight: bold;
    padding: 8px 16px;
    border: 3px solid #000;
    border-radius: 20px;
    background-color: #F5F5DC;
    transition: all 0.2s ease;
    font-family: 'Kalam', cursive;
}

.nav-link:hover {
    background-color: #FFD700;
    transform: rotate(-2deg);
}

/* Hero Section */
.hero {
    padding: 60px 0;
    text-align: center;
    border-bottom: 4px solid #000;
}

.hero-banner img {
    max-width: 100%;
    height: auto;
    border: 4px solid #000;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 8px 8px 0px #000;
}

.hero-title {
    font-family: 'Kalam', cursive;
    font-size: 4rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    text-shadow: 4px 4px 0px #FFD700;
    transform: rotate(-1deg);
}

.hero-subtitle {
    font-family: 'Kalam', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    transform: rotate(1deg);
}

.hero-tagline {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #000;
    font-style: italic;
}

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

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    font-family: 'Kalam', cursive;
    font-size: 1.2rem;
    font-weight: 700;
    border: 4px solid #000;
    border-radius: 25px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #FFD700;
    color: #000;
}

.btn-primary:hover {
    transform: rotate(-3deg) scale(1.05);
    box-shadow: 6px 6px 0px #000;
}

.btn-secondary {
    background-color: #F5F5DC;
    color: #000;
}

.btn-secondary:hover {
    transform: rotate(3deg) scale(1.05);
    box-shadow: 6px 6px 0px #000;
}

.btn-charity {
    background-color: #FF6B6B;
    color: #fff;
}

.btn-charity:hover {
    transform: rotate(-2deg) scale(1.05);
    box-shadow: 6px 6px 0px #000;
    background-color: #FF5252;
}

/* Section Styles */
section {
    padding: 80px 0;
    border-bottom: 4px solid #000;
}

/* Contract Address Section */
.ca-section {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ca-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.1) 10px,
        rgba(255,255,255,0.1) 20px
    );
    animation: shimmer 3s linear infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%); }
    100% { transform: translateX(100%) translateY(100%); }
}

.ca-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.ca-box {
    background-color: #F5F5DC;
    border: 6px solid #000;
    border-radius: 25px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 12px 12px 0px #000;
    transform: rotate(-1deg);
    transition: transform 0.3s ease;
}

.ca-box:hover {
    transform: rotate(0deg) scale(1.02);
}

.ca-label {
    font-family: 'Kalam', cursive;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    text-shadow: 2px 2px 0px #FFD700;
}

.ca-address {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
    background-color: #FFFACD;
    padding: 15px;
    border: 3px solid #000;
    border-radius: 15px;
    margin-bottom: 20px;
    word-break: break-all;
    letter-spacing: 1px;
    box-shadow: 4px 4px 0px #000;
}

.ca-copy-btn {
    font-family: 'Kalam', cursive;
    font-size: 1.1rem;
    font-weight: 700;
    background-color: #32CD32;
    color: #000;
    border: 4px solid #000;
    border-radius: 20px;
    padding: 12px 25px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 4px 4px 0px #000;
}

.ca-copy-btn:hover {
    transform: rotate(-2deg) scale(1.05);
    background-color: #00FF00;
    box-shadow: 6px 6px 0px #000;
}

.ca-copy-btn:active {
    transform: scale(0.95);
    box-shadow: 2px 2px 0px #000;
}

.ca-warning {
    font-family: 'Kalam', cursive;
    font-size: 1.1rem;
    font-weight: 700;
    color: #FF4500;
    background-color: #FFFACD;
    padding: 15px;
    border: 3px solid #FF4500;
    border-radius: 15px;
    transform: rotate(1deg);
    box-shadow: 4px 4px 0px #FF4500;
}

.section-title {
    font-family: 'Kalam', cursive;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #000;
    transform: rotate(-1deg);
}

/* Story Section */
.story {
    background-color: #F5F5DC;
}

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

.story-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    padding: 20px;
    border: 3px solid #000;
    border-radius: 15px;
    background-color: #FFFACD;
    transform: rotate(0.5deg);
    box-shadow: 4px 4px 0px #000;
}

.story-content p:nth-child(even) {
    transform: rotate(-0.5deg);
}

/* Gallery Section */
.gallery {
    background-color: #F5F5DC;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    text-align: center;
    padding: 20px;
    border: 4px solid #000;
    border-radius: 20px;
    background-color: #FFFACD;
    transform: rotate(1deg);
    transition: transform 0.2s ease;
}

.gallery-item:nth-child(2) {
    transform: rotate(-1deg);
}

.gallery-item:nth-child(3) {
    transform: rotate(0.5deg);
}

.gallery-item:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 8px 8px 0px #000;
}

.gallery-item img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border: 3px solid #000;
    border-radius: 10px;
    margin-bottom: 15px;
}

.gallery-caption {
    font-size: 1.1rem;
    font-weight: bold;
    color: #000;
    font-style: italic;
}

/* Mission Section */
.mission {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 50%, #FFB6B6 100%);
    position: relative;
    overflow: hidden;
}

.mission::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"><text y=".9em" font-size="90">🐱</text></svg>') repeat;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

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

.mission-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-box {
    background-color: #FFFACD;
    border: 6px solid #000;
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 12px 12px 0px #000;
    transform: rotate(-0.5deg);
    transition: transform 0.3s ease;
}

.mission-box:hover {
    transform: rotate(0deg) scale(1.02);
}

.mission-subtitle {
    font-family: 'Kalam', cursive;
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    text-shadow: 2px 2px 0px #FF6B6B;
}

.mission-box p {
    font-size: 1.3rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.mission-buttons {
    margin-top: 30px;
}

.mission-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #FFFACD;
    border: 4px solid #000;
    border-radius: 20px;
    transform: rotate(1deg);
    transition: transform 0.2s ease;
    min-width: 150px;
}

.stat-item:nth-child(2) {
    transform: rotate(-1deg);
}

.stat-item:nth-child(3) {
    transform: rotate(0.5deg);
}

.stat-item:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 6px 6px 0px #000;
}

.stat-number {
    font-size: 3rem;
    margin-bottom: 10px;
}

.stat-label {
    font-family: 'Kalam', cursive;
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    text-align: center;
}

/* Join Section */
.join {
    background-color: #F5F5DC;
    text-align: center;
}

.join-content {
    max-width: 600px;
    margin: 0 auto;
}

.join-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    padding: 20px;
    border: 3px solid #000;
    border-radius: 15px;
    background-color: #FFFACD;
    transform: rotate(-0.5deg);
    box-shadow: 4px 4px 0px #000;
}

.join-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    color: #000;
    font-family: 'Kalam', cursive;
    font-size: 1.1rem;
    font-weight: 700;
    border: 3px solid #000;
    border-radius: 20px;
    background-color: #FFD700;
    transition: all 0.2s ease;
}

.social-link:hover {
    transform: rotate(-2deg) scale(1.05);
    box-shadow: 4px 4px 0px #000;
}

/* Footer */
.footer {
    background-color: #F5F5DC;
    padding: 30px 0;
    text-align: center;
    border-top: 4px solid #000;
}

.footer p {
    font-size: 1rem;
    color: #666;
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 16px;
        padding: 6px 12px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .story-content p {
        font-size: 1.1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .join-links {
        flex-direction: column;
        align-items: center;
    }
    
    .mission-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .mission-subtitle {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .mission-box {
        padding: 25px;
    }
    
    .mission-box p {
        font-size: 1.1rem;
    }
}

