*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #1a1a1a;
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat";
  margin: 0 0 24px 0;
  font-weight: 600;
  line-height: 1.2;
  color: #1a1a1a;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}
@media (min-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
}

h2 {
  font-size: 2rem;
}
@media (min-width: 1024px) {
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  font-size: 1.5rem;
}
@media (min-width: 1024px) {
  h3 {
    font-size: 1.75rem;
  }
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin: 0 0 24px 0;
}

a {
  color: #6f6f6f;
  text-decoration: none;
  transition: color 150ms ease-in-out;
}
a:hover {
  color: #9f9f9f;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  outline: none;
}

ul, ol {
  margin: 0 0 24px 0;
  padding-left: 32px;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: background-color 250ms ease-in-out;
}
.header.scrolled {
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}
.header .header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.header .logo {
  font-size: 1.75rem;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: #1a1a1a;
  letter-spacing: -0.8px;
}
.header .logo:hover {
  color: #6f6f6f;
}

.nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 32px;
}
.nav a {
  color: #5a5a5a;
  font-weight: 400;
  padding: 8px 16px;
  border-radius: 4px;
  transition: color 150ms ease-in-out, background-color 150ms ease-in-out;
}
.nav a:hover, .nav a.active {
  color: #1a1a1a;
  background-color: #f5f5f5;
}
@media (max-width: 767px) {
  .nav {
    display: none;
  }
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  outline: none;
  padding: 8px;
}
@media (max-width: 767px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu-toggle .icon {
  width: 24px;
  height: 2px;
  background-color: #1a1a1a;
  display: block;
  position: relative;
  transition: background-color 150ms ease-in-out;
}
.mobile-menu-toggle .icon::before, .mobile-menu-toggle .icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #1a1a1a;
  transition: transform 250ms ease-in-out;
}
.mobile-menu-toggle .icon::before {
  top: -8px;
}
.mobile-menu-toggle .icon::after {
  bottom: -8px;
}
.mobile-menu-toggle.active .icon {
  background-color: transparent;
}
.mobile-menu-toggle.active .icon::before {
  transform: rotate(45deg) translateY(8px);
}
.mobile-menu-toggle.active .icon::after {
  transform: rotate(-45deg) translateY(-8px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background-color: #ffffff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  padding: 24px;
  z-index: 999;
}
@media (max-width: 767px) {
  .mobile-nav.active {
    display: block;
  }
}
.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-nav ul a {
  display: block;
  padding: 16px;
  color: #5a5a5a;
  border-radius: 4px;
}
.mobile-nav ul a:hover, .mobile-nav ul a.active {
  color: #1a1a1a;
  background-color: #f5f5f5;
}

.main {
  padding-top: 80px;
  min-height: calc(100vh - 80px);
}

.hero {
  padding: 64px 0;
  text-align: center;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}
@media (min-width: 1024px) {
  .hero {
    padding: calc(64px * 1.5) 0;
  }
}
.hero h1 {
  margin-bottom: 24px;
}
.hero .lead {
  font-size: 1.25rem;
  color: #7a7a7a;
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.5;
}

.section {
  padding: 64px 0;
}
.section.section-gray {
  background-color: #f5f5f5;
}
.section .section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section .section-subtitle {
  text-align: center;
  color: #7a7a7a;
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 48px;
}

.footer {
  background-color: #2a2a2a;
  color: #e3e3e3;
  padding: 48px 0 32px;
}
.footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.footer .footer-content {
  display: grid;
  gap: 48px;
  margin-bottom: 48px;
}
@media (min-width: 1024px) {
  .footer .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}
.footer .footer-section h3 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 24px;
}
.footer .footer-section p,
.footer .footer-section address {
  font-style: normal;
  line-height: 1.8;
  margin: 0;
}
.footer .footer-section a {
  color: #e3e3e3;
}
.footer .footer-section a:hover {
  color: #ffffff;
}
.footer .footer-section a .logo {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 24px;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: -0.8px;
}
.footer .footer-section a .logo:hover {
  color: #6f6f6f;
}
.footer .footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid #5a5a5a;
  font-size: 0.875rem;
  color: #bcbcbc;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  transition: all 250ms ease-in-out;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn.btn-primary {
  background-color: #6f6f6f;
  color: #ffffff;
}
.btn.btn-primary:hover {
  background-color: #565656;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}
.btn.btn-outline {
  border-color: #6f6f6f;
  color: #6f6f6f;
  background-color: transparent;
}
.btn.btn-outline:hover {
  background-color: #6f6f6f;
  color: #ffffff;
}
.btn.btn-danger {
  background-color: #e74c3c;
  color: #ffffff;
}
.btn.btn-danger:hover {
  background-color: #d62c1a;
}
.btn.btn-success {
  background-color: #27ae60;
  color: #ffffff;
}
.btn.btn-success:hover {
  background-color: #1e8449;
}

.grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 1024px) {
  .grid.grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .grid.grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid.grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .grid.grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1280px) {
  .grid.grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 250ms ease-in-out;
}
.card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.card .card-image {
  position: relative;
  width: 100%;
  padding-bottom: 66.67%;
  overflow: hidden;
  background-color: #eee;
}
.card .card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease-in-out;
}
.card:hover .card-image img {
  transform: scale(1.05);
}
.card .card-content {
  padding: 24px;
}
.card .card-title {
  margin-bottom: 16px;
  font-size: 1.25rem;
}
.card .card-category {
  display: inline-block;
  font-size: 0.875rem;
  color: #7a7a7a;
  background-color: #f5f5f5;
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.card .card-description {
  color: #7a7a7a;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #5a5a5a;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 24px;
  border: 2px solid #e3e3e3;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 150ms ease-in-out;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #6f6f6f;
}
.form-group textarea {
  resize: vertical;
  min-height: 150px;
}
.form-group .error {
  color: #e74c3c;
  font-size: 0.875rem;
  margin-top: 8px;
}

.alert {
  padding: 24px 32px;
  border-radius: 8px;
  margin-bottom: 24px;
}
.alert.alert-success {
  background-color: #c8f3da;
  color: #145b32;
  border: 1px solid #89e5b0;
}
.alert.alert-error {
  background-color: #fdf3f2;
  color: #a82315;
  border: 1px solid #f8c9c4;
}
.alert.alert-warning {
  background-color: #fdedd4;
  color: #674105;
  border: 1px solid #fad9a4;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
}
.filters .filter-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  outline: none;
  padding: 16px 32px;
  border-radius: 12px;
  background-color: #f5f5f5;
  color: #5a5a5a;
  font-weight: 400;
  transition: all 150ms ease-in-out;
}
.filters .filter-btn:hover, .filters .filter-btn.active {
  background-color: #6f6f6f;
  color: #ffffff;
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}
.lightbox.active {
  display: flex;
}
.lightbox .lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}
.lightbox .lightbox-close {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  outline: none;
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #1a1a1a;
  transition: all 150ms ease-in-out;
}
.lightbox .lightbox-close:hover {
  background-color: #ffffff;
  transform: scale(1.1);
}
.lightbox .lightbox-prev,
.lightbox .lightbox-next {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  outline: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #1a1a1a;
  transition: all 150ms ease-in-out;
}
.lightbox .lightbox-prev:hover,
.lightbox .lightbox-next:hover {
  background-color: #ffffff;
}
.lightbox .lightbox-prev {
  left: 24px;
}
.lightbox .lightbox-next {
  right: 24px;
}
.lightbox .lightbox-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  padding: 24px;
  text-align: center;
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background-color: #eee;
}
.carousel .carousel-track {
  display: flex;
  transition: transform 350ms ease-in-out;
}
.carousel .carousel-slide {
  flex: 0 0 100%;
  position: relative;
}
.carousel .carousel-slide::before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}
.carousel .carousel-slide > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.carousel .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel .carousel-controls {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
}
.carousel .carousel-dot {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  outline: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  transition: all 150ms ease-in-out;
}
.carousel .carousel-dot.active {
  background-color: #ffffff;
  width: 32px;
  border-radius: 6px;
}
.carousel .carousel-prev,
.carousel .carousel-next {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  outline: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #1a1a1a;
  transition: all 150ms ease-in-out;
  opacity: 0;
}
.carousel .carousel-prev:hover,
.carousel .carousel-next:hover {
  background-color: #ffffff;
}
.carousel:hover .carousel-prev,
.carousel:hover .carousel-next {
  opacity: 1;
}
.carousel .carousel-prev {
  left: 24px;
}
.carousel .carousel-next {
  right: 24px;
}

