/* Base Styles */
html {
  font-size: 14px;
  position: relative;
  min-height: 100%;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  margin-bottom: 60px;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

/* Protect The Point - Custom Styles */
.hero-section {
    background: linear-gradient(135deg, #4a00e0 0%, #8e2de2 100%);
    min-height: 80vh;
}

.section-padding {
    padding: 4rem 0;
}

.contact-form input, .contact-form textarea, .contact-form select {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
}

.highlight-card {
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    background: linear-gradient(135deg, #4a00e0 0%, #8e2de2 100%);
    height: 64px;
    width: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #4a00e0 0%, #8e2de2 100%);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3900b3 0%, #7d26ca 100%);
}

.countdown {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d81b60;
}

.card-gradient {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4ecfb 100%);
}

/* Purpose Cards */
.purpose-card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: 30px auto 50px auto;
    padding: 0 10px;
}

.purpose-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 25px;
    flex: 1 1 calc(100% - 40px);
    max-width: calc(100% - 40px);
    box-sizing: border-box;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    min-width: 280px;
    text-align: left;
}

.purpose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.purpose-card strong {
    color: #0056b3;
}

/* Media queries for responsiveness of purpose cards */
@media (min-width: 600px) {
    .purpose-card {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media (min-width: 992px) {
    .purpose-card {
        flex: 1 1 calc(25% - 15px);
        max-width: calc(25% - 15px);
    }
}

/* About Section */
.about-text-container {
    max-width: 900px;
    margin: 0 auto 30px auto;
    padding: 0 10px;
}

/* Form Panel */
.form-panel-container {
    display: flex;
    justify-content: center;
    padding: 20px;
    margin-bottom: 30px;
}

.form-panel {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 600px;
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.form-panel:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #4a00e0;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
}

.form-group textarea {
    min-height: 80px;
}

.checkbox-group {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.checkbox-item input[type="checkbox"] {
    margin-right: 0.75rem;
    transform: scale(1.2);
}

.form-submit-button {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #4a00e0 0%, #8e2de2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.form-submit-button:hover {
    background: linear-gradient(135deg, #3900b3 0%, #7d26ca 100%);
    transform: translateY(-2px);
}

/* Donate Button */
#donate {
    text-align: center;
    margin: 20px 0;
}

.donate-button {
    display: inline-block;
    background-color: #4a00e0;
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(74, 0, 224, 0.3);
}

.donate-button:hover {
    background-color: #3a00b8;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(74, 0, 224, 0.4);
    text-decoration: none;
    color: white;
}

.donate-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(74, 0, 224, 0.3);
}

.donate-button:focus {
    outline: 2px solid #4a00e0;
    outline-offset: 2px;
}

/* Social Media */
#socialmedia {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    fill: #666;
    transition: fill 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.social-icon:hover {
    fill: #333;
    transform: translateY(-2px);
}

.social-link {
    text-decoration: none;
    display: inline-block;
}