/* ====== Tent & Cottage Page Styles ====== */

/* ====== Page Hero ====== */
.tc-hero {
    position: relative;
    height: 65vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.tc-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/tc_hero_banner.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.tc-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(44, 30, 19, 0.9) 0%, rgba(44, 30, 19, 0.4) 40%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 2;
}

.tc-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px 60px;
    max-width: 900px;
    animation: fadeIn 1s ease-out;
}

.tc-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
    font-weight: 400;
}

.tc-breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s ease;
}

.tc-breadcrumb a:hover {
    color: var(--accent-hover);
}

.tc-breadcrumb .separator {
    font-size: 0.75rem;
    opacity: 0.5;
}

.tc-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.tc-hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto;
}

/* ====== Intro Stats ====== */
.tc-intro-stats {
    padding: 50px 0;
    background: var(--primary-color);
}

.tc-stats-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.tc-stat-item {
    text-align: center;
    min-width: 140px;
}

.tc-stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(211, 84, 0, 0.1), rgba(230, 126, 34, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.6rem;
    color: var(--accent-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tc-stat-item:hover .tc-stat-icon {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(211, 84, 0, 0.2);
}

.tc-stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--footer-bg);
    margin-bottom: 4px;
}

.tc-stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ====== Accommodation Blocks ====== */
.accommodation-section {
    padding: 100px 0;
}

.accommodation-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.accommodation-block:last-child {
    margin-bottom: 0;
}

.accommodation-block.reversed {
    direction: rtl;
}

.accommodation-block.reversed > * {
    direction: ltr;
}

.accom-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    aspect-ratio: 4 / 3;
}

.accom-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.accom-image-wrapper:hover img {
    transform: scale(1.06);
}

.accom-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(211, 84, 0, 0.4);
    z-index: 2;
}

.accommodation-block.reversed .accom-badge {
    left: auto;
    right: 20px;
}

.accom-content {
    padding: 10px 0;
}

.accom-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.accom-label i {
    font-size: 0.75rem;
}

.accom-content h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--footer-bg);
    margin-bottom: 20px;
    line-height: 1.2;
}

.accom-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.02rem;
}

.accom-specs {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0;
    padding: 25px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.accom-spec {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-main);
    font-weight: 500;
}

.accom-spec i {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(211, 84, 0, 0.08);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.btn-book {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #73563d;
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 6px 20px rgba(115, 86, 61, 0.3);
}

.btn-book:hover {
    background: linear-gradient(135deg, var(--accent-hover), #ba4a00);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(211, 84, 0, 0.35);
    color: white;
}

.btn-book i {
    transition: transform 0.4s ease;
}

.btn-book:hover i {
    transform: translateX(5px);
}

/* ====== Comparison Section ====== */
.comparison-section {
    background-image: url('../assets/tc_hero_banner.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    padding: 120px 0;
    z-index: 1;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 51, 32, 0.88), rgba(44, 30, 19, 0.95));
    z-index: -1;
}

.comparison-header {
    text-align: center;
    margin-bottom: 60px;
}

.comparison-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.comparison-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 45px 35px;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.comparison-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.35);
}

.comparison-card-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(211, 84, 0, 0.4);
}

.comparison-card h3 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    margin-bottom: 10px;
    color: white;
}

.comparison-card .card-subtitle {
    font-size: 0.95rem;
    color: var(--accent-hover);
    font-weight: 600;
    margin-bottom: 20px;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
}

.comparison-card ul li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.comparison-card ul li i {
    color: var(--accent-hover);
    margin-top: 4px;
    min-width: 16px;
}

.comparison-card .ideal-for {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.comparison-card .ideal-for h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--accent-hover);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-card .ideal-for p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ====== Amenities Section ====== */
.amenities-section {
    padding: 100px 0;
    background: var(--secondary-color);
}

.amenities-header {
    text-align: center;
    margin-bottom: 60px;
}

.amenities-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--footer-bg);
    margin-bottom: 15px;
}

.amenities-header p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.amenity-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 35px 30px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.amenity-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.amenity-card-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(211, 84, 0, 0.1), rgba(230, 126, 34, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.amenity-card:hover .amenity-card-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: white;
    box-shadow: 0 8px 20px rgba(211, 84, 0, 0.3);
}

.amenity-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--footer-bg);
    margin-bottom: 18px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(211, 84, 0, 0.12);
}

.amenity-list {
    list-style: none;
    padding: 0;
}

.amenity-list li {
    padding: 6px 0;
    color: var(--text-light);
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.5;
}

.amenity-list li i {
    color: var(--accent-color);
    font-size: 0.7rem;
    min-width: 14px;
}

/* ====== Closing CTA ====== */
.closing-cta {
    text-align: center;
    padding: 80px 0;
    background: var(--primary-color);
}

.closing-cta p {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 750px;
    margin: 0 auto 30px;
    line-height: 1.7;
    font-style: italic;
}

/* ====== Responsive ====== */
@media (max-width: 992px) {
    .tc-hero {
        height: 50vh;
        min-height: 350px;
    }

    .tc-hero-content h1 {
        font-size: 2.4rem;
    }

    .accommodation-block {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
    }

    .accommodation-block.reversed {
        direction: ltr;
    }

    .accom-content h2 {
        font-size: 2rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tc-stats-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .tc-hero {
        height: 45vh;
        min-height: 300px;
    }

    .tc-hero-content {
        padding-bottom: 40px;
    }

    .tc-hero-content h1 {
        font-size: 1.8rem;
    }

    .tc-hero-content p {
        font-size: 0.95rem;
    }

    .accommodation-section {
        padding: 60px 0;
    }

    .accommodation-block {
        margin-bottom: 60px;
    }

    .accom-content h2 {
        font-size: 1.7rem;
    }

    .accom-specs {
        gap: 15px;
    }

    .comparison-section {
        padding: 80px 0;
    }

    .comparison-header h2 {
        font-size: 2rem;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .amenities-section {
        padding: 60px 0;
    }

    .amenities-header h2 {
        font-size: 2rem;
    }

    .tc-stats-grid {
        gap: 20px;
    }

    .tc-stat-item {
        min-width: 120px;
    }

    .tc-stat-number {
        font-size: 1.6rem;
    }
}
