@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Poppins:wght@500;600;700&display=swap');

:root {
    --bg-main: #0a0f0d;
    --bg-secondary: #121c17;
    --accent-primary: #10b981; /* Rich Green */
    --accent-primary-hover: #059669;
    --accent-secondary: #8b0000; /* Dark Red */
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --border-color: rgba(255, 255, 255, 0.2);
    --border-hover: rgba(255, 255, 255, 0.5);
    --glass-bg: rgba(255, 255, 255, 0.08); /* White Glossy Base */
    --shadow-luxury: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    --radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    background-image: 
        radial-gradient(circle at top right, rgba(139, 0, 0, 0.15), transparent 40%),
        radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.15), transparent 40%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; color: var(--text-primary); font-weight: 600; }
a { text-decoration: none; color: var(--text-primary); transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius); }

/* Typography */
.text-accent { color: var(--accent-primary); }
.text-red { color: var(--accent-secondary); }
.text-muted { color: var(--text-secondary); }
.text-center { text-align: center; }
.section-title { font-size: 2.5rem; margin-bottom: 1rem; }
.section-subtitle { font-size: 1.1rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto 3rem; }

/* Layout */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
section { padding: 6rem 0; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    backdrop-filter: blur(4px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-secondary), #5a0000);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.2), 0 4px 15px rgba(139, 0, 0, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-primary), #059669);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.4), 0 4px 15px rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    border-color: #fff;
}

.btn-full { width: 100%; }

/* Navigation */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; padding: 1.5rem 0; z-index: 1000; transition: var(--transition); background: transparent;
}
.navbar.scrolled {
    background: rgba(18, 28, 23, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    box-shadow: var(--shadow-luxury);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 700; letter-spacing: 1px; }
.logo span { color: var(--accent-primary); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-size: 0.95rem; font-weight: 500; }
.nav-links a:hover, .nav-links a.text-accent { color: var(--accent-primary); text-shadow: 0 0 10px rgba(16, 185, 129, 0.5); }
.hamburger { display: none; cursor: pointer; font-size: 1.5rem; }

/* Hero Section */
.hero { height: 100vh; min-height: 600px; display: flex; align-items: center; position: relative; padding-top: 80px; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; border-radius: 0; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(10, 15, 13, 0.6), rgba(10, 15, 13, 1)); z-index: -1; }
.hero-content { max-width: 800px; }
.hero h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 1.5rem; }
.hero p { font-size: 1.25rem; color: var(--text-secondary); margin-bottom: 2.5rem; max-width: 600px; }
.hero-btns { display: flex; gap: 1rem; }

/* Grid Systems */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; align-items: stretch; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; align-items: stretch; }

/* White Glossy Effect Elements */
.luxury-card, .booking-card, .contact-info, .hotel-info-section, .legal-content {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}
.luxury-card::before, .booking-card::before, .contact-info::before, .hotel-info-section::before, .legal-content::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 35%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15), transparent);
    pointer-events: none;
    z-index: 0;
}
.luxury-card > *, .booking-card > *, .contact-info > *, .hotel-info-section > *, .legal-content > * {
    position: relative;
    z-index: 1;
}

.luxury-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.1);
}

.card-img-wrapper { position: relative; height: 250px; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; }
.card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; border-radius: 0; }
.luxury-card:hover .card-img { transform: scale(1.05); }

.card-badge {
    position: absolute; top: 1rem; right: 1rem;
    background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(8px);
    padding: 6px 14px; border-radius: 20px; font-size: 0.8rem;
    color: #fff; border: 1px solid rgba(255, 255, 255, 0.3);
}

.card-content { padding: 1.5rem; display: flex; flex-direction: column; height: calc(100% - 250px); }
.card-title { font-size: 1.25rem; margin-bottom: 0.5rem; }
.card-location { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 1rem; }
.card-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border-color); }
.card-price { font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--accent-primary); }
.card-price span { font-size: 0.8rem; color: var(--text-secondary); font-weight: 400; }
.card-rating { color: #fbbf24; font-size: 0.9rem; }
.card-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: auto; padding-bottom: 1.5rem; }
.tag { background: rgba(255, 255, 255, 0.1); font-size: 0.8rem; padding: 4px 10px; border-radius: 4px; color: var(--text-secondary); border: 1px solid rgba(255, 255, 255, 0.05); }
.card-actions { display: flex; gap: 1rem; margin-top: 1rem; }

