@charset "UTF-8";
/*
Theme Name: Achieve CCS
Author: Anthony Ruiz
Description: Thème pour le projet Achieve CCS.
Version: 1.1
Text Domain: achieve-ccs
Licence: CC0 1.0 Universal
License URI: https://creativecommons.org/publicdomain/zero/1.0/
*/
.text-center {
  text-align: center;
}

/* General Styles */
body {
  font-family: sans-serif;
  line-height: 1.8;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #f9f9f9;
}
body a {
  color: #007cba;
  text-decoration: none;
  font-weight: 600;
}
body a:hover {
  color: #005691;
  text-decoration: underline;
}

/* Header Styles */
header {
  background-color: #ffffff;
  padding: 2rem 3rem;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  box-shadow: 0px 0px 5px hsla(0, 0%, 0%, 0.3);
}
header .logo img {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
header .logo h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  color: #007cba;
}

/* Navigation Styles */
nav {
  display: flex;
  flex-direction: row;
}
nav .main-menu {
  list-style: none;
  display: flex;
  padding: 0;
  position: relative;
  gap: 10px;
}
nav .main-menu li {
  position: relative;
  padding: 5px;
  min-width: 150px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  text-align: center;
}
nav .main-menu li ul {
  list-style: none;
  position: absolute;
  display: none;
  padding: 0;
  box-shadow: 0px 0px 3px hsla(0, 0%, 0%, 0.3);
  background-color: white;
  color: white;
  z-index: 1000;
}
nav .main-menu li ul li > ul {
  right: 100%;
  top: 0;
}
@media (max-width: 768px) {
  nav .main-menu li ul li > ul {
    left: 100%;
    top: 0;
  }
}
nav .main-menu li:hover > ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Main Content Styles */
main {
  padding: 4rem 3rem;
}
main h1,
main h2 {
  color: #222;
}
main h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
main h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Footer Styles */
footer {
  text-align: center;
  padding: 3rem;
  background-color: #ffffff;
  border-top: 1px solid #e5e5e5;
  margin-top: 3rem;
}
footer p {
  margin: 0;
  color: #888;
  font-size: 0.9rem;
}

.footer-menu {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding: 0;
  position: relative;
  gap: 10px;
}
.footer-menu li {
  position: relative;
  padding: 5px;
  min-width: 150px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  text-align: center;
}
.footer-menu li > ul {
  bottom: 100%;
}
.footer-menu li ul {
  list-style: none;
  position: absolute;
  display: none;
  padding: 0;
  box-shadow: 0px 0px 3px hsla(0, 0%, 0%, 0.3);
  background-color: white;
  color: white;
  position: absolute;
  z-index: 1000;
}
.footer-menu li ul li > ul {
  right: 100%;
  bottom: 0;
}
.footer-menu li:hover > ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Button Styles */
a.button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #007cba;
  color: #ffffff;
  border-radius: 5px;
  transition: background-color 0.3s;
  font-weight: 700;
  text-transform: uppercase;
}
a.button:hover {
  background-color: #005691;
}

/* Section Styles */
section {
  padding: 4rem 3rem;
  margin-bottom: 3rem;
  background-color: #ffffff;
  box-shadow: 0px 0px 5px hsla(0, 0%, 0%, 0.3);
}
section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #222;
  font-weight: 700;
}

/* Responsive Styles */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }
  .main-menu {
    flex-direction: column;
    gap: 1rem;
  }
  main {
    padding: 2rem;
  }
  section {
    padding: 2rem;
  }
}/*# sourceMappingURL=style.css.map */