/* Variables de couleurs */
:root {
  --primary-blue: #2b6cb0;
  --secondary-blue: #3182ce;
  --light-blue: #ebf8ff;
  --primary-green: #38a169;
  --secondary-green: #48bb78;
  --light-green: #f0fff4;
  --white: #ffffff;
  --light-gray: #f7fafc;
  --medium-gray: #e2e8f0;
  --dark-gray: #2d3748;
  --text-color: #2d3748; /* Renamed for clarity */
  --header-bg: #ffffff;
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 5px 20px rgba(0, 0, 0, 0.1);
  --shadow-heavy: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Reset et base */
*, *::before, *::after { /* Use universal selector with pseudo-elements for robust reset */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* Smooth scrolling for anchor links */
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--white);
  color: var(--text-color);
  line-height: 1.7; /* Slightly increased line-height for readability */
  -webkit-font-smoothing: antialiased; /* Better font rendering on macOS/iOS */
  -moz-osx-font-smoothing: grayscale; /* Better font rendering on macOS/iOS */
  padding-top: 8rem; /* IMPORTANT: Offset for fixed header height (adjust based on your header's total height) */
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; /* Keep consistent with inner paddings */
}

a {
    text-decoration: none;
    color: inherit; /* Inherit color by default, specific links can override */
}

img {
    max-width: 100%;
    height: auto;
    display: block; /* Removes extra space below images */
}

/* --- Header --- */
/* Fixed Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--header-bg);
    box-shadow: var(--shadow-light); /* Apply subtle shadow */
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px; /* Aligns with .container */
    margin: 0 auto;
    padding: 1rem 2rem; /* Reduced vertical padding slightly for a sleeker look */
    height: 5rem; /* Explicit height for the header content area */
}

.logo {

    align-items: center;
    height: 100%;
}

.logo a img {
    height: 60px; /* Adjusted size for logo */
    width: 60px;
    object-fit: contain; /* Use contain to ensure logo isn't cropped */
    transition: transform 0.2s ease;
}

.logo a:hover img { /* Hover on the anchor tag for better UX */
    transform: scale(1.05); /* Slightly increased scale */
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 2.5rem; /* Increased gap slightly */
}

.main-nav {
    display: flex;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2.5rem;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease; /* Removed all, specified color transition */
}

.nav-links li a:hover,
.nav-links li a:focus { /* Add focus for keyboard navigation */
    color: var(--primary-blue);
    outline: none; /* Remove default focus outline */
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px; /* Slightly thicker underline */
    background-color: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a:focus::after {
    width: 100%;
}

.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px; /* Increased padding for easier tap target */
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    display: block;
    width: 28px;
    height: 3px; /* Slightly thicker line */
    background-color: var(--text-color);
    margin: 6px 0; /* Adjusted margin */
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Animation du bouton hamburger */
.hamburger-btn[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg); /* Adjusted translation for thicker line */
    background-color: var(--primary-blue);
}

.hamburger-btn[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg); /* Adjusted translation for thicker line */
    background-color: var(--primary-blue);
}

/* --- Sections communes --- */
section {
  padding: 5rem 0; /* Increased vertical padding for more breathing room */
}

.section-header {
    text-align: center;
    margin-bottom: 3rem; /* Spacing between header and content */
}

