/* =========================================
   1. Variables & Reset
   ========================================= */
:root {
    --main-color: #fbb23e;
    /* Convertible Gold */
    --main-color-dark: #ff9800;
    --dark-bg: #1a1a1a;
    --light-bg: #f9f9f9;
    --text-color: #000000;
    --text-light: #aaa;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --spacing-section: 80px 0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 15px;
}

.small-container {
    max-width: 1000px;
    margin: 0 auto;
}

.section {
    padding: var(--spacing-section);
}

.bg-light {
    background-color: var(--light-bg);
}

.bg-dark {
    background-color: var(--dark-bg);
    color: var(--white);
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--white);
}

/* Connectors / Separators */
.separator {
    height: 3px;
    width: 60px;
    background-color: var(--main-color);
    margin: 1rem 0 2rem;
}

.separator.center {
    margin: 1rem auto 2rem;
}

.separator-light {
    height: 3px;
    width: 60px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 1rem 0 2rem;
}

.separator-light.center {
    margin: 1rem auto 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--main-color);
    color: var(--white);
    border-color: var(--main-color);
}

.btn-primary:hover {
    background-color: var(--main-color-dark);
    border-color: var(--main-color-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--text-color);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--text-color);
    border-color: var(--text-color);
}

.btn-outline-dark:hover {
    background-color: var(--text-color);
    color: var(--white);
}

.btn.sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* =========================================
   2. Header
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo svg {
    color: var(--main-color);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-list a.active,
.nav-list a:hover {
    color: var(--main-color);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition);
}

/* =========================================
   3. Hero Section
   ========================================= */
.hero-section {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slider-container {
    height: 100%;
    width: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.5s;
}

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

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content .subtext {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
    transition: var(--transition);
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--main-color);
    border-color: var(--main-color);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

/* =========================================
   4. Menu Preview
   ========================================= */
.dish-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.dish-card {
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.dish-card:hover {
    transform: translateY(-5px);
}

.dish-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.dish-info {
    padding: 20px;
    text-align: center;
}

.dish-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: var(--text-color);
}

.menu-list-preview {
    max-width: 800px;
    margin: 0 auto;
}

.menu-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 20px;
}

.menu-item .name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    flex-shrink: 0;
}

.menu-item .dots {
    flex-grow: 1;
    border-bottom: 2px dotted #ddd;
    margin: 0 15px;
    position: relative;
    top: -5px;
}

.menu-item .price {
    font-weight: 600;
    color: var(--main-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* =========================================
   5. Amenities Grid & FAQ Accordion
   ========================================= */
/* Amenities Grid (Collapsible Cards) */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 30px;
    align-items: start;
}

.amenities-card {
    background: var(--white);
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    cursor: pointer;
    height: fit-content;
}

.amenities-card:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--main-color);
}

.amenities-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.amenities-header h3 {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--text-color);
    font-weight: 600;
}

.amenities-header .toggle-icon {
    font-size: 1.2rem;
    color: var(--main-color);
    transition: transform 0.3s ease;
}

.amenities-card.active .toggle-icon {
    transform: rotate(45deg);
}

.amenities-list {
    margin-top: 15px;
    display: none;
    /* Hidden by default */
    border-top: 1px solid #f0f0f0;
    padding-top: 10px;
    animation: fadeIn 0.3s ease;
}

.amenities-card.active .amenities-list {
    display: block;
}

.amenities-list li {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.amenities-list .plus {
    color: var(--main-color);
    font-weight: bold;
    font-size: 0.8rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Accordion (FAQ) */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-color);
    text-align: left;
    transition: var(--transition);
}

.accordion-header:hover {
    color: var(--main-color);
}

.accordion-header .icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header .icon {
    transform: rotate(45deg);
    color: var(--main-color);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    padding-bottom: 20px;
    color: #666;
}

/* =========================================
   6. About Section
   ========================================= */
.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 20px 20px 0 var(--main-color);
}

.about-text {
    flex: 1;
}

/* =========================================
   7. Gallery
   ========================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 4px;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Lightbox */
.lightbox {
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    /* JS will toggle flex */
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox.open {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--white);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--main-color);
}

/* =========================================
   8. Info Section
   ========================================= */
.info-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.contact-info,
.opening-hours {
    flex: 1;
}

.contact-info h3,
.opening-hours h3 {
    margin-bottom: 20px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
}

.hours-list li:last-child {
    border-bottom: none;
}

/* =========================================
   9. Reviews Slider
   ========================================= */
.reviews-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.review-slide {
    display: none;
    text-align: center;
    padding: 20px;
    animation: fadeEffect 1s;
}

.review-slide.active {
    display: block;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.review-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
}

.review-author {
    font-weight: 700;
    color: var(--main-color);
}

.slider-controls {
    margin-top: 30px;
}

.review-prev,
.review-next {
    background: none;
    border: 1px solid var(--text-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 10px;
    transition: var(--transition);
}

.review-prev:hover,
.review-next:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: var(--white);
}

/* =========================================
   10. Form & Parallax
   ========================================= */
.review-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.parallax-section {
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 120px 0;
}

.parallax-section .overlay {
    background: rgba(0, 0, 0, 0.6);
    /* Darker overlay for better contrast */
}

