@import url('https://fonts.googleapis.com/css2?family=Huninn&display=swap');

/* Note: Huninn font is now loaded from Google Fonts */

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

html {
    scroll-padding-top: 50px;
    scroll-behavior: smooth;
}

/* Optional work card style */
.work-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

body {
    font-family: 'Huninn', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}
/* * {
  outline: 1px solid red;
} */
/* Header */
.header {
    background: black;
    color: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-family: 'Huninn', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-decoration: none; 
    color: white;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #FF7088;
}

/* Hero Section */
.hero {
    /* background-image: url("header.svg");
    background-image: url("overlay.png"), url("header.svg"), linear-gradient(75deg, #FF7088 15%, #F2B69D 55%); */
    background: linear-gradient(75deg, #FF7088 15%, #F2B69D 55%);
    color: white;
    height: 100vh; /* Full device height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero h1 {
    font-family: 'Huninn', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero p {
    font-family: 'Huninn', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

/* Section Styles */
.section {
    padding: 120px 0;
}

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

.section-title {
    font-family: 'Huninn', sans-serif;
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
    letter-spacing: -1px;
}

.section-subtitle {
    font-family: 'Huninn', sans-serif;
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 4rem;
    color: #64748b;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.7;
}

/* About Section */
.about {
    background: white;
}

.about-content {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Our Work Section */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.work-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

/* .work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
} */

.work-card h3 {
    font-family: 'Huninn', sans-serif;
    color: #FF7088;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Team Section */
.team {
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.team-category h3 {
    font-family: 'Huninn', sans-serif;
    color: #FF7088;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    border-bottom: 3px solid #FF7088;
    padding-bottom: 0.8rem;
}

.team-member {
    margin-bottom: 1.5rem;
    padding: 1rem 0;
}

.member-info {
    text-align: left;
}

.member-name {
    font-family: 'Huninn', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.3rem;
}

.member-role {
    font-size: 1rem;
    color: #FF7088;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.member-info p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Join Us*/
.apply{
    background: white;
}

.team-cta {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(75deg, #FF7088 0%, #F2B69D 100%);
    border-radius: 20px;
    color: white;
}

.team-cta-title {
    font-family: 'Huninn', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-cta-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.team-cta-button {
    background: white;
    color: #FF7088;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.team-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Impact Section */
.impact {
    background: #f8f9fa;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: #FF7088;
    color: white;
    border-radius: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* FAQ Section */
.faq {
    background: white;
}

.faq-item {
    /* background: white; */
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 1.5rem;
    background: #FF7088;
    color: white;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background: #F2B69D;
}

.faq-answer {
    padding: 1.5rem;
    background: white;
}

/* Get Involved Section */
/* .get-involved {
    background: linear-gradient(75deg, #FF7088 0%, #F2B69D 100%);
    color: white;
    text-align: center;
}

.get-involved .section-title {
    color: white;
} */

/* Footer */
.contact-footer {
    background-color: #1a1a1a;
    padding: 60px 0;
    width: 100%;
}

.contact-title {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 2.5rem;
    color: #FF7088;
    margin-bottom: 30px;
    font-weight: 300;
}

.contact-subtitle {
    text-align: center;
    color: white;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background-color: white;
    font-family: 'Huninn', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b6b;
}

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

.form-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Huninn', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #ff6b6b;
    color: white;
}

.btn-primary:hover {
    background-color: #ff5252;
    
}

.btn-secondary {
    background-color: #ddd;
    color: #666;
}

.btn-secondary:hover {
    background-color: #ccc;
}

.social-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 10px 4px 4px;
    background-color: white;
    border-radius: 8px;
    text-decoration: none;
    color: #666;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* .social-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    color: #333;
} */

.social-item i {
    font-size: 20px; /* Change size */
    color: white; /* Change color */
    background-color: #ff6b6b; /* Circle color */
    border-radius: 50%;
    padding: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;;
}

.social-item i:hover {
    background-color: #ff5252; /* Color on hover */
    color: #555;
}

.social-text {
    font-size: 1rem;
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-footer {
        padding: 40px 20px;
    }

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

    .form-buttons {
        flex-direction: column;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin: 2rem auto 0 auto; 
    color: #FF7088;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

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

    .work-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}