/* Fred Ilbeig Family Foundation Page Styles */

.foundation-page {
    background: #000;
    color: #fff;
    min-height: 100vh;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><path d="M0,400 Q300,200 600,400 T1200,400" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="2"/><path d="M0,500 Q300,300 600,500 T1200,500" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="2"/></svg>');
    background-size: cover;
    background-attachment: fixed;
}

.foundation-header {
    text-align: center;
    padding: 4rem 2rem 2rem;
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
}

.foundation-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
}

.foundation-title {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(211, 47, 47, 0.5);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.foundation-title span {
    color: #d32f2f;
}

.foundation-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.foundation-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    text-align: justify;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.foundation-section {
    margin-bottom: 3rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.foundation-section p {
    margin-bottom: 1.5rem;
    text-align: justify;
    text-transform: uppercase;
    font-weight: 500;
}

.foundation-motto {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.2) 0%, rgba(183, 28, 28, 0.2) 100%);
    border-radius: 12px;
    letter-spacing: 2px;
}

.foundation-motto span {
    color: #d32f2f;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.foundation-award {
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.15) 0%, rgba(183, 28, 28, 0.15) 100%);
    padding: 3rem;
    border-radius: 12px;
    margin: 3rem 0;
    border: 2px solid rgba(211, 47, 47, 0.3);
}

.foundation-award p {
    text-align: justify;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.foundation-cta {
    text-align: center;
    margin: 4rem 0;
}

.nominate-section {
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.2) 0%, rgba(183, 28, 28, 0.2) 100%);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

.nominate-title {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #d32f2f;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.nominate-arrow {
    font-size: 5rem;
    color: #fff;
    margin: 2rem 0;
    animation: bounce 2s infinite;
}

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

.nomination-form {
    max-width: 800px;
    margin: 3rem auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid rgba(211, 47, 47, 0.3);
}

.nomination-form h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #d32f2f;
    text-transform: uppercase;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #d32f2f;
    background: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-submit {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    color: white;
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.4);
}

.fred-image {
    text-align: right;
    margin-top: 3rem;
}

.fred-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .foundation-logo {
        max-width: 280px;
    }

    .foundation-title {
        font-size: 2rem;
    }

    .foundation-intro,
    .foundation-section p {
        font-size: 0.95rem;
    }

    .foundation-motto {
        font-size: 1.5rem;
        padding: 1.5rem;
    }

    .nominate-title {
        font-size: 2rem;
    }

    .nomination-form {
        padding: 2rem 1.5rem;
    }

    .fred-image img {
        max-width: 100%;
    }
}

/* Dark navbar override for foundation page */
.foundation-page .navbar {
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 2px solid rgba(211, 47, 47, 0.3);
}
