﻿/*@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');*/


/* Breadcrumb */
.breadcrumb-link {
    font-weight: 300;
    font-size: 1.125rem;
    color: var(--text-muted);
    transition: color 0.2s;
}

.breadcrumb-link:hover {
    color: var(--primary);
}

.breadcrumb-separator {
    color: var(--text-muted);
    margin: 0 0.5rem;
}

.breadcrumb-current {
    font-weight: 500;
    font-size: 1.125rem;
    color: var(--text-dark);
}

/* Villa Title */
.villa-title {
    font-weight: 700;
    font-size: 2.25rem;
    color: var(--text-dark);
}

.location-icon {
    color: var(--primary);
    font-size: 1.1rem;
}

.location-text {
    font-weight: 500;
    color: var(--text-light);
}

.superhost-badge {
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: rgba(50, 82, 223, 0.1);
    color: var(--primary);
    padding: 0.25rem 1rem;
    border-radius: 50px;
}

/* Price Display */
.price-amount {
    font-weight: 700;
    font-size: 2rem;
    color: var(--text-dark);
}

.price-unit {
    font-weight: 400;
    color: var(--text-muted);
}

/* Gallery */
.gallery-main {
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.gallery-secondary {
    height: 245px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.gallery-single {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.gallery-split {
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.02);
}

.view-more-overlay {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(21, 44, 91, 0.8);
    backdrop-filter: blur(4px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s;
}

.view-more-overlay:hover {
    background: var(--primary);
}

.h-50 {
    height: 50% !important;
}

/* Section Headings */
.section-heading {
    font-weight: 500;
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

/* About Text */
.about-text {
    font-weight: 300;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Amenity Items */
.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.825rem;
    color: var(--text-dark);
    transition: all 0.2s;
    height: 100%;
    overflow:hidden;
}

.amenity-item:hover {
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(50, 82, 223, 0.1);
}

.amenity-icon {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Treasure Items */
.treasure-item {
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    height: 100%;
}

.treasure-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.treasure-image {
    height: 120px;
    overflow: hidden;
}

.treasure-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.treasure-item:hover .treasure-image img {
    transform: scale(1.05);
}

.treasure-content {
    padding: 0.75rem 1rem;
}

.treasure-content h6 {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.treasure-content p {
    font-weight: 400;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* Booking Panel */
.booking-panel {
    background: #ffffff;
    border-radius: 28px;
    padding: 1.5rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition, all 0.3s ease);
    backdrop-filter: blur(0px);
}

    .booking-panel:hover {
        box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.12);
    }

.booking-title {
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.3px;
    color: #6c7a89;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.price-large {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.5rem;
    letter-spacing: -0.3px;
}

.price-night {
    font-weight: 400;
    font-size: 0.8rem;
    color: #8e9eae;
}

.book-button {
    width: 100%;
    padding: 0.85rem;
    background: linear-gradient(135deg, #2c3e50 0%, #1a2a3a 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

    .book-button i {
        font-size: 1rem;
        transition: transform 0.2s ease;
    }

    .book-button:hover {
        background: linear-gradient(135deg, #1a2a3a 0%, #0f1a24 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 14px rgba(26, 42, 58, 0.25);
    }

    .book-button:active {
        transform: translateY(0);
    }

.charge-notice {
    text-align: center;
    font-weight: 400;
    font-size: 0.7rem;
    color: #9aaebf;
    margin-top: 0.75rem;
    margin-bottom: 1rem;
}

.booking-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-weight: 400;
    font-size: 0.7rem;
    color: #8e9eae;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

    .booking-footer i {
        color: #7cb342;
        font-size: 0.8rem;
    }

.booking-panel-alt {
    background: #ffffff;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border-left: 3px solid #e8b86b;
}



/* Responsive adjustments */
@media (max-width: 992px) {
    .booking-panel {
        position: relative !important;
        top: 0 !important;
        margin-top: 1.5rem;
    }

    .price-large {
        font-size: 1.35rem;
    }
}

@media (max-width: 576px) {
    .booking-panel {
        padding: 1.25rem;
    }

    .booking-title {
        font-size: 0.85rem;
    }

    .price-large {
        font-size: 1.25rem;
    }

    .book-button {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
}

/* Date Selector */
.date-selector {
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 16px;
    margin-bottom: 1.25rem;
    border: 1px solid var(--border-light);
}

.date-label {
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.25rem;
}

.date-value {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* Book Button */
.book-button {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 14px;
    font-weight: 500;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background 0.2s;
}

.book-button:hover {
    color: white;
    background: var(--primary-dark);
}

.charge-notice {
    text-align: center;
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.booking-divider {
    margin: 1.25rem 0;
    border-color: var(--border-light);
}

/* Price Breakdown */
.breakdown-total {
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 1px solid var(--border-light);
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.05rem;
}

/* Booking Footer */
.booking-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.booking-footer i {
    color: var(--primary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-main {
        height: 300px;
    }

    .gallery-secondary {
        height: 145px;
    }

    .gallery-single,
    .gallery-split {
        height: 250px;
    }

    .villa-title {
        font-size: 1.25rem;
    }
}