/* Importing Fonts */
@font-face {
    font-family: "Poppins-Light";
    src: url('fonts/Poppins-Light.ttf');
}

@font-face {
    font-family: "Poppins-Medium";
    src: url('fonts/Poppins-Medium.ttf');
}

@font-face {
    font-family: "Poppins-Black";
    src: url('fonts/Poppins-Black.ttf');
}

@font-face {
    font-family: "Avenir-Medium";
    src: url('fonts/AvenirLTStd-Medium.otf');
}

@font-face {
    font-family: "Avenir-Black";
    src: url('fonts/AvenirLTStd-Black.otf');
}
/* Importing Fonts */

/* Basic Parameters */
:root {
    --color-1: #ffffff;
    --color-2: #010101;
    --color-3: #53D630;
    --font-1: "Poppins-Medium";
    --font-2: "Poppins-Black";
    --font-3: "Avenir-Medium";
    --font-4: "Avenir-Black";
    --font-5: "Poppins-Light"
}
/* Basic Parameters */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none !important;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("images/background.jpg");
    background-size: cover;
    z-index: -2;
}

.background-image-sign-up {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("images/background-sign-up.jpg");
    background-size: cover;
    z-index: -2;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.main-presentation-content {
    min-height: calc(100vh - 157px);
}

.main-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-card {
    background: rgba(1, 1, 1, 0.75);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10.2px);
    -webkit-backdrop-filter: blur(10.2px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    width: clamp(500px, 100%, 900px);
    position: relative;
    overflow: hidden;
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.02), transparent);
    transition: left 0s ease;
}

.login-card:hover::before {
    left: 100%;
    transition: left 0.8s ease;
}

.logo {
    text-align: center;
    margin-bottom: 30px;
}

.logo-sign-up {
    margin-bottom: 15px;
}

.logo img {
    height: 60px;
}

.mobile-nav-menu {
    position: relative;
}

.mobile-icon {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1000px;
    background: rgba(1, 1, 1, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8.2px);
    -webkit-backdrop-filter: blur(8.2px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.login-title {
    color: var(--color-1);
    font-size: 32px;
    font-family: var(--font-1);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.login-title-sign-up {
    margin-bottom: 20px;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.social-btn {
    width: 80%;
    padding: 15px 20px;
    border-radius: 1000px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-1);
    font-family: var(--font-3);
    font-size: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    position: relative;
    overflow: hidden;
}

.social-btn img {
    width: 30px;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1000px;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.social-btn:hover::before {
    opacity: 1;
}

.social-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.line-divider {
    width: 250px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.25);
}

.divider span {
    color: var(--color-1);
    padding: 0 20px;
    font-family: var(--font-3);
    font-size: 20px;
}

#loginForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#signUpForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.first-form-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.form-section p {
    color: var(--color-1);
    text-align: center;
    margin-bottom: 25px;
    font-family: var(--font-3);
    font-size: 17px;
    line-height: 1.5;
}

.form-section p span a {
    color: var(--color-1);
}

.form-group {
    width: 100%;
    margin-bottom: 20px;
}

.form-first-half {
    width: 70%;
}

.form-second-half {
    width: 30%;
}

.form-label {
    color: var(--color-1);
    font-family: var(--font-3);
    font-size: 18px;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-1);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-sign {
    max-width: 1000px;
    padding: 10px 20px;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-3);
    box-shadow: 0 0 0 2px rgba(0, 255, 135, 0.05);
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-1);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.continue-btn {
    width: 100%;
    max-width: 400px;
    padding: 15px 20px;
    border-radius: 1000px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(1, 1, 1, 0.4);
    color: var(--color-1);
    font-family: var(--font-3);
    font-size: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.continue-btn-sign-up {
    padding: 10px 20px;
}

.continue-btn:hover {
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.05);
}

.continue-btn:active {
    transform: translateY(0);
}


.background-container-home {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("images/background-img.png");
    background-size: cover;
    background-position: 50% 50%;
    z-index: -2;
}

.background-container-home.reservation {
    background: url("images/background-img.png");
}

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    position: relative;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("images/background.jpg");
    background-size: cover;
    z-index: -2;
}

.background-container-reservation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("images/background-img.png");
    background-size: cover;
    background-position: 50% 50%;
    z-index: -2;
}

