
/* Reset and base styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

 body {
    scroll-behavior: smooth;
    
}


.site-header{

    background-color: #d42027;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    padding: 10px 40px;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 3px solid white;
    height: 120px;
    
    
}
.header-container {
   max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    position: relative;
    height: 100%;
    
}

.logo{
    
    height: 90px;
    align-items: center;
    
    
}

.logo img {
    width: auto;
    height:100% ;
    border-radius: 50%;
    
}

.site-title{
    text-align: center;
    position: absolute;
    left: 50%;
   transform: translateX(-50%);
}

.site-title h1 {
    
    
    color: #ffffff;
    font-weight: 700;
    font-size: 30px;
    margin: 0 20px;
    margin-left: auto;
  margin-right: auto;
 }

 .site-title p{
    color: #ffffff;
 }
 .main-nav{
  position: absolute;
  right: 0;
  bottom: 0;

 }
 .main-nav ul {
    display: flex;
    list-style: none;
    
}

.main-nav li {
    margin: 0 7px;
    
}

.main-nav a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    transition: color 0.3s ease;
    font-size: 16px;
}

.main-nav a:hover {
    color: #ee9b86;
}









/* Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #ffffff;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
    position: relative;
}

.mobile-menu-toggle .close-icon {
    display: none;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-icon {
    display: none;
}

.mobile-menu-toggle[aria-expanded="true"] .close-icon {
    display: block;
}







/* Hero Section*/

.hero {
    margin: 0px;
    width: 100%;
    min-height: 100vh;
    box-sizing: border-box;
    background-size: cover;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../images/sofia.webp);
    padding: 2rem 1rem;
    color: rgb(255, 255, 255);
    position: relative;
    text-align: center;
    border-bottom: 2px solid white;
}
   
.hero-text {

    text-align: left;
    

}
.hero-message { 
    font-size: 3.5rem;
    color: #d42027;
    font-weight: 1000;
    text-transform: uppercase;
    -webkit-text-stroke: 1px white;
    stroke: 1px white;
}

.sub-message {
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: 400;
}

.hero-subtext {
    font-size: 1.3rem;
    color: #ffffff;
    max-width: 600px;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
}

.hero-img {
    justify-content: center;
    padding-left: 0; 
    width: 50%;
    
 
    justify-content: center;
}
.hero-img img {
    max-width: 40%;
    height: auto;
    margin-top: 1rem;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.btn {
    background: #d42027;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 1rem;
    display: inline-block;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #a8161d;
    cursor: pointer;
}

.about, .work, .involved, .contact {
    text-align: center;
}

.about {
    position: relative;
    min-height: 70vh;
    padding: 4rem 2rem;
    background-color: #ecebeb;
    color: #333;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/gallery6.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.about h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #d42027;
}

.about h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    color: #d42027;
}

.about p {
    max-width: 800px;
    margin: 0 auto 1rem auto;
    line-height: 1.8;
}

.about-text,
.about-img,
.about-content {
    position: relative;
    z-index: 1;
}

.about-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
    color: #000000;
}

.about-card {
    background-color: rgba(255, 255, 255, 0.95);
    border-left: 5px solid #d42027;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card h2 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: #d42027;
}

.about-card p {
    margin: 0;
    line-height: 1.6;
}

