/* =========================================
   Location Page Styles
   ========================================= */

.location-section {
    padding-top: 140px;
    padding-bottom: 100px;
    background-color: #fdfcfb;
    /* Cream background like Standard */
}

/* Header */
.location-header {
    margin-bottom: 60px;
    text-align: center;
}

.location-header .section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: #1d1d1f;
}

.location-subtitle {
    font-size: 1.15rem;
    color: #6e6e73;
    margin-top: 16px;
    text-align: center;
    line-height: 1.6;
}

.text-green-bold {
    color: #1d4d32;
    font-weight: 700;
}

/* Badges (Top) */
.area-main-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.area-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #1d4d32;
    /* Green Background */
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(29, 77, 50, 0.2);
    font-weight: 700;
    color: #ffffff;
    /* White Text */
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid #1d4d32;
}

.area-badge i {
    color: #ffffff;
}

.area-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Grid Layout */
.area-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Region Card */
.area-region {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.area-region:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.area-region h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1d4d32;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #f5f5f7;
    padding-bottom: 12px;
}

.area-region h4 i {
    font-size: 1.2rem;
    opacity: 0.8;
}

.area-region-sub {
    font-size: 0.85rem;
    color: #86868b;
    font-weight: 500;
    margin-left: auto;
    /* Push to right */
}

.area-region-p {
    font-size: 1.05rem;
    color: #424245;
    line-height: 1.8;
    margin: 0;
}

/* Popular Tags */
.popular-tag-header {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 24px;
}

.popular-tag-title {
    font-size: 1.1rem;
    color: #1d4d32;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.fire-icon {
    color: #e6a23c;
    /* Darker gold/orange */
}

.area-highlights-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 800px;
    margin: 0 auto 10px;
}

.highlight-tag {
    background: white;
    padding: 10px 24px;
    border-radius: 100px;
    /* Pillow shape */
    font-size: 0.95rem;
    color: #424245;
    font-weight: 600;
    border: 1px solid #e5e5ea;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.highlight-tag:hover {
    border-color: #1d4d32;
    color: #1d4d32;
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.area-highlights-row.mt-small {
    margin-top: 10px;
}


/* Note Text */
.area-note-text {
    margin: 60px auto 0;
    /* Centering fix */
    line-height: 1.8;
    text-align: center;
    font-size: 1.1rem;
    color: #1d1d1f;
    background: rgba(29, 77, 50, 0.04);
    padding: 40px 60px;
    border-radius: 20px;
    display: table;
    /* Allows centering with margin auto */
    max-width: 100%;
}

.location-cta-wrapper {
    margin-top: 60px;
    text-align: center;
}

/* Button styles inherited from components/buttons.css or defined here if unique */
.btn-check-availability {
    display: inline-flex;
    align-items: center;
    padding: 22px 60px;
    font-size: 1.3rem;
    background-color: #1d4d32;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.btn-check-availability:hover {
    transform: translateY(-2px);
    background-color: #153824;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    color: white;
}

.btn-arrow-icon {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-check-availability:hover .btn-arrow-icon {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
    .area-detail-grid {
        grid-template-columns: 1fr;
    }

    .location-header .section-title {
        font-size: 2.2rem;
    }

    .area-region {
        padding: 24px;
    }
}