.background-image-sign-up {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("images/background-sign-up.jpg");
    background-size: cover;
    z-index: -2;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.main-presentation-content {
    min-height: calc(100vh - 157px);
}

.main-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-card {
    background: rgba(1, 1, 1, 0.75);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10.2px);
    -webkit-backdrop-filter: blur(10.2px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    width: clamp(500px, 100%, 900px);
    position: relative;
    overflow: hidden;
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.02), transparent);
    transition: left 0s ease;
}

.login-card:hover::before {
    left: 100%;
    transition: left 0.8s ease;
}

.logo {
    text-align: center;
    margin-bottom: 30px;
}

.logo-sign-up {
    margin-bottom: 15px;
}

.logo img {
    height: 60px;
}

.mobile-nav-menu {
    position: relative;
}

.mobile-icon {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 1000px;
    background-color: rgba(136, 136, 136, 0.05);
}

.mobile-menu {
    position: absolute;
    top: 50px;
    left: -150px;
    padding: 10px 10px;
    display: flex;
    display: none; /* this is temporary */
    flex-direction: column;
    gap: 5px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(1, 1, 1, 0.7);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8.2px);
    -webkit-backdrop-filter: blur(8.2px);
}

.login-title {
    color: var(--color-1);
    font-size: 32px;
    font-family: var(--font-1);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.login-title-sign-up {
    margin-bottom: 20px;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.social-btn {
    width: 80%;
    padding: 15px 20px;
    border-radius: 1000px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-1);
    font-family: var(--font-3);
    font-size: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    position: relative;
    overflow: hidden;
}

.social-btn img {
    width: 30px;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1000px;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.social-btn:hover::before {
    opacity: 1;
}

.social-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.line-divider {
    width: 250px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.25);
}

.divider span {
    color: var(--color-1);
    padding: 0 20px;
    font-family: var(--font-3);
    font-size: 20px;
}

#loginForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#signUpForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.first-form-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.form-section p {
    color: var(--color-1);
    text-align: center;
    margin-bottom: 25px;
    font-family: var(--font-3);
    font-size: 17px;
    line-height: 1.5;
}

.form-section p span a {
    color: var(--color-1);
}

.form-group {
    width: 100%;
    margin-bottom: 20px;
}

.form-first-half {
    width: 70%;
}

.form-second-half {
    width: 30%;
}

.form-label {
    color: var(--color-1);
    font-family: var(--font-3);
    font-size: 18px;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-1);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-sign {
    max-width: 1000px;
    padding: 10px 20px;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-3);
    box-shadow: 0 0 0 2px rgba(0, 255, 135, 0.05);
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-1);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.continue-btn {
    width: 100%;
    max-width: 400px;
    padding: 15px 20px;
    border-radius: 1000px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(1, 1, 1, 0.4);
    color: var(--color-1);
    font-family: var(--font-3);
    font-size: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.continue-btn-sign-up {
    padding: 10px 20px;
}

.continue-btn:hover {
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.05);
}

.continue-btn:active {
    transform: translateY(0);
}


.background-container-home {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("images/background-home.jpg");
    background-size: cover;
    background-position: 50% 50%;
    z-index: -2;
}

/* Main Content */

.background-container-gallery {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("images/background-home.jpg");
    z-index: -2;
  }

  .background-container-gallery.reservation {
    background: url("images/background-img.png");
  }

.gallery-main-content {
    width: 100%;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 157px);
  }

  .gallery-main-content-container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    margin: 50px 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
  }

  .gallery-title {
    text-align: left;
    font-family: var(--font-4);
    font-size: 55px;
    margin: 0;
    color: var(--color-1);
    line-height: 1.2;
  }

  .gallery-description {
    text-align: left;
    color: var(--color-1);
    font-family: var(--font-5);
    font-size: 20px;
    margin: 0;
    max-width: 800px;
    line-height: 1.6;
  }

  .gallery-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
  }

  .gallery-item {
    position: relative;
    aspect-ratio: 10/7;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    background: rgba(1, 1, 1, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }

  .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .gallery-item:hover img {
    transform: scale(1.05);
  }

  .gallery-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .gallery-item:hover::after {
    opacity: 1;
  }

  .gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
  }

  .gallery-item:hover .overlay {
    opacity: 1;
  }

  .overlay-text {
    color: var(--color-1);
    font-family: var(--font-3);
    font-size: 20px;
    font-weight: 500;
  }

  /* Modal */
  .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .modal-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  }

  .modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: var(--color-1);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
  }
  
  