h1 {
    font-size: 3.5rem; /* Example: for hero section title */
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h2 {
  font-size: 2.8rem; /* Slightly larger heading */
  margin-bottom: 1.5rem;
  color: var(--text-color);
  text-align: center;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 90px; /* Slightly wider underline */
  height: 4px;
  background: linear-gradient(to right, var(--primary-blue), var(--primary-green));
  margin: 0.8rem auto 0; /* Adjust vertical spacing */
  border-radius: 2px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #555; /* A bit lighter than main text */
    max-width: 800px;
    margin: 1rem auto 0;
    line-height: 1.6;
}

/* --- Hero Section --- */
.hero-section {
    background-image: url('https://images.unsplash.com/photo-1517400508000-dc081e7a6b8f?fit=crop&w=1400&q=80'); /* Example hero image */
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 10rem 0; /* More vertical padding */
    position: relative;
    z-index: 1; /* Ensure hero content is above background */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* --- Section Événements (Refined) --- */
.events {
  background-color: var(--light-gray);
}

.event-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Adjusted minmax for flexibility */
  gap: 2.5rem; /* Increased gap */
  margin-top: 2rem;
  margin: 4rem;
}

.event-card {
  background: var(--white);
  border-radius: 12px; /* Slightly more rounded corners */
  overflow: hidden;
  box-shadow: var(--shadow-medium); /* Use defined shadow variable */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex; /* Use flex for internal layout */
  flex-direction: column; /* Stack content vertically */
}

.event-card:hover {
  transform: translateY(-8px); /* Less aggressive translateY */
  box-shadow: var(--shadow-heavy); /* Use defined shadow variable */
}

.event-card img {
  width: 100%;
  height: 220px; /* Slightly taller images */
  object-fit: cover;
  flex-shrink: 0; /* Prevent image from shrinking */
}

.event-card-content { /* New class for content padding */
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Allow content to take available space */
}

.event-card h3 {
  font-size: 1.6rem; /* Slightly larger title */
  margin-bottom: 0.8rem; /* Adjusted margin */
  color: var(--primary-blue);
  line-height: 1.3;
}

.event-card p {
  font-size: 1rem;
  color: #555; /* Lighter text color */
  flex-grow: 1; /* Allow description to grow */
  margin-bottom: 1.5rem; /* Space before button */
}

.event-card .event-btn {
    align-self: flex-start; /* Align button to start */
    margin-top: auto; /* Push button to bottom */
    background-color: var(--primary-blue); /* Solid blue button */
    color: var(--white);
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.event-card .event-btn:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-2px);
}


/* --- Section Activités (Refined) --- */
.activities {
  background-color: var(--light-blue);
  text-align: center;
}

.activities p {
  max-width: 800px; /* Wider paragraph for subtitle */
  margin: 0 auto 3rem; /* More space below subtitle */
  font-size: 1.15rem; /* Match section-subtitle size */
  color: #555;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.activity-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.activity-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.activity-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.activity-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--primary-blue);
    line-height: 1.3;
}

.activity-card p {
    font-size: 1rem;
    color: #555;
    flex-grow: 1;
    margin-bottom: 1.5rem;
    text-align: left; /* Align text within card */
}

.activity-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    color: #444;
    text-align: left; /* Align features within card */
}

.activity-features li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.activity-features li i {
    color: var(--primary-green);
    margin-right: 0.6rem;
    font-size: 1.1em;
}

.activity-btn {
    align-self: flex-start;
    margin-top: auto;
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.activity-btn:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-2px);
}

/* Highlight card (if you still use this, otherwise remove) */
.highlight-card {
    border: 2px solid var(--primary-blue);
    position: relative;
}

.activity-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-green);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
}


/* --- Section À propos (Refined) --- */
.about-mini {
  background-color: var(--light-green);
  text-align: center;
}

.about-mini p {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.15rem;
  color: #555;
}

/* --- Section Partenaires (Refined) --- */
.partners {
  background-color: var(--white);
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem; /* Increased gap */
  margin-top: 2.5rem;
}

.partners-logos a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.2rem; /* Increased padding */
  background-color: var(--white);
  border-radius: 10px; /* Slightly more rounded */
  box-shadow: var(--shadow-light); /* Use light shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partners-logos a:hover {
  transform: scale(1.08); /* More pronounced hover */
  box-shadow: var(--shadow-medium);
}

