/* =========================
   RESET + BASE
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Ubuntu', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    color: #6b6460;
    line-height: 1.6;
    background-color: #ffffff;
}

body.custom-background {
    background-color: #ffffff;
    background-image: url("images/pattern.jpg");
    background-position: left top;
    background-size: auto;
    background-repeat: repeat;
    background-attachment: scroll;
}

/* =========================
   HEADER
========================= */
header {
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 0;
    flex-wrap: nowrap;
    gap: 20px;
}

.header-info {
    display: flex;
    align-items: flex-start; /* align top instead of center */
    gap: 10px;
    max-width: 250px; /* 🔑 force wrapping */
}

.header-info div {
    display: flex;
    flex-direction: column;
    word-break: break-word; /* 🔑 allow breaking long text */
}

.header-info p {
    font-size: 12px;
    line-height: 1.2;
}

.header-info p:first-child {
    font-size: 13px;
}

.header-info p:last-child {
    line-height: 1.4;
}

.header-info i {
    color: #12a125;
    font-size: 24px;
}
.logo {
    text-align: center;
    flex: 1 0 auto;
}

.logo img {
    max-width: 180px;
    height: auto;
}

.header-contact {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    flex: 0 1 auto;
}

.phone-number {
    font-size: 20px;
    font-weight: bold;
    color: #12a125;
}

.book-btn {
    background-color: #67f158;
    color: white;
    padding: 10px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.book-btn:hover {
    background-color: #0d7a1a;
}

/* .map-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #12a125;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.map-link:hover {
    opacity: 0.8;
}

.map-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("icons/map.svg") no-repeat center;
    background-size: contain;
    font-size: 28px;
} */

.map-card {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.map-icon {
    width: 28px;
    height: 28px;
    display: inline-block;
    background: url("icons/map.svg") no-repeat center;
    background-size: contain;
    flex-shrink: 0;
}

.pin-icon {
    width: 28px;
    height: 28px;
    display: inline-block;
    background: url("icons/home.svg") no-repeat center;
    background-size: contain;
    flex-shrink: 0;
}

.map-text .title {
    margin: 0;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.map-text .link-text {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #12a125;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.map-text .link-text:hover {
    opacity: 0.8;
}
/* =========================
   SLIDER
========================= */
.slider-section {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.slider {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.3);
}

.slide-content {
    text-align: center;
    color: white;
    z-index: 2;
    animation: slideIn 0.8s ease;
}

.slide-title {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.slide-subtitle {
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background-color: white;
}

/* =========================
   FEATURES
========================= */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 20px;
    animation: fadeInUp 0.6s ease;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: #ceff0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
    margin: 0 auto 20px;
}

.tree-icon {
    /* width: 28px;
    height: 28px; */
    display: inline-block;
    background: url("icons/tree.svg") no-repeat center;
    background-size: contain;
    flex-shrink: 0;
}

.house-icon {
    display: inline-block;
    background: url("icons/home-house.svg") no-repeat center;
    background-size: contain;
    flex-shrink: 0;
}

.heart-icon {
    display: inline-block;
    background: url("icons/heart.svg") no-repeat center;
    background-size: contain;
    flex-shrink: 0;
}
.feature-title {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    margin-bottom: 10px;
    color: #000000;
}

.feature-desc {
    color: #6b6460;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   GRID / SECTIONS
========================= */
.house-rules {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 60px auto;
    /* padding: 0 20px; */
}

.house-rules-image {
    width: 100%;
}

.house-rules-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.house-rules-content {
    background-color: #d01573;
    color: white;
    padding: 40px;
    border-radius: 8px;
}

.section-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.9;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.section-desc {
    margin-bottom: 30px;
    line-height: 1.8;
}

.rules-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.rule-item {
    display: flex;
    gap: 10px;
    padding-bottom: 13px;
}

.rule-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 3px;
    width: 28px;
    height: 28px;
}

.broom-icon {
    background: url("icons/broom.svg") no-repeat center;
    background-size: contain;
}

.park-icon {
    background: url("icons/park.svg") no-repeat center;
    background-size: contain;
}

.muslim-icon {
    background: url("icons/muslim.svg") no-repeat center;
    background-size: contain;
}

.toilet-icon {
    background: url("icons/toilet.svg") no-repeat center;
    background-size: contain;
}

.sound-icon {
    background: url("icons/noise.svg") no-repeat center;
    background-size: contain;
}

.smoke-icon {
    background: url("icons/smoking.svg") no-repeat center;
    background-size: contain;
}

.bin-icon {
    background: url("icons/bin.svg") no-repeat center;
    background-size: contain;
}

.pet-icon {
    background: url("icons/no-pets.svg") no-repeat center;
    background-size: contain;
}

.flame-icon {
    background: url("icons/no-flames.svg") no-repeat center;
    background-size: contain;
}

.rule-text {
    font-size: 14px;
}

/* Things To Do Section */
.things-to-do {
    background-color: #f9f9f9;
    /* padding: 60px 20px; */
}

.things-to-do-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.activities-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding-right: 40px;
}

.activity-item {
    display: flex;
    gap: 15px;
}

.activity-icon {
    color: #12a125;
    font-size: 24px;
    flex-shrink: 0;
    height: 30px;
    width: 30px;
}

.wifi-icon {
    background: url("icons/wifi.svg") no-repeat center;
    background-size: contain;
}

.air-cond-icon {
    background: url("icons/air-cond.svg") no-repeat center;
    background-size: contain;
}

.cctv-icon {
    background: url("icons/cctv.svg") no-repeat center;
    background-size: contain;
}

.shower-icon {
    background: url("icons/shower.svg") no-repeat center;
    background-size: contain;
}

.activity-text {
    font-weight: 500;
    text-transform: capitalize;
}

.cta-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.cta-card {
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cta-card:hover {
    transform: scale(1.05);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-color: rgba(0,0,0,0.4); */
    z-index: 1;
}

.cta-card-text {
    color: white;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    z-index: 2;
    padding: 20px;
    text-transform: uppercase;
}

/* Attractions Section */
.attractions {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.attractions-header {
    text-align: center;
    margin-bottom: 40px;
}

.attractions-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    margin-bottom: 10px;
    color: #000000;
}

.attractions-map {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.attractions-map img {
    width: 100%;
    height: auto;
}

.map-point {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #d01573;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.map-point:hover {
    transform: scale(1.2);
}

/* Accommodation Section */
.accommodation {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.accommodation-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.accommodation-header {
    text-align: center;
    margin-bottom: 40px;
}

.accommodation-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    margin-bottom: 10px;
    color: #000000;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 360px));
    justify-content: center;
    gap: 20px;
}

.room-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.room-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
}

.room-info {
    padding: 14px;
}

.room-name {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    margin-bottom: 10px;
    color: #000000;
}

.room-price {
    color: #12a125;
    font-weight: bold;
    font-size: 18px;
}

/* Footer */
footer {
    background-color: #d01573;
    color: white;
    padding: 40px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.8;
    font-size: 14px;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 15px;
    }

    .slider-section {
        height: 300px;
    }

    .slide-title {
        font-size: 28px;
    }

    .slide-subtitle {
        font-size: 14px;
    }

    .house-rules {
        grid-template-columns: 1fr;
    }

    .things-to-do-wrapper {
        grid-template-columns: 1fr;
    }

    .activities-list {
        padding-right: 0;
    }

    .rules-list {
        grid-template-columns: 1fr;
    }

    .cta-cards {
        grid-template-columns: 1fr;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}