* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    color: #222;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.site-header {
    background: #052f3f;
    color: white;
    padding: 18px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    color: #d6a84f;
}

.logo p {
    font-size: 12px;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 22px;
    font-size: 14px;
}

nav a.active,
nav a:hover {
    color: #d6a84f;
}

.hero {
    height: 520px;
    background: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)), url("../images/hero.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-overlay {
    width: 100%;
    color: white;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
}

.btn {
    background: #00587a;
    color: white;
    padding: 12px 24px;
    display: inline-block;
    text-decoration: none;
    border-radius: 3px;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #d6a84f;
}

.btn.small {
    padding: 9px 16px;
    font-size: 14px;
}

.section {
    padding: 70px 0;
}

.section-title {
    margin-bottom: 30px;
}

.section-title h2 {
    color: #b7893b;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-title.light h2,
.section-title.light p {
    color: white;
}

.card-grid,
.facility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.facility-grid {
    grid-template-columns: repeat(4, 1fr);
}

.card,
.facility-card {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,.12);
}

.card img,
.facility-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.card-body {
    padding: 22px;
}

.card-body h3,
.facility-card h3 {
    color: #b7893b;
    margin-bottom: 10px;
}

.price {
    font-weight: bold;
    margin: 15px 0;
    color: #00587a;
}

.facility-card h3 {
    padding: 20px;
}

.blue-section {
    background: #00506b;
}

.center {
    text-align: center;
}

.site-footer {
    background: #052f3f;
    color: white;
    padding: 45px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.site-footer h3,
.site-footer h4 {
    color: #d6a84f;
    margin-bottom: 12px;
}

.site-footer p {
    font-size: 14px;
    margin-bottom: 7px;
}

.copyright {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
}

@media (max-width: 768px) {
    .nav-container,
    .footer-grid {
        flex-direction: column;
        display: block;
    }

    nav {
        margin-top: 15px;
    }

    nav a {
        display: inline-block;
        margin: 8px;
    }

    .card-grid,
    .facility-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 34px;
    }
}

.page-hero {
    background: linear-gradient(rgba(5,47,63,.75), rgba(5,47,63,.75)), url("../images/hero.jpg");
    background-size: cover;
    background-position: center;
    padding: 95px 20px;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

form {
    margin-top: 30px;
}

form label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

form input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
}

.alert {
    background: #ffdddd;
    padding: 15px;
    margin-bottom: 20px;
    border-left: 5px solid red;
}

.booking-summary {
    background: white;
    padding: 25px;
    max-width: 500px;
    margin: 25px auto;
    box-shadow: 0 5px 15px rgba(0,0,0,.12);
    text-align: left;
}

textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
}

.card {
    border-radius: 6px;
    overflow: hidden;
}

.btn {
    transition: 0.3s;
}

.btn:hover {
    transform: scale(1.05);
}

.card img {
    transition: 0.3s;
}

.card img:hover {
    transform: scale(1.05);
}

.alert {
    background: #ffe6e6;
    color: red;
    padding: 15px;
    border-left: 5px solid red;
    margin-bottom: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f4f6f8;
    color: #222;
}

.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 250px;
    background: #052f3f;
    color: white;
    padding: 25px;
}

.sidebar h2 {
    color: #d6a84f;
    margin-bottom: 5px;
}

.sidebar p {
    font-size: 13px;
    margin-bottom: 30px;
}

.sidebar a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 12px;
    margin-bottom: 8px;
    border-radius: 5px;
}

.sidebar a:hover {
    background: #00587a;
}

.sidebar .logout {
    background: #b63b3b;
    margin-top: 30px;
}

.admin-content {
    flex: 1;
    padding: 30px;
}