.gallery {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.gallery .gallery-item {
  position: relative;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 8px;
}
.gallery .gallery-item::before {
  content: "";
  display: block;
  padding-bottom: 75%;
}
.gallery .gallery-item > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.gallery .gallery-item img {
  transition: transform 350ms ease-in-out;
}
.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

.admin-header {
  background-color: #2a2a2a;
  color: #ffffff;
  padding: 24px 0;
  margin-bottom: 32px;
}
.admin-header .admin-header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-header a {
  color: #ffffff;
}
.admin-header a:hover {
  color: #e3e3e3;
}

.admin-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 24px;
}

.admin-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  padding-bottom: 64px;
}

.admin-table {
  width: 100%;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.admin-table th,
.admin-table td {
  padding: 24px;
  text-align: left;
}
.admin-table thead {
  background-color: #f5f5f5;
  font-weight: 600;
}
.admin-table tbody tr {
  border-bottom: 1px solid #eee;
}
.admin-table tbody tr:hover {
  background-color: #f5f5f5;
}
.admin-table .actions {
  display: flex;
  gap: 16px;
}
.admin-table .btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

.image-preview-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  margin-top: 24px;
}
.image-preview-grid .image-preview-item {
  position: relative;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid #e3e3e3;
}
.image-preview-grid .image-preview-item::before {
  content: "";
  display: block;
  padding-bottom: 75%;
}
.image-preview-grid .image-preview-item > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.image-preview-grid .image-preview-item img {
  object-fit: cover;
}
.image-preview-grid .image-preview-item .remove-image {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  background-color: #e74c3c;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 150ms ease-in-out;
}
.image-preview-grid .image-preview-item:hover .remove-image {
  opacity: 1;
}
.image-preview-grid .image-preview-item.is-cover {
  border-color: #27ae60;
  border-width: 3px;
}
.image-preview-grid .image-preview-item.is-cover::after {
  content: "Couverture";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #27ae60;
  color: #ffffff;
  padding: 8px;
  font-size: 0.75rem;
  text-align: center;
}

.login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}
.login-container .login-card {
  background-color: #ffffff;
  padding: 48px;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  width: 100%;
  max-width: 400px;
}
.login-container .login-card h1 {
  text-align: center;
  margin-bottom: 32px;
}

img[loading=lazy] {
  opacity: 0;
  transition: opacity 250ms ease-in-out;
}
img[loading=lazy].loaded {
  opacity: 1;
}

/*# sourceMappingURL=style.css.map */