.partners-logos img {
  height: 70px; /* Slightly larger logos */
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(80%); /* Less grayscale by default */
  opacity: 0.85; /* Slightly more opaque */
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.partners-logos a:hover img {
  filter: grayscale(0%); /* Full color on hover */
  opacity: 1;
}

/* --- Section Contact & Footer (Refined) --- */
.footer-section {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

.footer-section h3 {
  margin-bottom: 1.5rem; /* Increased margin */
  color: var(--white);
  font-size: 1.8rem;
}

.footer-section p {
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
}

.footer-section i {
  margin-right: 0.6rem;
  color: var(--primary-green); /* Consistent green */
  font-size: 1.1em;
}

/* Formulaire de contact */
.contact-form-container {
  background-color: var(--light-gray);
  padding: 4rem 0; /* Consistent with section padding */
}

.contact-form {
  max-width: 650px; /* Slightly wider form */
  margin: 0 auto;
  padding: 2.5rem; /* More padding */
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
}

.contact-form h3 {
  text-align: center;
  margin-bottom: 2rem; /* More space */
  color: var(--primary-blue);
  font-size: 2rem;
}

.form-group {
  margin-bottom: 1.8rem; /* Increased margin */
}

.form-group label { /* Added label styling */
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem; /* More padding in inputs */
  border: 1px solid var(--medium-gray);
  border-radius: 8px; /* Slightly more rounded */
  font-size: 1.05rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.2); /* Focus ring effect */
}

.form-group textarea {
  resize: vertical;
  min-height: 140px; /* Slightly taller textarea */
}

.submit-btn {
  display: block; /* Make it a block element to center easily */
  width: auto; /* Reset width */
  margin: 0 auto; /* Center the button */
  background: linear-gradient(to right, var(--primary-blue), var(--primary-green));
  color: var(--white);
  padding: 1rem 2.5rem; /* More padding */
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-4px); /* More pronounced hover */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25); /* Stronger shadow on hover */
}

/* Footer bottom */
footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 2.5rem 0; /* Adjusted padding */
  text-align: center;
}

.footer-social-links { /* New class for social icons container */
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-social-links a {
    color: var(--white);
    font-size: 1.8rem; /* Larger icons */
    margin: 0 0.8rem; /* More spacing between icons */
    transition: color 0.3s ease, transform 0.2s ease;
}

.footer-social-links a:hover {
    color: var(--secondary-green);
    transform: translateY(-3px); /* Subtle hover effect */
}

.footer-bottom {
  margin-top: 2.5rem; /* More space */
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15); /* Slightly more visible border */
  font-size: 0.95rem;
}

/* --- Buttons (General) --- */
/* Your existing .btn styling is good, integrating it more cleanly */
.btn {
  display: inline-block;
  background: var(--white);
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  padding: 0.8rem 2.5rem; /* Adjusted padding */
  border-radius: 30px;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.06);
  transition: all 0.3s cubic-bezier(.4,0,.2,1); /* Simplified transition property */
  text-decoration: none; /* Ensure no underline */
}

.btn:hover, .btn:focus {
  background: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
  box-shadow: 0 6px 18px rgba(44, 62, 80, 0.18); /* Stronger shadow on hover */
  transform: translateY(-3px) scale(1.02); /* Less aggressive scale, more translateY */
  outline: none;
}

.btn-section { /* Kept this for specific use cases if needed, but consider merging with .btn or .activity-btn */
  display: inline-block;
  background: linear-gradient(to right, var(--primary-blue), var(--primary-green));
  color: var(--white);
  padding: 0.9rem 2.2rem; /* Adjusted padding */
  border: none;
  border-radius: 6px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.btn-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}


/* section MAP */ 
/* --- Map Section Styling --- */

/* Section containing the map block */
#carte {
    background-color: var(--light-gray); /* Use a light background for contrast */
    padding: 5rem 0; /* Consistent section padding */
    text-align: center; /* Center the heading */
}

/* Map container specific styles */
.map-container {
    position: relative;
    width: 90%; /* Adjust width to fit your content area */
    max-width: 900px; /* Maximum width for larger screens */
    height: 450px; /* Fixed height for the map iframe */
    margin: 3rem auto 0 auto; /* Center the map container with margin from heading */
    border-radius: 12px; /* Slightly rounded corners for a modern look */
    overflow: hidden; /* Ensures the iframe respects the border-radius */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Soft, subtle shadow for depth */
    border: 1px solid var(--medium-gray); /* Subtle border for definition */
}

/* Styles for the iframe itself */
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0; /* Remove default iframe border */
    display: block; /* Ensures no extra space below the iframe */
    /* Add a slight filter for a subtle effect if desired, e.g., sepia or grayscale */
    /* filter: grayscale(20%); */
    /* transition: filter 0.3s ease; */
}

