@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --primary-color: #0F172A; /* Slate 900 */
    --secondary-color: #d4af37; /* Luxury Gold */
    --bg-color: #FAFAFA;
    --text-color: #334155;
    --light-text: #F8FAFC;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background-color: var(--bg-color); color: var(--text-color); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--primary-color); }
a { text-decoration: none; color: inherit; transition: var(--transition); }

/* Header */
header {
    position: fixed; width: 100%; top: 0; z-index: 1000;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 5%;
    display: flex; justify-content: space-between; align-items: center;
}
.logo img { height: 60px; filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1)); transition: var(--transition); }
.logo img:hover { transform: scale(1.05); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--light-text); font-weight: 600; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; position: relative; }
.nav-links a::after {
    content: ''; position: absolute; width: 0; height: 2px;
    bottom: -5px; left: 0; background-color: var(--secondary-color);
    transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(to bottom, rgba(15,23,42,0.3), rgba(15,23,42,0.8)), url('../images/banner.jpg') center/cover;
    display: flex; align-items: center; justify-content: center; text-align: center; color: var(--light-text);
    padding-top: 80px;
}
.hero h1 { color: var(--light-text); font-size: 4.5rem; margin-bottom: 1rem; animation: fadeUp 1s ease-out; }
.hero p { font-size: 1.5rem; margin-bottom: 2rem; font-weight: 300; animation: fadeUp 1s ease-out 0.2s backwards; }
.btn {
    display: inline-block; padding: 1rem 2.5rem; background: var(--secondary-color); color: var(--primary-color);
    font-weight: 600; border-radius: 50px; text-transform: uppercase; letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3); transition: var(--transition);
    animation: fadeUp 1s ease-out 0.4s backwards; cursor: pointer; border: none;
}
.btn:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(212, 175, 55, 0.5); }

/* Features */
.features { padding: 5rem 5%; text-align: center; }
.section-title { font-size: 2.5rem; margin-bottom: 3rem; position: relative; display: inline-block; }
.section-title::after {
    content: ''; position: absolute; width: 50px; height: 3px;
    background: var(--secondary-color); bottom: -10px; left: 50%; transform: translateX(-50%);
}
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; }
.feature-card {
    background: #fff; padding: 2.5rem; border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: var(--transition);
    position: relative; overflow: hidden;
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px;
    background: var(--secondary-color); transform: scaleX(0); transition: var(--transition); transform-origin: left;
}
.feature-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon { font-size: 3rem; color: var(--secondary-color); margin-bottom: 1.5rem; }

