/* ---------- Root Variables ---------- */
:root {
    --primary: #1e2a38;        /* Deep navy */
    --secondary: #d4af37;      /* Gold accent */
    --light: #faf6f1;           /* Warm cream background */
    --soft: #f5ede1;            /* Soft beige */
    --text: #3a3a3a;            /* Dark gray for text */
    --gradient: linear-gradient(135deg, #f5ede1, #faf6f1);
}

/* ---------- Global Reset ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--light);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

body,html{
    margin:0;
    padding: 0;
    width: 100%;
}

/* ---------- Header ---------- */
header {
    background: var(--primary);
    color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding-right: 30px;
}

header h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

header nav a {
    color: white;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
}

header nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

header nav a:hover {
    color: var(--secondary);
}

header nav a:hover::after {
    width: 100%;
}



/* ---------- Cards (Rooms) ---------- */
.room-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    margin-left: 30px;
    margin-right: 30px;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.room-card img {
    transition: transform 0.5s ease;
}

.room-card:hover img {
    transform: scale(1.05);
}

.room-card h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.room-card p {
    font-size: 1rem;
    color: #555;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--secondary);
    color: var(--primary);
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #b08b2e;
    transform: translateY(-3px);
}

/* ---------- Footer ---------- */
footer {
    background: var(--primary);
    color: #ccc;
    padding-top: 3rem;
    margin-top: 3rem;
}

footer h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}

footer p, footer a {
    font-size: 0.95rem;
    color: #bbb;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--secondary);
}

footer .social-icons a {
    font-size: 1.4rem;
    margin-right: 10px;
    color: #bbb;
    transition: transform 0.3s ease, color 0.3s ease;
}

footer .social-icons a:hover {
    color: var(--secondary);
    transform: scale(1.2);
}

footer .bottom {
    text-align: center;
    padding: 1rem 0;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    header nav {
        flex-direction: column;
        gap: 10px;
    }

    .grid {
        grid-template-columns: 1fr !important;
    }
}
/* ---------- Root Variables ---------- */
:root {
    --primary: #1e2a38;        /* Deep navy */
    --secondary: #d4af37;      /* Gold accent */
    --light: #faf6f1;           /* Warm cream background */
    --soft: #f5ede1;            /* Soft beige */
    --text: #3a3a3a;            /* Dark gray for text */
    --gradient: linear-gradient(135deg, #f5ede1, #faf6f1);
}

/* ---------- Global Reset ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--light);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

body,html{
    margin:0;
    padding: 0;
    width: 100%;
}

/* ---------- Header ---------- */
header {
    background: var(--primary);
    color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding-right: 30px;
}

header h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

header nav a {
    color: white;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
}

header nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

header nav a:hover {
    color: var(--secondary);
}

header nav a:hover::after {
    width: 100%;
}



/* ---------- Cards (Rooms) ---------- */
.room-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    margin-left: 30px;
    margin-right: 30px;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.room-card img {
    transition: transform 0.5s ease;
}

.room-card:hover img {
    transform: scale(1.05);
}

.room-card h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.room-card p {
    font-size: 1rem;
    color: #555;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--secondary);
    color: var(--primary);
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #b08b2e;
    transform: translateY(-3px);
}

/* ---------- Footer ---------- */
footer {
    background: var(--primary);
    color: #ccc;
    padding-top: 3rem;
    margin-top: 3rem;
}

footer h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}

footer p, footer a {
    font-size: 0.95rem;
    color: #bbb;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--secondary);
}

footer .social-icons a {
    font-size: 1.4rem;
    margin-right: 10px;
    color: #bbb;
    transition: transform 0.3s ease, color 0.3s ease;
}

footer .social-icons a:hover {
    color: var(--secondary);
    transform: scale(1.2);
}

footer .bottom {
    text-align: center;
    padding: 1rem 0;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    header nav {
        flex-direction: column;
        gap: 10px;
    }

    .grid {
        grid-template-columns: 1fr !important;
    }
}
/* ---------- Hero ---------- */
.hero {
    position: relative;
    text-align: center;
    color: #fff;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img {
    width: 100%;
    height: 90vh;
    object-fit: cover;
    display: block;
    filter: brightness(35%) contrast(1.1); /* STRONGLY dim the picture background to make text readable */
}