/* Ensure content sits above overlay */
.parallax-section .container {
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-item h3 {
    color: var(--main-color);
    margin-bottom: 15px;
}

/* =========================================
   11. Footer
   ========================================= */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    color: var(--main-color);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a:hover {
    color: var(--main-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--main-color);
}

.footer-bottom {
    padding: 30px 0;
    font-size: 0.9rem;
    color: #777;
}

/* =========================================
   12. Responsive
   ========================================= */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
    }

    .about-image img {
        box-shadow: none;
    }

    .info-container {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        position: relative;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--dark-bg);
        transition: 0.4s ease;
        padding-top: 80px;
        text-align: center;
    }

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

    .nav-list {
        flex-direction: column;
        gap: 25px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

/* =========================================
   13. Menu Page Specifics
   ========================================= */
.menu-hero {
    height: 50vh;
    min-height: 400px;
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    /* Offset for fixed header */
}

.menu-hero .relative {
    position: relative;
    z-index: 2;
}

.category-nav-sticky {
    position: sticky;
    top: 70px;
    /* Adjust based on header height */
    z-index: 900;
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #eee;
}

.category-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.category-nav a {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: var(--text-color);
    padding: 5px 10px;
    border-radius: 4px;
}

.category-nav a:hover {
    color: var(--main-color);
    background: rgba(0, 0, 0, 0.03);
}

.menu-category-section {
    padding: 60px 0;
    scroll-margin-top: 120px;
    /* Offset for sticky header + nav */
    border-bottom: 1px dashed #eee;
}

.menu-category-section:last-child {
    border-bottom: none;
}

.category-title {
    color: var(--main-color);
    margin-bottom: 30px;
    font-size: 2rem;
    text-align: center;
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.detailed-menu-item {
    background: var(--white);
    padding: 20px;
    border-radius: 6px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.detailed-menu-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-color: #eee;
    transform: translateY(-3px);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.item-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-color);
}

.item-price {
    font-weight: 600;
    color: var(--main-color);
    font-size: 1.1rem;
    position: relative;
    /* Animation when hover parent */
    transition: transform 0.3s ease;
}

.detailed-menu-item:hover .item-price {
    transform: scale(1.1);
}

.item-desc {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    line-height: 1.4;
}

/* 4-Column Image Grid */
.menu-image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.menu-image-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
    transition: var(--transition);
}

.menu-image-grid img:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive for Menu Page */
@media (max-width: 768px) {
    .menu-image-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-hero {
        height: 40vh;
    }
}

@media (max-width: 480px) {
    .menu-image-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   14. More Places Carousel
   ========================================= */
.places-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.places-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.places-viewport {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.places-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.place-card {
    min-width: calc((100% - 60px) / 4);
    /* 4 cards visible, 3 gaps of 20px */
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.place-card:hover {
    transform: translateY(-5px);
}

.place-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.place-info {
    padding: 15px;
}

.place-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.place-info h4 {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0;
}

.places-nav-btn {
    background: var(--white);
    border: 1px solid #eee;
    color: var(--text-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    font-size: 1.2rem;
    z-index: 10;
}

.places-nav-btn:hover {
    background: var(--main-color);
    color: var(--white);
    border-color: var(--main-color);
}

/* Responsive Places Carousel */
@media (max-width: 1024px) {
    .place-card {
        min-width: calc((100% - 40px) / 3);
        /* 3 cards */
    }
}

@media (max-width: 768px) {
    .place-card {
        min-width: calc((100% - 20px) / 2);
        /* 2 cards */
    }
}

@media (max-width: 480px) {
    .place-card {
        min-width: 100%;
        /* 1 card */
    }

    .places-nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .places-nav-btn.prev {
        left: 0;
    }

    .places-nav-btn.next {
        right: 0;
    }
}

/* =========================================
   15. Listing Page Template
   ========================================= */
.page-header {
    background-color: var(--dark-bg);
    padding: 120px 0 60px;
    text-align: center;
    color: var(--white);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
    color: var(--white);
}

.breadcrumb span {
    color: var(--main-color);
}

.listing-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    padding: 60px 0;
}

/* Sidebar */
.sidebar {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    height: fit-content;
}

.sidebar-widget {
    margin-bottom: 40px;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.filter-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    position: relative;
    color: var(--text-color);
}

.filter-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--main-color);
}

.checkbox-list li {
    margin-bottom: 12px;
}

.checkbox-list label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #555;
    transition: var(--transition);
}

.checkbox-list label:hover {
    color: var(--main-color);
}

.checkbox-list input[type="checkbox"] {
    accent-color: var(--main-color);
    width: 18px;
    height: 18px;
}

/* Listing Grid */
.listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* Listing Card specific enhancements */
.listing-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.listing-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.card-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.listing-card:hover .card-image-wrapper img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--main-color);
    color: var(--white);
    padding: 5px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
}

.card-details {
    padding: 20px;
}

.card-rating {
    color: #ffc107;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.card-rating span {
    color: #999;
    font-size: 0.8rem;
    margin-left: 5px;
}

.card-details h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.card-address {
    color: #777;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.card-address svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    fill: var(--main-color);
    margin-top: 2px;
}

/* Responsive Listing */
@media (max-width: 900px) {
    .listing-container {
        grid-template-columns: 1fr;
    }

    .sidebar {
        margin-bottom: 40px;
    }

    .checkbox-list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 10px;
    }
}