/* Header */
.header {
    z-index: 1000;
    width: 100%;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    left: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    padding: 0 20px;
}

.logo-accueil img {
    height: 50px;
}

.nav-menu {
    display: flex;
    gap: 50px;
    background: rgba(136, 136, 136, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8.2px);
    -webkit-backdrop-filter: blur(8.2px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1000px;
    padding: 5px 10px;
}

.mobile {
    display: none;
}

.nav-item {
    padding: 5px 10px;
    border-radius: 1000px;
    color: var(--color-1);
    text-decoration: none;
    font-family: var(--font-1);
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-item.active {
    background: rgba(255, 255, 255, 0.1);
    border: solid 1px rgba(255, 255, 255, 0.1);
    color: var(--color-1);
}

.nav-item:hover {
    color: var(--color-1);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.soccer-padel-container {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.connexion-btn {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background: rgba(1, 1, 1, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8.2px);
    -webkit-backdrop-filter: blur(8.2px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-1);
    border-radius: 1000px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-1);
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.connexion-btn:hover {
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.02);
}

.connexion-btn.active {
    background: rgba(136, 136, 136, 0.5);
}

/* Main Content */
.main-content {
    width: 100%;
    padding: 0px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.main-content-container {
    max-width: 1400px;
    width: 100%;
    height: 100%;
    display: flex;
    margin: 30px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.main-content-container.presentation-main {
    align-items: flex-start;
    padding: 0 20px;
}

.welcome-title {
    text-align: center;
    font-family: var(--font-4);
    font-size: 50px;
    margin: 0;
    color: var(--color-1);
    background-clip: text;
    line-height: 1.1;
}

.presentation-title {
    text-align: start;
    font-family: var(--font-4);
    font-size: 55px;
    margin: 0;
    color: var(--color-1);
    background-clip: text;
    line-height: 1.4;
}

.presentation-text {
    color: var(--color-1);
    font-family: var(--font-5);
    font-size: 20px;
    margin: 0;
}

.presentation-infos {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 100px;
}

.pres-info {
    padding: 20px 35px;
    background: rgba(1, 1, 1, 0.8);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--color-1);
    border-radius: 1000px;
}

.pres-info p {
    color: var(--color-1);
    font-family: var(--font-4);
    font-size: 35px;
    margin: 0;
}

.cards-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 150px;
}

.sport-card {
    background: rgba(1, 1, 1, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    padding: 60px 40px;
    min-width: 500px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    backdrop-filter: blur(20px);
}

.sport-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transition: left 0s ease;
}

.sport-card:hover::before {
    left: 100%;
    transition: left 0.6s ease;
}

.sport-card:hover {
    transform: translateY(-10px);
}

.sport-icon {
    width: 200px;
    height: 200px;
    margin: 0 auto 40px;
    position: relative;
}

.sport-icon img {
    width: 100%;
    height: 100%;
    transition: all 0.4s ease;
}

.sport-card:hover .sport-icon img {
    transform: scale(1.1);
}

.sport-title {
    font-size: 30px;
    color: var(--color-1);
    margin: 0;
    letter-spacing: 0.5px;
}

/* Main Content */
.contact-main-content {
    width: 100%;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 157px);
}

.contact-container {
    max-width: 1400px;
    width: 100%;
    background: rgba(1, 1, 1, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    padding: 60px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.contact-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transition: left 0s ease;
}

.contact-container:hover::before {
    left: 100%;
    transition: left 0.6s ease;
}

.contact-title {
    text-align: center;
    font-family: var(--font-4);
    font-size: 50px;
    margin-bottom: 60px;
    color: var(--color-1);
    line-height: 1.1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Form Section */
.form-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-section h3 {
    font-family: var(--font-2);
    font-size: 28px;
    color: var(--color-1);
    margin-bottom: 20px;
}

.form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.form-label {
    color: var(--color-1);
    font-family: var(--font-3);
    font-size: 18px;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-1);
    font-size: 16px;
    font-family: var(--font-5);
    transition: all 0.3s ease;
    resize: vertical;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-3);
    box-shadow: 0 0 0 2px rgba(83, 214, 48, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-control.textarea {
    min-height: 120px;
    resize: vertical;
}

#formTitle {
    font-family: var(--font-3);
    font-weight: 700;
}

#infoTitle {
    font-family: var(--font-3);
    font-weight: 700;
}

.submit-btn {
    width: 100%;
    padding: 15px 40px;
    margin-top: 10px;
    border-radius: 1000px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(1, 1, 1, 0.4);
    color: var(--color-1);
    font-family: var(--font-3);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    align-self: flex-start;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1000px;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.submit-btn:hover::before {
    opacity: 1;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.05);
}

/* Info Section */
.info-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-section h3 {
    font-family: var(--font-2);
    font-size: 28px;
    color: var(--color-1);
    margin-bottom: 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(83, 214, 48, 0.1);
    border-radius: 50%;
    color: var(--color-3);
    font-size: 20px;
}

.contact-details {
    flex: 1;
}

.contact-details h4 {
    font-family: var(--font-1);
    font-size: 18px;
    color: var(--color-1);
    margin-bottom: 5px;
}

.contact-details p {
    font-family: var(--font-5);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Social Media */
.social-media {
    margin-top: 20px;
}

.social-media h4 {
    font-family: var(--font-1);
    font-size: 20px;
    color: var(--color-1);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-1);
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(83, 214, 48, 0.1);
    color: var(--color-3);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 30px 20px;
}

.footer-content {
    max-width: 1400px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-text {
    text-align: center;
    color: var(--color-1);
    font-size: 18px;
}

.footer-credit {
    color: var(--color-1);
    font-size: 17px;
}

.footer-credit a {
    color: var(--color-1);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: #888888;
}

.background-container-padel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("images/background-img.png");
    background-size: cover;
    background-position: 50% 50%;
    z-index: -2;
}

/* Main Content */
.padel-main-content {
    width: 100%;
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(100vh - 157px);
}

/* Hero Section */
.hero-section {
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    padding-top: 120px;
    gap: 40px;
}

.hero-title {
    font-family: var(--font-4);
    font-size: 55px;
    color: var(--color-1);
    margin: 0;
    line-height: 1.2;
}

.hero-description {
    font-family: var(--font-5);
    font-size: 20px;
    color: var(--color-1);
    max-width: 800px;
    line-height: 1.6;
    margin: 0;
}

.reservation-btn {
    padding: 15px 60px;
    border-radius: 1000px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(1, 1, 1, 0.4);
    color: var(--color-1);
    font-family: var(--font-3);
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.reservation-btn:hover {
    box-shadow: 0 15px 40px rgba(1, 1, 1, 0.5);
}

/* Content Sections */
.content-section {
    max-width: 1400px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 80px 20px;
}

.content-section.reverse {
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.content-title {
    font-family: var(--font-4);
    font-size: 45px;
    color: var(--color-1);
    margin: 0;
    line-height: 1.3;
}

.content-description {
    font-family: var(--font-5);
    font-size: 18px;
    color: var(--color-1);
    line-height: 1.6;
    margin: 0;
}

.content-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    width: 100%;
    max-width: 500px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: url("images/stadium-image.png");
    background-size: cover;
    backdrop-filter: blur(10px);
}

/* Media Queries */
@media (max-width: 1200px) {
    .content-image {
        width: 100%;
    }

    .content-section {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .content-section.reverse {
        flex-direction: column;
    }

    .hero-title {
        font-size: 45px;
    }

    .content-title {
        font-size: 35px;
    }
}

@media (max-width: 900px) {
    .hero-section {
        padding: 60px 20px;
        gap: 30px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-description {
        font-size: 18px;
    }

    .content-section {
        padding: 60px 20px;
    }

    .content-title {
        font-size: 30px;
    }

    .content-description {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 35px;
    }

    .hero-description {
        font-size: 16px;
    }

    .content-title {
        font-size: 28px;
    }

    .image-container {
        height: 300px;
    }
}

@media (max-width: 450px) {
    .hero-title {
        font-size: 30px;
    }

    .hero-section {
        padding: 40px 20px;
    }

    .content-section {
        padding: 40px 20px;
    }

    .reservation-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}


/* Media Queries */
@media (max-width: 768px) {
    .main-container {
        padding: 15px;
    }
    
    .login-card {
        padding: 30px 25px;
        margin: 10px;
    }
    
    .login-title {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .social-btn, .form-control, .continue-btn {
        padding: 12px 18px;
        font-size: 15px;
    }
}

@media (max-width: 550px) {

    .mobile-menu {
        left: -100px;
    }

    .login-card {
        padding: 15px 20px;
        margin: 0;
    }
    
    .form-section p {
        font-size: 15px;
    }

    .divider {
        margin: 20px 30px;
    }

    .line-divider {
        width: 200px;
    }

    .social-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .login-card {
        border-radius: 16px;
    }
    
    .login-title {
        font-size: 20px;
    }
    
    .social-btn {
        padding: 8px 15px;
        font-size: 14px;
        gap: 10px;
    }
}

@media (min-width: 1200px) {
    .login-card {
        padding: 50px;
    }

    .sign-up-card {
        padding: 40px;
    }
}

@media (min-width: 1700px) {
    .sport-card {
        min-width: 600px;
        height: 500px;
    }   
}

@media (min-width: 1200px) {
    .main-content {
        height: calc(100vh - 157px);
    }
}

@media (max-width: 1000px) {
    .presentation-infos {
        gap: 50px;
    }
}

@media (max-width: 1200px) {

    .main-presentation-content {
        align-items: flex-start;
        min-height: calc(100vh - 300px);
    }

    .presentation-main {
        margin: 0;
    }

    .main-content {
        margin: 60px 0;
    }

    .cards-container {
        flex-direction: column;
        gap: 80px;
    }

    .pres-info p {
        font-size: 25px;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
    
    .mobile {
        display: flex;
        flex-direction: row;
        gap: 50px;
        justify-content: center;
        align-items: center;
    }

    .connexion-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 900px) {

    .main-content-container {
        margin: 50px 0;
        gap: 80px;
    }

    .welcome-title {
        font-size: 40px;
    }

    .pres-info p {
        font-size: 20px;
    }

    .presentation-title {
        font-size: 40px;
    }
    
    .presentation-text {
        font-size: 17px;
    }
}

@media (max-width: 769px) {

    .main-content {
        margin: 50px 0;
    }

    .pres-info p {
        font-size: 16px;
    }

    .navbar {
        flex-direction: row !important;
    }

    .nav-menu {
        display: none;
    }

    .navbar > .connexion-btn {
        display: none;
    }

    .main-content-container {
        gap: 50px;
    }

    .mobile {
        display: flex;
        flex-direction: row;
        gap: 50px;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 700px) {

    .presentation-main {
        gap: 50px;
    }

    .presentation-title {
        text-align: center;
    }

    .presentation-text {
        text-align: center;
    }

    .presentation-infos {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }

    .pres-info p {
        font-size: 23px;
    }
}

@media (max-width: 629px) {
    .main-content-container {
        gap: 40px;
        margin: 40px 0;
    }

    .presentation-title {
        font-size: 35px;
    }
    
    .presentation-text {
        font-size: 15px;
    }

    .footer-content {
        justify-content: center;
    }
}

@media (max-width: 600px) {

    .pres-info p {
        font-size: 19px;
    }

    .main-content-container.presentation-main {
        padding: 0;
    }

    .sport-card {
        min-width: 400px;
        height: 350px;
    }

    .sport-icon {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 450px) {
    .logo-accueil img {
        height: 40px;
    }

    .connexion-btn {
        padding: 8px 16px;
    }

    .mobile {
        gap: 20px;
    }

    .welcome-title {
        font-size: 30px;
    }

    .presentation-title {
        font-size: 30px;
    }

    .sport-card {
        min-width: 350px;
        height: 300px;
    }

    .sport-icon {
        width: 125px;
        height: 125px;
    }

    .footer-text {
        font-size: 16px;
    }
}

@media (max-width: 350px) {
    .sport-card {
        min-width: 300px;
        height: 250px;
    }

    .sport-icon {
        width: 100px;
        height: 100px;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gallery-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 900px) {
    .gallery-title {
      font-size: 40px;
    }

    .gallery-description {
      font-size: 17px;
    }

    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 769px) {
    .gallery-main-content {
      padding: 30px 20px;
    }

    .gallery-main-content-container {
      gap: 30px;
    }
  }

  @media (max-width: 600px) {
    .gallery-grid {
      grid-template-columns: 1fr;
      gap: 15px;
    }

    .gallery-title {
      font-size: 35px;
    }

    .gallery-description {
      font-size: 15px;
    }
  }

  @media (max-width: 450px) {
    .gallery-title {
      font-size: 30px;
    }

    .footer-text {
      font-size: 16px;
    }
  }

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-container {
        padding: 40px;
    }

    .contact-content {
        gap: 60px;
    }

    .contact-title {
        font-size: 40px;
    }
}

@media (max-width: 900px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-title {
        font-size: 35px;
        margin-bottom: 40px;
    }

    .form-section h3,
    .info-section h3 {
        font-size: 24px;
    }
}

@media (max-width: 769px) {
    .contact-container {
        padding: 30px 20px;
    }

    .main-content {
        padding: 20px;
    }
}

@media (max-width: 600px) {
    .contact-title {
        font-size: 30px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 450px) {
    .contact-container {
        padding: 20px 15px;
    }

    .contact-title {
        font-size: 25px;
    }

    .form-section h3,
    .info-section h3 {
        font-size: 20px;
    }
}

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

    * {
    box-sizing: border-box;
    }

    body {
    font-family: "Inter", sans-serif;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    color: white;
    position: relative;
    overflow-x: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    }

    .main-content {
        height: calc(100vh - 157px);
    }

    .splide__arrow svg {
        fill: var(--color-1);
        height: 15px;
        width: 15px;
    }

    .reservation-title {
        color: var(--color-1);
        font-family: var(--font-1);
    }

    .first-title-container {
        display: flex;
        flex-direction: row;
        gap: 300px;
    }

    .glass-effect {
        background: rgba(1, 1, 1, 0.5);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(8.2px);
        -webkit-backdrop-filter: blur(8.2px);
        border: 1px solid rgba(255, 255, 255, 0.5);
        color: var(--color-1);
        border-radius: 50px;
        text-decoration: none;
        font-family: var(--font-1);
        font-size: 15px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .stadium-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    max-width: 300px;
    }

    .splide {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .splide__track {
        max-width: 900px;
    }

    .splide__slide {
        max-width: 300px !important;
        margin: 0 !important;
    }

    .stadium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .stadium-card.selected {
    border: 2px solid #10b981;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
    }

    .stadium-image {
        width: 100%;
        height: 200px;
        background: url('images/stadium-image.png');
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-1);
        font-size: 30px;
        color: var(--color-1);
        
    }

    .stadium-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.2;
    }

    .date-item,
    .time-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
    }

    .date-item:hover,
    .time-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    }

    .date-item.selected,
    .time-item.selected {
    background: #10b981;
    border-color: #10b981;
    color: white;
    transform: scale(1.1);
    }

    .date-item.disabled,
    .time-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.05);
    }

    .reserve-btn {
    background: rgba(96, 96, 96, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1000px;
    padding: 5px 25px;
    color: var(--color-1);
    font-family: var(--font-1);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    }

    .reserve-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 1, 1, 0.4);
    }

    .reserve-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    }

    .popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    }

    .popup.show {
    opacity: 1;
    visibility: visible;
    }

    .popup-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    max-width: 400px;
    margin: 1rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    }

    .popup.show .popup-content {
    transform: scale(1);
    }

    .splide__arrow {
    background: rgba(1, 1, 1, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 50% !important;
    width: 30px !important;
    height: 30px !important;
    }

    .splide__arrow:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    }

    .splide__slide {
    opacity: 0.7;
    transform: scale(0.85);
    transition: all 0.3s ease;
    }

    .splide__slide.is-active {
    opacity: 1;
    transform: scale(1);
    }

    @media (max-width: 768px) {
    .stadium-image {
        height: 150px;
        font-size: 1.2rem;
    }

    .date-item,
    .time-item {
        padding: 0.75rem;
        min-width: 70px;
    }
    }

    @media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .reserve-btn {
        width: 100%;
        padding: 1rem;
    }
}