/* Subpages */
.page-header { padding: 150px 0 80px; background: rgba(0, 0, 0, 0.3); border-bottom: 1px solid var(--border-color); text-align: center; backdrop-filter: blur(10px); }
.hotel-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; margin-top: 2rem; align-items: start; }
.hotel-gallery { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: repeat(2, 250px); gap: 1rem; margin-bottom: 2rem; }
.gallery-img.main { grid-row: 1 / -1; }

.hotel-info-section { padding: 2rem; margin-bottom: 2rem; }
.hotel-info-section h3 { margin-bottom: 1.5rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border-color); color: var(--accent-primary); }
.amenities-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.amenity-item { display: flex; align-items: center; gap: 0.75rem; color: var(--text-secondary); }

.booking-sidebar { position: sticky; top: 110px; }
.booking-card { padding: 2rem; }
.booking-price { font-size: 2rem; font-family: 'Poppins', sans-serif; color: var(--accent-primary); margin-bottom: 1.5rem; text-align: center; }
.booking-price span { font-size: 1rem; color: var(--text-secondary); }
.map-placeholder { width: 100%; height: 200px; background: rgba(0, 0, 0, 0.3); border-radius: var(--radius); margin-top: 2rem; display: flex; align-items: center; justify-content: center; border: 1px dashed var(--border-color); color: var(--text-secondary); }

/* Forms */
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; color: var(--text-secondary); font-size: 0.9rem; }
.form-control { width: 100%; padding: 12px 16px; background: rgba(0, 0, 0, 0.2); border: 1px solid var(--border-color); border-radius: 8px; color: var(--text-primary); transition: var(--transition); }
.form-control:focus { outline: none; border-color: var(--accent-primary); box-shadow: 0 0 10px rgba(16, 185, 129, 0.2); background: rgba(0, 0, 0, 0.4); }
textarea.form-control { min-height: 120px; resize: vertical; }

/* Contact Page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-top: 2rem; }
.contact-info { padding: 3rem; }
.info-item { margin-bottom: 2.5rem; }
.info-item:last-child { margin-bottom: 0; }
.info-item h4 { color: var(--accent-primary); margin-bottom: 0.5rem; }

/* Footer */
.footer { background: rgba(10, 15, 13, 0.9); border-top: 1px solid var(--border-color); padding: 4rem 0 2rem; margin-top: 4rem; backdrop-filter: blur(20px); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { color: var(--text-secondary); margin-top: 1rem; max-width: 300px; }
.footer-links h4 { margin-bottom: 1.5rem; color: var(--accent-primary); }
.footer-links ul li { margin-bottom: 0.75rem; }
.footer-links ul li a { color: var(--text-secondary); }
.footer-links ul li a:hover { color: #fff; text-shadow: 0 0 5px rgba(255, 255, 255, 0.5); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid var(--border-color); color: var(--text-secondary); font-size: 0.9rem; }

/* Legal Content */
.legal-content { padding: 3rem; margin-top: 2rem; margin-bottom: 2rem; max-width: 900px; margin-inline: auto; }
.legal-content h2 { margin: 2rem 0 1rem; color: var(--accent-primary); }
.legal-content p { margin-bottom: 1.5rem; color: var(--text-secondary); }

/* Responsive adjustments */
@media (max-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 3rem; }
    .hotel-detail-grid { grid-template-columns: 1fr; }
    .booking-sidebar { position: static; }
}

@media (max-width: 768px) {
    .grid-3, .grid-2, .contact-grid { grid-template-columns: 1fr; }
    .nav-links {
        position: fixed; top: 70px; left: -100%; width: 100%; height: calc(100vh - 70px);
        background: rgba(10, 15, 13, 0.98); backdrop-filter: blur(20px); flex-direction: column; padding: 2rem; transition: var(--transition);
    }
    .nav-links.active { left: 0; }
    .hamburger { display: block; }
    .hero h1 { font-size: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hotel-gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
    .gallery-img.main { grid-row: auto; }
    .card-actions { flex-direction: column; }
}