/* ====================================
   GIVE PAGE STYLES
   ==================================== */

/* Hero Section */
.give-hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 80px;
    background-image: url('../image4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

/* Dark overlay for better content readability */
.give-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

/* Container */
.give-container {
    max-width: 900px;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Content Wrapper */
.give-content {
    background: white;
    border-radius: 24px;
    padding: 80px 60px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 43, 73, 0.06);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Decorative corner accents */
.give-content::before,
.give-content::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(0, 43, 73, 0.1);
    border-radius: 12px;
}

.give-content::before {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.give-content::after {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

/* Main Title */
.give-title {
    font-size: 48px;
    font-weight: 700;
    color: #002B49;
    margin: 0 0 40px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

/* Instructions Section */
.give-instructions {
    margin: 0 0 50px 0;
    position: relative;
    z-index: 1;
}

.give-text {
    font-size: 20px;
    line-height: 1.8;
    color: #333;
    margin: 0;
    font-weight: 400;
}

.give-text strong {
    color: #002B49;
    font-weight: 700;
}

/* Button Container */
.give-button-container {
    margin: 0 0 50px 0;
    position: relative;
    z-index: 1;
}

/* Donate Button */
.give-donate-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 60px;
    background: linear-gradient(135deg, #002B49 0%, #003d66 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 30px rgba(0, 43, 73, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.button-text {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

/* Shimmer effect */
.button-shimmer {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.give-donate-button:hover {
    background: linear-gradient(135deg, #002B49 0%, #F1C400 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 15px 45px rgba(0, 43, 73, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.give-donate-button:hover .button-shimmer {
    transform: translateX(100%) rotate(45deg);
}

.give-donate-button:hover .button-text {
    transform: scale(1.05);
}

.give-donate-button:active {
    transform: translateY(-1px);
    box-shadow: 
        0 8px 25px rgba(0, 43, 73, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

/* Tagline */
.give-tagline {
    margin: 0;
    position: relative;
    z-index: 1;
}

.tagline-text {
    font-size: 22px;
    font-style: italic;
    color: #002B49;
    margin: 0;
    font-weight: 500;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .give-hero-section {
        padding: 120px 20px 60px;
    }
    
    .give-content {
        padding: 60px 30px;
        border-radius: 16px;
    }
    
    .give-content::before,
    .give-content::after {
        width: 60px;
        height: 60px;
    }
    
    .give-content::before {
        top: 15px;
        left: 15px;
    }
    
    .give-content::after {
        bottom: 15px;
        right: 15px;
    }
    
    .give-title {
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .give-text {
        font-size: 18px;
    }
    
    .give-button-container {
        margin-bottom: 40px;
    }
    
    .give-donate-button {
        padding: 18px 50px;
        font-size: 16px;
    }
    
    .tagline-text {
        font-size: 19px;
    }
}

@media (max-width: 480px) {
    .give-content {
        padding: 40px 24px;
    }
    
    .give-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    .give-text {
        font-size: 16px;
    }
    
    .give-donate-button {
        padding: 16px 40px;
        font-size: 15px;
        width: 100%;
    }
    
    .tagline-text {
        font-size: 17px;
    }
}