/* Remove the pseudo-element overlay that was causing issues */
/* .hero::before {
    content: '';
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: rgba(0,0,0,0.4);
} */

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    z-index: 2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8); /* Add text shadow for better readability */
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: #ffffff; /* Changed from var(--secondary) to white for better contrast */
    font-weight: 700;
    text-shadow: 3px 3px 12px rgba(0,0,0,0.9);
}

.hero-content p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    color: #f5f5f5;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
    font-weight: 500;
}

.btn-primary {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    padding: 12px 28px;
    font-weight: 600;
    margin-top: 20px;
    border-radius: 50px;
    transition: background 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.btn-primary:hover {
    background: #c5a23a;
    transform: translateY(-2px);
}
/* ---------- About & Sections ---------- */
.about, .featured, .services {
    padding: 3rem 0;
    text-align: center;
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.room-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.room-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.room-card:hover {
    transform: translateY(-5px);
}

/* ---------- Services ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--soft);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
    margin-left: 2rem;
    margin-right: 2rem;
}

.service-card i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* ---------- Contact Page ---------- */
.contact-header {
    text-align: center;
    padding: 3rem 0 1rem;
    background: var(--gradient);
    color: #1e2a38;
}

.contact-info {
    padding: 3rem 0;
    padding-left: 2.5rem;
    padding-right: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;

}

.contact-details h2, .contact-form h2 {
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 60px;
}

.contact-form input, .contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    align-self: flex-start;
}

/* ---------- Room Details ---------- */
.room-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1100px;
    align-items: start;
    padding-left: 2rem;
    padding-right: 2rem;

}

.room-image img {
    width: 100%;
    margin-left: 0px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.room-info h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #b8860b;
    margin-bottom: 1rem;
}

.description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.amenities {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.amenities li {
    background: #f8f5f0;
    padding: 8px 12px;
    margin: 5px 0;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .room-details {
        grid-template-columns: 1fr;
    }
}
/* ---------- Accommodations ---------- */
.accommodations {
    padding: 3rem 0;
    text-align: center;
}

.room-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.room-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: #333;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.room-card h3 {
    font-size: 1.3rem;
    color: #6a4e42;
    margin: 15px 0 5px;
}

.room-card p {
    font-size: 0.95rem;
    padding: 0 15px 15px;
    color: #555;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}


/* ---------- About & Sections ---------- */
.about, .featured, .services {
    padding: 3rem 0;
    text-align: center;
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.room-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.room-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.room-card:hover {
    transform: translateY(-5px);
}

/* ---------- Services ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--soft);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
    margin-left: 2rem;
    margin-right: 2rem;
}

.service-card i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* ---------- Contact Page ---------- */
.contact-header {
    text-align: center;
    padding: 3rem 0 1rem;
    background: var(--gradient);
    color: #1e2a38;
}

.contact-info {
    padding: 3rem 0;
    padding-left: 2.5rem;
    padding-right: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;

}

.contact-details h2, .contact-form h2 {
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 60px;
}

.contact-form input, .contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    align-self: flex-start;
}

/* ---------- Room Details ---------- */
.room-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1100px;
    align-items: start;
    padding-left: 2rem;
    padding-right: 2rem;

}

.room-image img {
    width: 100%;
    margin-left: 0px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.room-info h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #b8860b;
    margin-bottom: 1rem;
}

.description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.amenities {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.amenities li {
    background: #f8f5f0;
    padding: 8px 12px;
    margin: 5px 0;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .room-details {
        grid-template-columns: 1fr;
    }
}
/* ---------- Accommodations ---------- */
.accommodations {
    padding: 3rem 0;
    text-align: center;
}

.room-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.room-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: #333;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.room-card h3 {
    font-size: 1.3rem;
    color: #6a4e42;
    margin: 15px 0 5px;
}

.room-card p {
    font-size: 0.95rem;
    padding: 0 15px 15px;
    color: #555;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
