
/* --- HERO BANNER --- */
.hero-banner {
  position: relative;
  width: 100%;
  height: 65dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hero-banner::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: linear-gradient(to top, #161616 10%, transparent);
}

.image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px) brightness(50%);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.main-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 1rem;
}

/* --- TEXTES --- */
.big-title {
  font-size: 4.5rem;
  font-weight: 900;
  text-shadow: 2px 2px 8px rgba(250, 243, 243, 0.3);
  transform: scale(1.05) skewX(-3deg);
  margin-bottom: 1rem;
}

.big-title:hover {
  text-shadow: 4px 4px 12px rgba(231, 227, 227, 0.3);
  cursor: default;
}

.second-paragraph {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.795);
  text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
  font-weight: 700;
  margin-top: 0;
}








@media screen and (max-width: 450px) {

  .big-title {
    font-size: 3rem; 
    transform: scale(1) skewX(-2deg); 
  }


}










body.modal-open {
  overflow: hidden;
  height: 100vh; /
}











.subscription-card {
  background: rgba(27, 27, 27, 0.1);
  border: 1.5px solid #009dff;
  border-radius: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 157, 255, 0.2);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  height: 100%; 
}

.subscription-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 24px rgba(0, 157, 255, 0.4);
}

.subscription-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.subscription-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.subscription-content h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.subscription-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  color: #ffffffc7;
}

.subscription-features li {
  margin-bottom: 0.6rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.subscription-features li i {
  color: #009dff;
}





































.section-title {
  text-align: center;
  margin-bottom: 2rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 2rem;
  font-weight: 700;
}

.section-title i {
  color: #2c6ba5;
  font-size: 2.2rem;
}






.shop {
  padding: 4rem 2rem;
  backdrop-filter: blur(10px);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(300px, 1fr)); 
  gap: 2.5rem;
  max-width: 1400px; 
  margin: 0 auto;
}


.shop-card {
  background: rgba(255, 255, 255, 0.021);
  border: 1.5px solid rgba(255, 255, 255, 0.15); 
  border-radius: 1.2rem;
  overflow: hidden;
  backdrop-filter: blur(12px); 
  -webkit-backdrop-filter: blur(12px); 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  box-shadow: 0 3PX 12px rgba(62, 160, 255, 0.2);
  height: 500px;
  display: flex;
  flex-direction: column;
}


.shop-card:hover {
  transform: translateY(-8px);
  border:  solid 2PX #009dff;
  box-shadow: 0 15px 30px rgba(62, 160, 255, 0.5);
}

.shop-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;

}

.shop-card-content {
  padding: 1.8rem 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;  
}

.shop-card-content h3 {
  font-size: 1.5rem; 
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.shop-card-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  margin-bottom: 1.2rem;
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4; 
  -webkit-box-orient: vertical;
}

.price {
  display: block;             
  width: 100%;                  
  text-align: center;             
  background: #1c1d1d;
  color: white;
  padding: 0.9rem 1.2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 3px 8px rgba(23, 24, 24, 0.4);
  max-width: 100%;
  word-wrap: break-word;
  box-sizing: border-box;
}


.price:hover {
  background: #ffffffe8;
  color: #000000;
  box-shadow: 0 6px 12px rgba(44, 107, 165, 0.5);
  transition: all 0.3s ease;
}
















  .modal {

    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
  }


  .modal-content {
    background: #141414;
    border-radius: 1rem;
    padding: 3rem;
    width: 90%;
    max-width: 1100px;
    position: relative;
    border: 1px solid rgba(62, 160, 255, 0.3);
    max-height: 100vh;
    overflow-y: auto;
    box-shadow: 0 0 20px rgba(62, 160, 255, 0.4);
    box-sizing: border-box;
    color: white;
  }

.modal-content::-webkit-scrollbar {
  width: 8px;
}

.modal-content::-webkit-scrollbar-track {
  background: rgba(62, 160, 255, 0.1);
  border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: #2c6ba5;
  border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

.close {
  position: sticky;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
color: white;
  cursor: pointer;
  transition: color 0.3s ease;
  float: right;
  z-index: 2;
}

.close:hover {
  color: rgba(255, 255, 255, 0.644);
}

.modal-header {
  margin-bottom: 2rem;
}

.modal-header h2 {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.644);
  margin-bottom: 0.5rem;
}

.modal-header p {
color: white;
}

.modal-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.modal-image {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  object-fit: cover;
}

.modal-media iframe {
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  min-height: 250px;
}



.purchase-options {
  padding: 2rem;
  border-radius: 1rem;
margin-top: 2%;
  max-width: 800px;
  margin: 2rem auto;
  text-align: center;
}

.purchase-options label {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
  display: block;
}

.purchase-options select {
  background-color: #1f1f1f;
  color: white;
  border: 1px solid white;
  border-radius: 0.5rem;
  padding: 0.75rem 1.25rem;
  width: 100%;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
}

.purchase-options select:focus {
  background-color: #1f1f1f;
    background-color: #009dff;
  outline: none;
}

.purchase-options select option {
  background-color: #161616;
  color: var(--text);
}

.purchase-options a#purchase-link,
.purchase-options .purchase-btn {
  background-color: #009dff;
  color: var(--text);
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 8px rgba(62, 160, 255, 0.3);
  cursor: pointer;
  display: block;           
  width: 100%;             
  border: none;
  text-align: center;       
  box-sizing: border-box;   
}


.purchase-options a#purchase-link:hover,
.purchase-options .purchase-btn:hover {
    background-color: #009dff;

  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(62, 160, 255, 0.5);
}

.purchase-options a#purchase-link:active,
.purchase-options .purchase-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(62, 160, 255, 0.3);
}





















@media (max-width: 760px) {
  .modal-content {
    padding: 1.5rem;
    width: 95%;
    max-width: 95vw;
    max-height: 90vh;
  }

  .modal-media {
    display: block; 
    margin-bottom: 1rem;
  }

  .modal-media iframe,
  .modal-image {
    width: 100%;
    height: auto;
    min-height: 200px;
    margin-bottom: 1rem;
  }

  .purchase-options {
    padding: 1.5rem;
    max-width: 95vw;
    margin: 1.5rem auto;
  }

  .purchase-options label {
    font-size: 1.1rem;
  }

  .purchase-options select {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  .purchase-options a#purchase-link,
  .purchase-options .purchase-btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .close {
    font-size: 1.3rem;
    top: 0.5rem;
    right: 0.5rem;
  }

   .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem; 
  }

  .feature-item i {
    flex-shrink: 0; 
    font-size: 1.2rem; 
  }

  .feature-item span {
    white-space: normal; 
    word-break: break-word; 
    overflow-wrap: anywhere;
    flex: 1;
  }
}











@media (max-width: 1900px) {
  .shop-grid {
    grid-template-columns: repeat(3, 1fr); 
    max-width: 1300px;
  }
}

@media (max-width: 900px) {
  .shop-grid {
    grid-template-columns: 1fr; 
    max-width: 600px;
    padding: 0 1rem;
  }
}
@media (max-width: 768px) {
  .purchase-options {
    padding: 1.5rem;
    max-width: 90%;
  }

  .purchase-options select {
    font-size: 1rem;
    padding: 0.75rem;
  }

  .purchase-options a#purchase-link {
    padding: 0.75rem 1.5rem;
  }

  .section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  max-width: 500px;
  margin: 0 auto;
}

.section-title i {
  font-size: 1.5rem;
}

.section-title h2 {
  font-size: 1.5rem; 
  margin: 0;
}

}