/* Main Content */
.main-content-event {
    width: 100%;
    padding: 0px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
}

.main-content-event-container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    margin: 60px 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 50px;
}

.events-title {
    text-align: center;
    font-family: var(--font-4);
    font-size: 55px;
    margin: 0;
    color: var(--color-1);
    line-height: 1.2;
}

.events-description {
    text-align: center;
    font-family: var(--font-5);
    font-size: 18px;
    color: var(--color-1);
    max-width: 800px;
    margin: 0;
    line-height: 1.6;
}

.events-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.event-card {
    background: rgba(1, 1, 1, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transition: left 0s ease;
}

.event-card:hover::before {
    left: 100%;
    transition: left 0.6s ease;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.event-image {
    width: auto;
    height: 200px;
    background: linear-gradient(45deg, #2d2d2d, #4a4a4a);
    position: relative;
    overflow: hidden;
    margin: 15px 15px;
    border-radius: 20px;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(1, 1, 1, 0.8);
    color: var(--color-1);
    padding: 5px 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-family: var(--font-1);
    font-size: 12px;
    font-weight: 600;
}

.event-content {
    padding: 25px;
}

.event-title {
    font-family: var(--font-2);
    font-size: 20px;
    color: var(--color-1);
    margin-bottom: 15px;
    line-height: 1.3;
}

.event-description {
    font-family: var(--font-5);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.5;
}

.event-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.event-time {
    font-family: var(--font-3);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-location {
    font-family: var(--font-3);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
}

.voir-plus-btn {
    width: 100%;
    padding: 12px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-1);
    font-family: var(--font-1);
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.voir-plus-btn:hover {
    transform: translateY(-2px);
}

/* Media Queries */
@media (max-width: 1200px) {
    .events-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 900px) {
    .main-content-event-container {
        margin: 40px 0;
        gap: 40px;
    }

    .events-title {
        font-size: 40px;
    }

    .events-description {
        font-size: 16px;
    }
}

@media (max-width: 769px) {
    .events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 629px) {
    .main-content-event-container {
        gap: 30px;
        margin: 30px 0;
    }

    .events-title {
        font-size: 35px;
    }

    .events-description {
        font-size: 15px;
    }
}

@media (max-width: 450px) {
    .events-title {
        font-size: 30px;
    }
}

/* Main Content */
.main-content-padel {
    width: 100%;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 157px);
}

.presentation-container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 80px;
}

.presentation-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.presentation-title {
    font-family: var(--font-4);
    font-size: 55px;
    margin: 0;
    color: var(--color-1);
    line-height: 1.2;
}

.presentation-text {
    color: var(--color-1);
    font-family: var(--font-5);
    font-size: 20px;
    line-height: 1.6;
    margin: 0;
}

.reserver-btn {
    padding: 15px 40px;
    border-radius: 1000px;
    background: var(--color-3);
    color: var(--color-2);
    text-decoration: none;
    font-family: var(--font-1);
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    align-self: flex-start;
    border: none;
    cursor: pointer;
}

.button-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.reserver-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(1, 1, 1, 0.3);
}

.presentation-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-container {
    width: 100%;
    max-width: 600px;
    position: relative;
}

.carousel-inner {
    border-radius: 20px;
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(1, 1, 1, 0.6);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: -50px;
}

.carousel-control-next {
    right: -50px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(1, 1, 1, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 20px;
    width: 20px;
    height: 20px;
}

.carousel-indicators {
    bottom: -40px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background: rgba(1, 1, 1, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .presentation-container {
        gap: 60px;
    }

    .presentation-title {
        font-size: 45px;
    }

    .presentation-text {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .presentation-container {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .presentation-left {
        align-items: center;
    }

    .reserver-btn {
        align-self: center;
    }

    .carousel-item img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .main-content {
        padding: 40px 20px;
    }

    .presentation-title {
        font-size: 35px;
    }

    .presentation-text {
        font-size: 16px;
    }

    .carousel-item img {
        height: 300px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .carousel-control-prev {
        left: -20px;
    }

    .carousel-control-next {
        right: -20px;
    }
}

@media (max-width: 576px) {
    .presentation-container {
        gap: 30px;
    }

    .presentation-title {
        font-size: 28px;
    }

    .presentation-text {
        font-size: 15px;
    }

    .reserver-btn {
        padding: 12px 30px;
        font-size: 16px;
    }

    .carousel-item img {
        height: 250px;
    }
}

@media (max-width: 450px) {
    .presentation-title {
        font-size: 24px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}