/* Rooms */
.rooms { background: var(--primary-color); padding: 5rem 5%; color: var(--light-text); text-align: center; }
.rooms .section-title { color: var(--light-text); }
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 3rem; text-align: left; }
.room-card {
    background: rgba(255,255,255,0.05); border-radius: 20px; overflow: hidden;
    backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); transition: var(--transition);
}
.room-card:hover { transform: translateY(-10px); background: rgba(255,255,255,0.1); }
.room-img-container { overflow: hidden; }
.room-img { width: 100%; height: 250px; object-fit: cover; transition: transform 0.5s ease; }
.room-card:hover .room-img { transform: scale(1.1); }
.room-info { padding: 2rem; }
.room-info h3 { color: var(--light-text); margin-bottom: 1rem; font-size: 1.5rem; }
.room-info p { color: #cbd5e1; margin-bottom: 1.5rem; font-size: 0.95rem; }

/* Contact Page specific */
.page-header {
    height: 40vh;
    background: linear-gradient(to bottom, rgba(15,23,42,0.6), rgba(15,23,42,0.9)), url('../images/lobby.jpg') center/cover;
    display: flex; align-items: center; justify-content: center; text-align: center; color: var(--light-text);
    padding-top: 80px;
}
.contact-section { padding: 5rem 5%; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; max-width: 1200px; margin: 0 auto; }
.contact-info { background: var(--primary-color); color: var(--light-text); padding: 3rem; border-radius: 20px; box-shadow: 0 20px 40px rgba(15,23,42,0.2); }
.contact-item { display: flex; align-items: center; margin-bottom: 2rem; }
.contact-item i { font-size: 2rem; color: var(--secondary-color); margin-right: 1.5rem; width: 40px; text-align: center; }
.contact-item div h4 { color: var(--secondary-color); margin-bottom: 0.25rem; font-family: 'Inter', sans-serif; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.contact-item div p { color: var(--light-text); font-size: 1.1rem; }
.contact-form { background: #fff; padding: 3rem; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.form-group { margin-bottom: 1.5rem; }
.form-control { width: 100%; padding: 1rem 1.5rem; border: 1px solid #e2e8f0; border-radius: 10px; font-family: inherit; font-size: 1rem; transition: var(--transition); background: #f8fafc; }
.form-control:focus { outline: none; border-color: var(--secondary-color); box-shadow: 0 0 0 3px rgba(212,175,55,0.2); background: #fff; }
textarea.form-control { resize: vertical; min-height: 150px; }

/* Footer */
footer { background: #020617; color: #94a3b8; padding: 4rem 5% 2rem; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-bottom: 3rem; max-width: 1200px; margin: 0 auto 3rem; }
.footer-logo { max-width: 200px; max-height: 80px; margin-bottom: 1.5rem; object-fit: contain; border-radius: 10px; opacity: 0.9; }
.footer-col h3 { color: var(--light-text); font-family: 'Inter', sans-serif; font-size: 1.2rem; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul li a { color: #94a3b8; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--secondary-color); padding-left: 5px; }
.social-links { display: flex; gap: 1rem; margin-top: 1.5rem; }
.social-links a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; color: var(--light-text); transition: var(--transition); }
.social-links a:hover { background: var(--secondary-color); color: var(--primary-color); transform: translateY(-3px); }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; }

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 3rem; }
    .contact-section { grid-template-columns: 1fr; padding: 3rem 5%; }
}

/* Content specific styles for tables, galleries, lists, etc. */
.card-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    line-height: 1.8;
    color: var(--text-color);
}
.card-content h1, .card-content h2, .card-content h3 {
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}
.card-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}
.card-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.95rem;
}
.card-content th, .card-content td {
    padding: 1rem;
    border: 1px solid #e2e8f0;
    text-align: left;
}
.card-content th {
    background-color: var(--primary-color);
    color: var(--light-text);
    font-weight: 600;
}
.card-content tr:nth-child(even) {
    background-color: #f8fafc;
}
.card-content ul, .card-content ol {
    margin: 1.5rem 0 1.5rem 2rem;
}
.card-content li {
    margin-bottom: 0.8rem;
}
.card-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1.5rem 0;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}
.gallery-item {
    margin: 0 !important;
}
.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.gallery-item img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.seprator-box {
    display: none;
}

/* Navigation Dropdown */
.nav-links li {
    position: relative;
}
.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 10px;
    padding: 0.75rem 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
}
.nav-links li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown li {
    width: 100%;
}
.dropdown a {
    display: block;
    padding: 0.6rem 1.2rem;
    text-transform: none;
    font-size: 0.9rem;
    color: #cbd5e1 !important;
    text-align: left;
}
.dropdown a::after {
    display: none;
}
.dropdown a:hover {
    color: var(--secondary-color) !important;
    background: rgba(255,255,255,0.05);
    padding-left: 1.5rem;
}

/* Luxury Rooms Grid & Detail layout */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}
.room-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}
.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.room-card-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.room-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.room-card:hover .room-card-img img {
    transform: scale(1.08);
}
.room-card-content {
    padding: 2rem;
}
.room-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}
.room-card-desc {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.room-card-meta {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    padding: 0.75rem 0;
    font-size: 0.85rem;
    color: #64748b;
}
.room-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.room-card-btn {
    display: inline-block;
    width: 100%;
    padding: 0.9rem;
    background: var(--primary-color);
    color: var(--light-text);
    text-align: center;
    border-radius: 10px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: var(--transition);
}
.room-card-btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

/* Room Details Layout */
.room-details-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin: 4rem 0;
}
.room-details-main h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}
.room-details-sidebar {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    height: fit-content;
}
.room-details-sidebar h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
}
.amenity-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
.amenity-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 0.95rem;
}
.amenity-list li i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}
.book-btn {
    display: inline-block;
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-color);
    color: var(--light-text);
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-top: 1.5rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}
.book-btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}
@media (max-width: 992px) {
    .room-details-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Home Page specific Dark Room Cards overrides */
.rooms .room-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}
.rooms .room-card:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2) !important;
}
.rooms .room-info h3 {
    color: var(--light-text) !important;
    font-family: 'Playfair Display', serif;
}
.rooms .room-info p {
    color: #cbd5e1 !important;
}




