/* Custom CSS for Caribbean Restaurant Website */

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img,
video,
iframe,
object,
embed {
    max-width: 100%;
    height: auto;
}

iframe {
    border: 0;
}

html {
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}

body {
    width: 100%;
}

/* Preloader */
#preloader {
    transition: opacity 0.6s ease-out, visibility 0.6s;
    backdrop-filter: blur(10px);
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    position: relative;
    z-index: 10;
}

/* Preloader Logo Animation */
.preloader-icon-container {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 80px;
}

.preloader-icon {
    position: relative;
    z-index: 2;
    animation: preloaderPulse 1.5s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(6, 193, 103, 0.3));
}

@keyframes preloaderPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.1) rotate(5deg);
        opacity: 0.9;
    }
}

.preloader-ring {
    animation: preloaderRing 2s ease-in-out infinite;
    z-index: 1;
}

.preloader-ring-2 {
    animation: preloaderRing 2s ease-in-out infinite 0.5s;
    z-index: 0;
}

@keyframes preloaderRing {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

/* Preloader Title */
.preloader-title {
    opacity: 0;
    animation: preloaderTitleFade 0.8s ease-out 0.3s forwards;
}

@keyframes preloaderTitleFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading Dots */
.preloader-dots {
    margin-top: 1.5rem;
}

.preloader-dot {
    opacity: 0;
    animation: preloaderDotBounce 1.4s ease-in-out infinite;
}

.preloader-dot:nth-child(1) {
    animation-delay: 0s;
}

.preloader-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.preloader-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes preloaderDotBounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Floating Food Icons */
.preloader-food-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.preloader-food-icon {
    position: absolute;
    color: rgba(6, 193, 103, 0.2);
    font-size: 2rem;
    animation: preloaderFloat 4s ease-in-out infinite;
}

.preloader-food-icon.icon-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.preloader-food-icon.icon-2 {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.preloader-food-icon.icon-3 {
    bottom: 25%;
    left: 25%;
    animation-delay: 2s;
}

.preloader-food-icon.icon-4 {
    top: 35%;
    right: 15%;
    animation-delay: 1.5s;
}

@keyframes preloaderFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
        opacity: 0.4;
    }
}

/* Navigation */
#navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    max-width: 100vw;
    width: 100%;
    overflow-x: hidden;
}

#navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #06C167;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Parallax Section */
.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    min-height: 120%;
    background-image: url('https://images.unsplash.com/photo-1546069901-ba9599a7e63c?w=1920&h=1080&fit=crop');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    will-change: transform;
    transform: translateZ(0) translateY(0);
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.4);
}

.parallax-section .relative {
    z-index: 2;
}

/* Enhanced parallax with better performance */
@media (min-width: 769px) {
    .parallax-bg-image {
        height: 150%;
        min-height: 150%;
    }
}

/* Disable parallax on mobile for better performance */
@media (max-width: 768px) {
    .parallax-bg-image {
        background-attachment: scroll;
        height: 100%;
        min-height: 100%;
        transform: none !important;
    }
}

@media (max-width: 640px) {
    .parallax-section {
        height: 60vh;
    }
    
    .parallax-section h2 {
        font-size: 2rem;
    }
    
    .parallax-section p {
        font-size: 1rem;
    }
}

/* Hero Image Fade Slideshow */
.hero-image-container,
.hero-image-container-mobile {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    max-width: 100%;
}

.hero-image-container-mobile {
    min-height: 400px;
}

/* Prevent floating cards from causing overflow */
.hero-image-container .animate-float-card {
    max-width: calc(100% - 2rem);
}

@media (max-width: 768px) {
    .hero-image-container .animate-float-card {
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}

.hero-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    object-fit: cover;
    display: block;
}

.hero-slide-image.active {
    opacity: 1;
    z-index: 2;
}

/* Hero Section */
.hero-content > * {
    opacity: 0;
    transform: translateY(30px);
}

