 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;

 }

/* VARIABLES */
:root {
    --green: #1f7a53;
    --orange: #f4a024;
    --light-bg: #f7f9f8;
    --dark: #1a1a1a;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

body {
    /* font-family: "Segoe UI", Arial, sans-serif; */
    font-family:'Arial, sans-serif';
    background: var(--light-bg);
    color: var(--dark);
    line-height: 1.6;
    

}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background:  #2f5d3a;
    backdrop-filter: blur(8px);
    padding: 12px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
}

.logo img {
    width: 110px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    position: relative;
}
.navbar ul{
list-style:none;
display:flex;
gap:30px;
}

.navbar a{
text-decoration:none;
color:black;
font-weight:500;
}

.dropdown{
position:relative;
}

/* Hidden by default */
.dropdown-menu{
position:absolute;
top:100%;
left:0;
background:rgb(189, 118, 5);
display:none;
min-width:200px;
box-shadow:0 5px 20px rgba(0,0,0,.15);
z-index:999;
padding:0;
margin:0;

/* animation */
opacity:0;
transform:translateY(10px);
transition:.3s ease;
}

.dropdown-menu li{
padding:10px;
list-style:none;
}

/* Show on hover */
.dropdown:hover .dropdown-menu{
display:block;
opacity:1;
transform:translateY(0);
}

/* hover effect on items */
.dropdown-menu li:hover{
background:#824f0c;
}




/* Underline animation */
.nav a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: var(--orange);
    bottom: -4px;
    left: 0;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

/* HERO */
.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero-slides {
    position:absolute;
    width:100%;
    height:100%;
}

.hero-slide {
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    transition:opacity 1.5s ease;
}

.hero-slide.active {
    opacity:1;
}


/* Overlay content */

.hero-content {
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:left;
    align-items:left;
    color:white;
    text-align:center;
    background:rgba(0,0,0,.4);
}


/* BUTTONS */
.btn-group {
    margin-top: 25px;
}

.btn {
    background: var(--orange);
    color: white;
    padding: 14px 26px;
    margin: 5px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.btn:hover {
    background: #e28d12;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* SECTIONS */
.section {
    padding: 40px 20px;
    background: #f5f3ee;
    
}
.section-contact {
   
    margin-bottom: 30px;
    text-align: center;  
}

.section h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    position: relative;
    text-align: center;
}
.section h4 {
 
    margin-bottom: 30px;
    position: relative;
    margin-top: 30px;
}


/* underline title */
.section h2:after {
    content: "";
    width: 80px;
    height: 4px;
    background: var(--orange);
    display: block;
    margin: 10px auto;
    border-radius: 2px;
    position: relative;
    
}

/* CARDS */
.cards {
    display: flex;
    justify-content: center;
    gap: 25px; 
    flex-wrap: wrap;
    text-align: center;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    width: 300px;
    box-shadow: var(--shadow);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(14, 13, 13, 0.872);
}

/* FORMS */
form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

input, textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    text-align: center;
    
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 5px rgba(31,122,83,0.3);
}

/* FOOTER */
.socials a {
  margin: 30 10px;
  font-size: 25px;
  color: #1a1a1a;
  transition: 0.3s;
  margin-top: 30px;
}

.socials a:hover {
  color: #f4a024;
}

/* FOOTER */
.footer {
  background: #c7d7c4;
  padding: 80px 10px;
  color: #0e0d0d;
}

/* CONTAINER */
.footer-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 10px ;
  border-left: 0px solid #888;
  border-right: 0px solid #888;
  border-top: 0px solid #888;
  border-bottom: 2px solid #070707;
  
}

/* COLUMNS */
.footer-container > div {
  padding:10px;
}

/* DIVIDERS */
.footer-container > div:not(:last-child) {
  border-right: 1px solid #888;
}

/* LEFT */
.footer-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-top: 10px;
}


/* RIGHT LINKS */
.footer-right a {
  display: block;
  margin-bottom: 10px;
  color: black;
 
}

/* COPYRIGHT */
.copyright {
  text-align: right;
  margin-top: 20px;
  font-size: 1rem;
  margin-bottom: 0px;
}
/* ANIMATIONS */
.animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.animate.show {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    
    
        }
 }
/* RESPONSIVE */
@media (max-width: 600px) {
  .donation-buttons {
    flex-direction: column;
  }

    .nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

 
 }



.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
    min-height: 200px;
}

.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    align-items: center;
}
.split {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
}

/* Image */
.split .image {
    flex: 1;
}

.split .image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Texte */
.split .text {
    flex: 1;
}

.split .text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.split .text p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Inverser image / texte */
.split.reverse {
    flex-direction: row-reverse;
}

/* RESPONSIVE (mobile) */
@media (max-width: 768px) {
    .split,
    .split.reverse {
        flex-direction: column;
        text-align: center;
    }
}
.paypal-btn {
    background-color: #0d6eae;
    color: white;
    padding: 12px 25px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.paypal-btn:hover {
    background-color: #003964;
}
.gofundme{
    max-width: 10px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;   

}

.gofundme-btn {
    background-color: #ff6f61;
    color: white;
    padding: 12px 25px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 6px;
    display: inline-block;
    transition: background-color 0.3s ease;
    
}

.gofundme-btn:hover{ 

    background-color: #022d0a;
}
.slideshow {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 350px;
    margin: auto;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.socials a {
  margin: 0 10px;
  font-size: 24px;
  color: #1a1a1a;
  transition: 0.3s;
}

.socials a:hover {
  color: #f4a024;
}