h1 {
    margin-bottom: 25px;
    color: #052f3f;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    padding: 22px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

.stat-card h3 {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 26px;
    font-weight: bold;
    color: #00587a;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
    border-radius: 8px;
    overflow: hidden;
}

.admin-table th,
.admin-table td {
    padding: 14px;
    border-bottom: 1px solid #eee;
    text-align: left;
    font-size: 14px;
}

.admin-table th {
    background: #052f3f;
    color: white;
}

.btn-admin {
    display: inline-block;
    padding: 8px 12px;
    background: #00587a;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

.btn-danger {
    background: #b63b3b;
}

.btn-success {
    background: #2e8b57;
}

.status {
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 12px;
    color: white;
}

.status.pending {
    background: #c49a31;
}

.status.confirmed {
    background: #2e8b57;
}

.status.cancelled {
    background: #b63b3b;
}

.admin-form {
    background: white;
    padding: 25px;
    max-width: 650px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

.admin-form label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
    width: 100%;
    padding: 11px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.admin-form button {
    margin-top: 20px;
}

.top-actions {
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .admin-wrapper {
        display: block;
    }

    .sidebar {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .admin-table {
        font-size: 12px;
    }
}

.page-hero {
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    background-size: cover;
    background-position: center;
}

/* DARK OVERLAY (IMPORTANT) */
.page-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

/* TEXT ABOVE OVERLAY */
.page-hero h1,
.page-hero p {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 18px;
}

.hero {
    height: 520px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    color: white;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 15px;
    color: white;
}

.hero p {
    font-size: 20px;
    margin-bottom: 25px;
    color: white;
}

.page-hero {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 46px;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: white;
}

.page-hero p {
    font-size: 20px;
    color: white;
}

.main-header {
    background: #052f3f;
    padding: 15px 0;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-text h2 {
    margin: 0;
    color: #d6a84f;
    font-size: 20px;
}

.logo-text span {
    font-size: 12px;
    color: #ccc;
}

.nav a {
    margin-left: 20px;
    color: white;
    text-decoration: none;
    font-size: 15px;
    position: relative;
}

.nav a:hover {
    color: #d6a84f;
}

.inner-page-bg {
    background: linear-gradient(120deg, #486174, #5d7180);
    padding: 40px 0 70px;
    text-align: center;
}

.inner-page-bg h1 {
    color: white;
    font-family: Georgia, serif;
    font-size: 28px;
    margin-bottom: 8px;
}

.page-subtitle {
    color: white;
    font-size: 13px;
    margin-bottom: 30px;
}

/* ABOUT */
.about-box {
    background: white;
    width: 78%;
    max-width: 980px;
    margin: 20px auto 0;
    padding: 30px;
    text-align: left;
}

.about-main-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    margin-bottom: 15px;
}

.about-box h3 {
    font-family: Georgia, serif;
    font-size: 18px;
    margin-bottom: 4px;
}

.about-box h4 {
    font-family: Georgia, serif;
    font-size: 15px;
    margin-bottom: 22px;
    font-weight: normal;
}

.about-box p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #444;
}

/* CONTACT */
.map-box {
    width: 75%;
    max-width: 980px;
    margin: 30px auto -55px;
    position: relative;
    z-index: 1;
}

.map-box iframe {
    width: 100%;
    height: 300px;
    border: 0;
}

.contact-panel {
    width: 62%;
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-top {
    background: #00506b;
    color: white;
    padding: 45px 30px;
}

.contact-top h2 {
    font-family: Georgia, serif;
    font-size: 28px;
    margin-bottom: 16px;
}

.contact-top p {
    font-size: 14px;
    margin-bottom: 25px;
}

.btn-outline {
    color: white;
    border: 1px solid white;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 13px;
}

.contact-info-grid {
    background: #eee;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 35px 25px;
    gap: 25px;
}

.contact-icon {
    font-size: 34px;
    color: #00506b;
    margin-bottom: 10px;
}

.contact-info-grid h4 {
    margin-bottom: 12px;
}

.contact-info-grid p {
    font-size: 13px;
    color: #555;
}

@media (max-width: 768px) {
    .about-box,
    .map-box,
    .contact-panel {
        width: 90%;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .about-main-img {
        height: 240px;
    }
}

.detail-hero {
    min-height: 520px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
}

.detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.75), rgba(0,0,0,.25));
}

.detail-hero-content {
    position: relative;
    z-index: 2;
    width: 85%;
    max-width: 1100px;
    margin: auto;
}

.detail-hero h1 {
    font-size: 58px;
    margin-bottom: 15px;
    font-family: Georgia, serif;
}

.detail-hero p {
    font-size: 20px;
    max-width: 620px;
    line-height: 1.7;
}

.detail-section {
    padding: 80px 0;
    background: #f7f3ed;
}

.detail-box {
    width: 85%;
    max-width: 1100px;
    margin: auto;
    background: white;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: center;
}

.detail-grid img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 16px;
}

.detail-box h2 {
    color: #b7893b;
    font-family: Georgia, serif;
    margin-bottom: 15px;
}

.detail-box p,
.detail-box li {
    line-height: 1.8;
    color: #444;
}

.detail-price {
    font-size: 28px;
    color: #00587a;
    font-weight: bold;
    margin: 18px 0;
}

@media(max-width: 768px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .detail-hero h1 {
        font-size: 38px;
    }
}

.room-detail-page {
    background: #fff;
    padding-bottom: 70px;
}

.room-detail-top {
    background: linear-gradient(120deg, #486174, #5d7180);
    padding: 45px 0 130px;
    text-align: center;
    color: white;
}

.room-detail-top h1 {
    font-family: Georgia, serif;
    font-size: 28px;
    text-transform: uppercase;
}

.room-detail-card {
    width: 80%;
    max-width: 900px;
    margin: -100px auto 60px;
    position: relative;
}

.room-detail-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.room-booking-strip {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 25px;
    background: rgba(255,255,255,.75);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    padding: 18px;
    text-align: center;
}

.room-booking-strip span {
    font-size: 12px;
    color: #777;
}

.room-booking-strip strong {
    display: block;
    font-size: 22px;
    color: #052f3f;
}

.room-detail-section {
    width: 80%;
    max-width: 900px;
    margin: 0 auto 55px;
    text-align: center;
}

.room-detail-section h2 {
    font-family: Georgia, serif;
    font-size: 24px;
    color: #333;
    margin-bottom: 25px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    margin-top: 25px;
}

.amenity {
    font-size: 13px;
    color: #555;
}

.amenity-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.room-overview {
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
    color: #555;
}

.rules-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    margin-top: 20px;
}

.rules-table td {
    padding: 18px;
    border-bottom: 1px solid #ddd;
    color: #555;
    vertical-align: top;
}

.rules-table td:first-child {
    width: 30%;
    font-weight: bold;
    color: #333;
}

.room-final-book {
    text-align: center;
    margin-top: 40px;
}

@media(max-width: 768px) {
    .room-detail-card,
    .room-detail-section {
        width: 92%;
    }

    .room-booking-strip {
        position: static;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


.detail-hero.salon h1 { color: #ff69b4; }
.detail-hero.tour h1 { color: #2e8b57; }
.detail-hero.curry h1 { color: #ff8c00; }
.detail-hero.bike h1 { color: #ff4d4d; }

.policy-links a,
.site-footer a {
    color: #d6a84f;
    text-decoration: none;
    font-weight: bold;
}

.policy-links a:hover,
.site-footer a:hover {
    color: white;
    text-decoration: underline;
}