/*
Author Name: Lovett Brooks
Verson: 2.0
Theme: Ayiti Kago Sevis
url: ayitikago.com
*/
/*
Theme Name: AyitiKago
Theme URI: https://ayitikago.com
Author: Your Name
Description: Custom theme for Ayiti Kago Sevis.
Version: 1.0
*/

:root {
  --primary-color: #1A2B4C;
  --accent-color: #D62828;
  --bg-color: #F9F9F9;
  --text-color: #333;
}

body {
    font-size: 1rem;
    line-height: 1.6;
}

.section {
    padding: 2rem 1rem;
}

@media (max-width: 768px) {
    .header,
    .footer {
        flex-direction: column;
        text-align: center;
    }

    .nav-menu {
        flex-direction: column;
    }

    .service-box {
        padding: 1rem;
    }
}

/*
body {
  margin: 0;
  font-family: sans-serif;
  color: var(--text-color);
}

.section-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

*/

.hero {
  background: var(--accent-color);
  color: white;
  text-align: center;
  padding: 3rem 1rem;
}

.ayitikago-slideshow img {
    width: 100%;
    height: auto;
    object-fit: cover;
}


.slide img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

.testimonials {
  background: var(--bg-color);
  text-align: center;
}

h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.site-header {
  background: var(--primary-color);
  padding: 1rem 0;
  color: white;
}

.site-header .container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

.site-header a {
  color: white;
  text-decoration: none;
}

.main-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}

.main-menu li {
  display: inline;
}


.services {
  background: white;
  padding: 2rem 1rem;
  text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 1rem;
}


/*
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}
*/

.service-box {
    background: #f7f7f7;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.service-box:hover {
    transform: translateY(-5px);
}

.service-box img {
    max-width: 150%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
}



.contact-form {
  max-width: 600px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
}

.contact-form button {
  background-color: #0073aa;
  color: white;
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #005b8f;
}


.ak-message {
    padding: 12px 16px;
    margin: 16px 0;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
}
.ak-message.success {
    background-color: #d4f5dc;
    color: #2f6b35;
    border: 1px solid #88cc99;
}
.ak-message.error {
    background-color: #fde1e1;
    color: #9c2c2c;
    border: 1px solid #f5aaaa;
}


.about-us-page .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
}

.about-us-page h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 1rem;
}

.about-us-page p {
    font-size: 1.1rem;
    color: #555;
}

.about-content .grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
}

.about-content .text {
    flex: 1 1 50%;
}

.about-content .image {
    flex: 1 1 40%;
}


.about-content .image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}



.why-choose h2 {
    text-align: center;
    margin-top: 3rem;
    font-size: 2rem;
    color: #1a1a1a;
}

.why-choose .reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.why-choose .reason {
    background: #f7f7f7;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.why-choose .reason img {
    width: 140px;
    margin-bottom: 1rem;
}

.why-choose .reason h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: #003366;
}


.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: #25d366;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}
.whatsapp-button:hover {
  transform: scale(1.1);
}
.whatsapp-button img {
  width: 32px;
  height: 32px;
  display: block;
}