.work {
    background: linear-gradient(to bottom right, #ffffff, #ffeaea);
    padding: 4rem 2rem;
    text-align: center;
    min-height: 70vh;
}

.work h2 {
    color: #d42027;
    margin-bottom: 2rem;
}

.work ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.work ul li {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    padding: 0.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
}

.work-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.work-card {
    background-color: #fff;
    border-left: 5px solid #d42027;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-img {
    width: 100%;
    margin-top: 1rem;
    border-radius: 8px;
    height: 180px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.work-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
    color: #d42027;
}

.work-card p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.involved {
    background: linear-gradient(rgba(255,255,255,0.78), rgba(255,255,255,0.78)), url('../images/wallpaper1.webp');
    background-size: cover;
    background-position: center;
    padding: 4rem 2rem;
    text-align: center;
    min-height: 70vh;
}

.involved-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.involved-card {
    background-color: #fff;
    border-left: 5px solid #d42027;
    padding: 2rem;
    border-radius: 10px;
    max-width: 350px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.involved-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.involved-card h3 {
    color: #d42027;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.involved-card p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.involved .btn {
    margin-top: 2rem;
    font-size: 1rem;
}

.impact-success {
    background: linear-gradient(to bottom, #fefefe, #f0f0f0);
    padding: 4rem 2rem;
    text-align: center;
    min-height: 70vh;
}

.impact-success h2 {
    color: #d42027;
    margin-bottom: 1rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.impact-box {
    background: #fff;
    padding: 2rem;
    border-left: 5px solid #d42027;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.impact-box:hover {
    transform: translateY(-5px);
}

.impact-box h3 {
    font-size: 2rem;
    color: #d42027;
}

.impact-box p {
    color: #333;
}

.testimonials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 1.5rem 2rem;
    position: relative;
    max-width: 350px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: left;
    font-style: italic;
    border-left: none;
    transition: transform 0.3s ease;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 40px;
    border-width: 15px 15px 0;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
    transform: rotate(0deg);
    filter: drop-shadow(0 -1px 1px rgba(0, 0, 0, 0.1));
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card p {
    margin: 0;
    color: #333;
    line-height: 1.6;
}

.testimonial-card h4 {
    font-style: normal;
    margin-top: 1rem;
    color: #d42027;
    font-size: 0.95rem;
    font-weight: bold;
}

.gallery {
    background-color: #fff;
    border-top: 3px solid #d42027;
    text-align: center;
    padding: 5rem 1rem;
    background: linear-gradient(to bottom, #ffffff, #fafafa);
    min-height: 90vh;
}

.gallery h2 {
    color: #d42027;
    margin-bottom: 1rem;
}

.gallery p {
    margin-bottom: 2rem;
    color: #333;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0 2rem;
    margin-bottom: 2rem;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

.gallery .btn {
    background-color: #d42027;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.gallery .btn:hover {
    background-color: #a3141a;
}

.contact {
    background-color: #ecebeb;
    border-top: 3px solid #d42027;
    padding: 4rem 2rem;
    text-align: center;
}

.contact h2 {
    color: #d42027;
    margin-bottom: 1rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #d42027;
    outline: none;
}

.contact-form .btn {
    display: inline-block;
    background-color: #d42027;
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
}

.contact-form .btn:hover {
    background-color: #a3141a;
}

.form-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    color: white;
    background-color: #28a745;
}

.about h2, .work h2, .involved h2, .contact h2 {
    color: #d42027;
    margin-bottom: 1rem;
}

ul {
    list-style: disc;
    padding-left: 1.5rem;
    text-align: left;
}

footer {
    background: #d42027;
    color: #fff;
    text-align: center;
    padding: 1rem;
    margin-top: 1rem;
    
}

.socials a {
    color: #fff;
    margin: 0 0.5rem;
    text-decoration: none;
}


@media (max-width: 1200px) {
  
}



/* Responsive adjustments */
@media (max-width: 768px) {

    .site-header{
        height: 100px;
        position: fixed;
        width: 100vw;
        top: 0;
        left: 0;
        padding: 0;
        


    }
    .header-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        
        width: 100%;
     

    }
    
    
    .site-title h1 {
        
        text-align: center;
        font-size: 20px;
        flex-grow: 1;
        white-space: nowrap;
    }
    .site-title p{
        font-size: 10px;
    }

    .logo{
        align-items: center;
       
        
         display: flex;
    }
    
    .logo img{
       
        
        width: 50px;
        height: auto;
        border-radius: 50%;
    }
    .main-nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 250px;
        background-color: #d42010;
        box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease-out;
        padding: 20px 0;
        max-height: 0;
        overflow: hidden;
        
    }
    
    .main-nav.active {
        right: 0;
        max-height: 100vh;
        overflow-y: auto;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .main-nav li {
        margin: 0;
    }
    
    .main-nav a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .main-nav li:last-child a {
        border-bottom: none;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 3;
    }







    .hero {
        flex-direction: column;
        padding: 2rem 1rem;
        text-align: center;
        min-height:70vh;
        height: 100vh;
        
    }

    .hero-img {
        padding-left: 0;
        display: flex;
        justify-content: center;
        margin-top: 2rem;
    }

    .hero-img img {
        max-width: 70%;
        
        display:none;
    }

    .hero-message {
        font-size: 2.5rem;
        -webkit-text-stroke: 0.5px white;
        display: flex;
        flex-direction: column;
    }

    .sub-message {
        font-size: 1.4rem;
    }
    .hero-text{
        text-align: center;
    }

    .hero-subtext {
        font-size: 1rem;
        max-width: 100%;
    }

    .btn {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }

    .work-cards {
        flex-direction: column;
        align-items: center;
    }

    .work-card {
        width: 90%;
    }

    .involved-options {
        flex-direction: column;
        align-items: center;
    }

    .involved-card {
        width: 90%;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .about-cards {
        flex-direction: column;
        align-items: center;
    }

    .about-card {
        width: 90%;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .testimonials {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-card {
        width: 90%;
    }

    .contact-form {
        width: 90%;
    }
}