/* Optional: Hover effect for the map container */
/* .map-container:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
    transition: all 0.3s ease;
} */


/* --- Responsive Adjustments for Map Section --- */



/* --- Responsive Design --- */

/* Adjustments for wider tablets/laptops */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.2rem;
    }
    .hero-content p {
        font-size: 1.25rem;
    }
    h2 {
        font-size: 2.5rem;
    }
    .section-subtitle {
        font-size: 1.05rem;
    }
    .header-container {
        padding: 0.8rem 2rem;
    }
    body {
        padding-top: 7rem; /* Adjust padding for smaller header height */
    }
}


@media (max-width: 992px) {
    .header-container {
        padding: 1.2rem 1.5rem;
    }

    .nav-links {
        gap: 1.8rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 6rem; /* Adjust for mobile header height */
    }

    .header-container {
        height: auto; /* Allow header height to be flexible on mobile */
        min-height: 5rem;
    }

    .hamburger-btn {
        display: block;
        order: 2; /* Pushes hamburger to the right */
        margin-left: auto; /* Ensure it's pushed to the right */
    }

    .main-nav {
        position: fixed;
        top: 0; /* Start from the very top */
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        transition: right 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
        padding-top: 6rem; /* Space for the header above the menu items */
        z-index: 999; /* Below the hamburger but above page content */
        overflow-y: auto; /* Enable scrolling for long menus */
    }

    .main-nav.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        padding: 0 2rem;
        gap: 1.8rem; /* Slightly reduced gap for mobile */
        align-items: flex-start; /* Align links to the left in mobile menu */
    }

    .nav-links li {
        width: 100%; /* Make list items take full width */
    }

    .nav-links li a {
        font-size: 1.3rem; /* Larger font size for mobile links */
        color: var(--text-color);
        padding: 0.8rem 0; /* More vertical padding for tap targets */
        width: 100%; /* Make links take full width for tap targets */
    }

    .nav-links li a:hover,
    .nav-links li a:focus {
        color: var(--primary-blue);
    }

    /* Remove underline animation for mobile, or simplify */
    .nav-links li a::after {
        height: 2px;
    }

    .nav-wrapper {
        gap: 1.5rem;
    }

    section {
        padding: 3rem 0; /* Reduced section padding on mobile */
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    h2::after {
        width: 70px;
        margin: 0.6rem auto 0;
    }

    .section-subtitle,
    .activities p,
    .about-mini p {
        font-size: 1rem;
    }

    .event-cards,
    .activities-grid {
        grid-template-columns: 1fr; /* Single column on small screens */
    }

    .event-card-content,
    .activity-content {
        padding: 1.2rem;
    }

    .event-card h3,
    .activity-card h3 {
        font-size: 1.4rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-form h3 {
        font-size: 1.8rem;
    }

    .submit-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .footer-section {
        padding: 2rem 0;
    }

    .footer-section h3 {
        font-size: 1.6rem;
    }

    .footer-social-links a {
        font-size: 1.5rem;
    }
}

/* Even smaller screens (e.g., iPhone SE) */
@media (max-width: 480px) {
    .header-container {
        padding: 0.8rem 1rem;
    }
    .logo a img {
        height: 50px;
        width: 50px;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    .section-subtitle {
        font-size: 0.95rem;
    }
    .nav-links li a {
        font-size: 1.15rem;
    }
    .main-nav {
        width: 100%; /* Full width menu on very small screens */
        max-width: none;
    }
}

@media (max-width: 1024px) {
    .map-container {
        height: 400px; /* Slightly reduce height on medium screens */
    }
}

@media (max-width: 768px) {
    #carte {
        padding: 3rem 0; /* Reduced padding for mobile */
    }
    .map-container {
        width: 95%; /* Wider on smaller screens */
        height: 350px; /* Further reduce height for better fit on mobile */
        margin-top: 2rem; /* Adjusted margin */
    }
}

@media (max-width: 480px) {
    .map-container {
        height: 280px; /* Even smaller height for very small phones */
        border-radius: 8px; /* Less rounded corners for small screens */
    }
}