@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");





body {
  font-family: "Poppins", sans-serif;
  padding: 1em 0;
}

main {
  padding-top: 100px;
  padding-bottom: 5px;
  /* même valeur que la hauteur du header */
}



/* ............//// Showcase styling ////......... */


/* Conteneur principal */
#category {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  padding: 20px;
}

/* Carte individuelle */
.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 280px;
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border: 1px solid #eee;
  transition: transform 0.3s ease;
  position: relative;
}

/* Logo en haut */
.category-logo {
  object-fit: contain;
  margin: 0 auto 2px;
}

/* Titre et description */
.card h3 {
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 8px;
  color: #333;
}

.card p {
  font-size: 0.95em;
  text-align: center;
  color: #555;
  margin-bottom: 12px;
}

/* Section bas de carte */
.card-bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Prix */
#price {
  font-weight: bold;
  color: #2a7;
  margin-bottom: 10px;
  text-align: center;
}

/* Bouton */
.open-modal {
  padding: 10px 16px;
  background-color: #2a7;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.open-modal:hover {
  background-color: #1e5;
}


/*    Showcase description */
.showcase-area p {
  font-size: 1rem;
  color: #1d0393;
  line-height: 1.5;
}

.showcase-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 1rem;
}

.main-title {
  text-transform: uppercase;
  margin-top: 1em;
}


/* ///////////..utility classes../////////// */


.btn ,.view-button{
  display: inline-block;
  padding: 0.5em 1.5em;
  text-decoration: none;
  border-radius: 50px;
  cursor: pointer;
  outline: none;
  margin-top: 1em;
  text-transform: uppercase;
  font-weight: small;
  text-align: center;
}
.btn-secondary {
  color: #fff;
  background: #82074a;
}
.btn-primary,.view-button {
  color: #fff;
  background: #16a083;
}

.btn-primary:hover,.view-button:hover {
  background: #117964;
  transition: background 0.3s ease-in-out;
}

/* card */
.about-title{
  text-align: center;
  color: #333;
  margin: 2rem 0 1rem 0;
  font-size: 2.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.view-button{
  text-align: center;
  margin: 1rem auto;
}
.contact-form {
  max-width: 600px;
  margin: auto;
  padding: 2rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label,
.contact-form fieldset {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  flex: 1 1 100%;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.contact-form button {
  align-self: flex-start;
  padding: 0.6rem 1.2rem;
  background: #0ebde0;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #089bb8;
}

.contact-form i {
  color: #0ebde0;
  min-width: 20px;
}

.confirmation-message {
  margin-top: 2rem;
  padding: 1rem;
  background-color: #e6f9f9;
  border-left: 4px solid #0ebde0;
  color: #044d5c;
  font-weight: bold;
  border-radius: 6px;
  display: none;
  animation: fadeInSlide 0.8s ease forwards;
}

@keyframes fadeInSlide {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hidden {
  display: none;
}

/* Formulaire */
label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

input[type="text"],
textarea,
select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.large-input {
  width: 50%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

/* -------- Boutons -------- */
.open-modal {
  background-color: #28a745;
  color: white;
  padding: 0.6em 1.2em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.open-modal:hover {
  background-color: #3a8edb;
}

/* -------- Modale -------- */
#contactModal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 20%;
  width: 70%;
  height: 70%;
  background: rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

.modal-content,
#contactModal {
  background: white;
  margin: 10vh auto;
  border-radius: var(--radius);
  width: 90%;
  max-width: 500px;
  animation: fadeIn 0.6s ease-in-out;
  padding: var(--spacing);
}

/* footer section start */

#footer {
  background: #f7f7f7;
  padding: 1rem;
  /* padding-top: 5rem; */
  padding-top: 1rem;
  background-image: url(https://arena.km.ua/wp-content/uploads/3538533.jpg);
  color: #777777;
}

#footer2 {
  background: #f7f7f7;
  padding: 1rem;
  margin-top: 0px;
  /* padding-top: 5rem; */
  padding-top: 1rem;
  padding-bottom: 80px;
  background-image: url(../images/cards/v748-toon-111.png);
}


.social-links h2 {
  padding-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

.social-links img {
  padding-bottom: 25px;
}

.social-icons {
  /* display: flex;
    gap: 3rem; */
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #777777;
}

.social-icons a {
  /* font-size: 18px; */
  /* background: #ffffff; */
  /* box-shadow: rgb(0 0 0 / 8%) 0px 4px 12px;
    padding: 0.4rem 1rem 0.4rem 1rem;
    border-radius: 3px;
	color: #82074a; */
  /* margin-right: 18px; */
  color: #777777;
}

.social-icons a:hover {
  color: #000;
}

.social-icons a i {
  box-shadow: rgb(0 0 0 / 8%) 0px 4px 12px;
  padding: 0.4rem 1rem 0.4rem 1rem;
  border-radius: 3px;
  color: #82074a;
  font-size: 16px;
  margin-right: 12px;
}

li {
  list-style: none;
}

.useful-link h2 {
  padding-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

.useful-link img {
  padding-bottom: 15px;
}

.use-links {
  line-height: 32px;
}

.use-links li i {
  font-size: 14px;
  padding-right: 8px;
  color: #898989;
}

.use-links li a {
  color: #303030;
  font-size: 15px;
  font-weight: 500;
  color: #777777;
}

.use-links li a:hover {
  color: #000;
}

.address h2 {
  padding-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

.address img {
  padding-bottom: 15px;
}

.address-links li a {
  color: #303030;
  font-size: 15px;
  font-weight: 500;
  color: #777777;

}

.address-links li i {
  font-size: 16px;
  padding-right: 8px;
  color: #82074a;

}

.address-links li i:nth-child(1) {
  padding-top: 9px;
}

.address-links .address1 {
  font-weight: 500;
  font-size: 15px;
  display: flex;
}

.address-links {
  line-height: 32px;
  color: #777777;
}

.copy-right-sec {
  padding: 1rem;
  background: #82074a;
  color: #fff;
  text-align: center;
}

.copy-right-sec a {
  color: #fcd462;
  font-weight: 500;
}

a {
  text-decoration: none;
}

/* footer section end */

