.hero-content h1 {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero-content p {
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.hero-content .cta-primary,
.hero-content .cta-secondary {
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float-card {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

.animate-float-card {
    animation: float-card 3s ease-in-out infinite;
}

/* Hero Badge Animation */
.hero-content span.bg-primary\/10 {
    animation: fadeInUp 0.8s ease-out 0s forwards;
}

/* Hero Features Animation */
.hero-content .flex.items-center.gap-2 {
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
    opacity: 0;
}

/* Hero Stats Animation */
.hero-content .flex.gap-8 {
    animation: fadeInUp 0.8s ease-out 1s forwards;
    opacity: 0;
}

.parallax-bg {
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.floating-element {
    will-change: transform;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.scroll-indicator {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* CTA Buttons */
.cta-primary {
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-primary:hover::before {
    width: 300px;
    height: 300px;
}

.cta-primary {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* About Section */
.counter {
    transition: all 0.3s ease;
}

/* Menu Section */
.menu-category.active {
    box-shadow: 0 4px 12px rgba(6, 193, 103, 0.3);
}

.menu-item-card {
    transition: all 0.3s ease;
    will-change: transform;
}

.menu-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.menu-item-card img {
    transition: transform 0.4s ease;
}

.menu-item-card:hover img {
    transform: scale(1.05);
}


.price-counter {
    transition: all 0.3s ease;
}

/* Gallery Section */
#gallery {
    overflow-x: hidden;
    max-width: 100vw;
}

.gallery-grid {
    max-width: 100%;
    overflow: hidden;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    will-change: transform;
    max-width: 100%;
}

.gallery-item img {
    transition: transform 0.4s ease, filter 0.3s ease;
    will-change: transform;
}

.gallery-item:hover {
    transform: translateY(-4px) rotate(2deg);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(6, 193, 103, 0);
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover::after {
    background: rgba(6, 193, 103, 0.3);
}

.gallery-item::before {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: white;
    font-size: 2rem;
    z-index: 1;
    transition: transform 0.3s ease;
}

.gallery-item:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-filter.active {
    box-shadow: 0 4px 12px rgba(6, 193, 103, 0.3);
}

/* Lightbox */
#lightbox {
    backdrop-filter: blur(10px);
}

#lightbox img {
    animation: lightboxZoom 0.3s ease-out;
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Feature Cards */
.feature-card {
    transition: all 0.3s ease;
    will-change: transform;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(6, 193, 103, 0.1);
    transition: height 0.3s ease;
}

.feature-card:hover::before {
    height: 4px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    transition: all 0.3s ease;
    will-change: transform;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
}

/* Testimonials */
.testimonials-carousel {
    position: relative;
    overflow: hidden;
    padding: 0 1rem;
}

.testimonials-container {
    overflow: hidden;
    width: 100%;
    margin-bottom: 1rem;
}

.testimonials-track {
    display: flex;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.testimonials-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.testimonial-card {
    transition: all 0.3s ease;
    will-change: transform;
    scroll-snap-align: start;
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Testimonial Navigation Buttons */
.testimonial-prev,
.testimonial-next {
    z-index: 20;
    cursor: pointer;
    border: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.testimonial-prev:active,
.testimonial-next:active {
    transform: translateY(-50%) scale(0.95);
}

@media (max-width: 768px) {
    .testimonials-carousel {
        padding: 0 2.75rem;
        position: relative;
    }
    
    .testimonial-card {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .testimonial-card .bg-white {
        padding: 1.5rem !important;
    }
    
    .testimonial-prev,
    .testimonial-next {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 0.875rem;
        background: white !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        z-index: 30;
        border: none;
        cursor: pointer;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    .testimonial-prev {
        left: 0.25rem !important;
        right: auto !important;
    }
    
    .testimonial-next {
        right: 0.25rem !important;
        left: auto !important;
    }
    
    .testimonial-prev:active {
        transform: translateY(-50%) scale(0.95) !important;
    }
    
    .testimonial-next:active {
        transform: translateY(-50%) scale(0.95) !important;
    }
    
    .testimonials-carousel .flex.justify-center {
        margin-top: 1rem;
        gap: 0.5rem;
    }
}

.star-rating .star {
    transition: all 0.2s ease;
}

.star-rating .star.filled {
    color: #06C167;
}

.star-rating .star.half {
    background: linear-gradient(90deg, #06C167 50%, #e5e7eb 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Social Icons */
.social-icon {
    transition: all 0.3s ease;
    will-change: transform;
}

.social-icon:hover {
    transform: scale(1.1);
}

/* Booking Form */
#time-slots button {
    transition: all 0.2s ease;
}

#time-slots button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    text-decoration: line-through;
}

#time-slots button.selected {
    background: #06C167;
    color: white;
    box-shadow: 0 4px 12px rgba(6, 193, 103, 0.3);
}

#guest-minus,
#guest-plus {
    transition: all 0.2s ease;
}

#guest-minus:active,
#guest-plus:active {
    transform: scale(0.95);
}

/* Feedback Form */
.feedback-tab.active {
    box-shadow: 0 4px 12px rgba(6, 193, 103, 0.3);
}

.feedback-tab-content {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.feedback-tab-content.hidden {
    display: none;
}

.star-rating i {
    transition: all 0.2s ease;
    cursor: pointer;
}

.star-rating i:hover {
    transform: scale(1.2);
}

.star-rating i.active {
    color: #fbbf24;
}

.star-rating i.filled {
    color: #06C167;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .floating-element {
        animation: none !important;
    }
    
    .cta-primary {
        animation: none !important;
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .parallax-bg {
        transform: none !important;
    }
    
    .floating-element {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.125rem;
    }
    
    /* Hide floating cards on mobile to prevent overflow */
    .hero-image-container .animate-float-card {
        display: none;
    }
    
    /* Constrain hero decorative background elements */
    #hero .absolute.inset-0.opacity-5 > div {
        max-width: 200px;
        max-height: 200px;
    }
    
    #hero .absolute.inset-0.opacity-5 .w-72,
    #hero .absolute.inset-0.opacity-5 .w-96 {
        width: 150px !important;
        height: 150px !important;
    }
    
    #hero .absolute.inset-0.opacity-5 .w-64 {
        width: 120px !important;
        height: 120px !important;
    }
    
    /* Fix testimonial navigation buttons */
    .testimonial-prev,
    .testimonial-next {
        position: relative !important;
        transform: none !important;
        margin: 1rem 0.5rem;
        display: inline-block;
    }
    
    .testimonials-carousel {
        padding: 0 1rem;
    }
    
    /* Ensure containers don't overflow */
    .container {
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Fix gallery grid */
    .gallery-grid {
        max-width: 100vw;
        overflow: hidden;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Form Validation */
input:invalid:not(:placeholder-shown),
textarea:invalid:not(:placeholder-shown) {
    border-color: #ef4444;
    animation: shake 0.3s ease;
}

input:valid:not(:placeholder-shown),
textarea:valid:not(:placeholder-shown) {
    border-color: #06C167;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-10px);
    }
    75% {
        transform: translateX(10px);
    }
}

/* Success Checkmark Animation */
.checkmark {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawCheckmark 0.6s ease-out forwards;
}

@keyframes drawCheckmark {
    to {
        stroke-dashoffset: 0;
    }
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: #06C167;
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Location Section - Map and Contact Card Height Matching */
.location-map {
    display: flex;
    min-height: 100%;
    max-width: 100%;
    overflow: hidden;
}

.location-map > div {
    display: flex;
    min-height: 100%;
    height: 100%;
    max-width: 100%;
    width: 100%;
}

.location-map iframe {
    min-height: 100%;
    height: 100%;
    max-width: 100%;
    border: 0;
    width: 100%;
}

.location-info {
    display: flex;
    min-height: 100%;
    max-width: 100%;
}

.location-info > div {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
    max-width: 100%;
    width: 100%;
}

/* Mobile responsiveness for Location Section */
@media (max-width: 768px) {
    #location {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    #location .grid {
        gap: 2rem;
    }
    
    .location-map {
        min-height: 300px;
        height: 300px;
        margin-bottom: 1rem;
    }
    
    .location-map > div {
        min-height: 300px;
        height: 300px;
    }
    
    .location-map iframe {
        min-height: 300px;
        height: 300px;
    }
    
    .location-info {
        min-height: auto;
        height: auto;
    }
    
    .location-info > div {
        min-height: auto;
        height: auto;
        padding: 1.5rem !important;
    }
    
    .location-info .space-y-6 > div {
        margin-bottom: 1.25rem;
    }
    
    .location-info .w-12 {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .location-info .text-lg {
        font-size: 1rem;
    }
    
    .location-info .text-gray-600 {
        font-size: 0.875rem;
    }
    
    .location-info .social-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 0.875rem;
    }
}

/* Ensure all sections are contained */
section {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Additional mobile fixes */
@media (max-width: 640px) {
    /* Fix hero section decorative elements */
    #hero .absolute.top-10.left-5,
    #hero .absolute.bottom-10.right-5 {
        display: none;
    }
    
    /* Fix sections padding */
    section {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Ensure all absolute positioned elements are contained */
    .absolute {
        max-width: 100vw;
    }
    
    /* Fix testimonial carousel on very small screens */
    .testimonials-carousel {
        padding: 0 2.5rem;
    }
    
    .testimonial-card {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }
    
    .testimonial-card .bg-white {
        padding: 1rem !important;
        font-size: 0.875rem;
    }
    
    .testimonial-card .text-gray-700 {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    .testimonials-carousel {
        padding: 0 2.5rem;
    }
    
    .testimonial-prev,
    .testimonial-next {
        width: 2rem;
        height: 2rem;
        font-size: 0.75rem;
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 30;
        display: flex !important;
    }
    
    .testimonial-prev {
        left: 0.125rem !important;
        right: auto !important;
    }
    
    .testimonial-next {
        right: 0.125rem !important;
        left: auto !important;
    }
    
    .testimonial-prev:active {
        transform: translateY(-50%) scale(0.95) !important;
    }
    
    .testimonial-next:active {
        transform: translateY(-50%) scale(0.95) !important;
    }
    
    .location-map {
        min-height: 250px;
        height: 250px;
    }
    
    .location-map > div {
        min-height: 250px;
        height: 250px;
    }
    
    .location-map iframe {
        min-height: 250px;
        height: 250px;
    }
    
    .location-info > div {
        padding: 1rem !important;
    }
    
    /* Fix container widths */
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

