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

:root {
    --bg-dark: rgba(153, 51, 0, 0.15);
    --bg-darker: rgba(102, 34, 0, 0.35);
    --bg-solid-dark: #140500;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 200, 150, 0.15);
    --gold: #d4af37;
    --beige: #e5d3b3;
    --blue: #ff6a00;
    --text-main: #f8fafc;
    --text-muted: #d6c5b3;
    
    --grad-luxury: linear-gradient(135deg, rgba(153, 51, 0, 0.3), rgba(76, 25, 0, 0.5));
    --grad-gold: linear-gradient(135deg, #d4af37, #e5d3b3);
    --grad-accent: linear-gradient(135deg, #d4af37, #ff6a00);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-solid-dark);
    background-image: linear-gradient(135deg, #1f0800 0%, #0a0200 100%);
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--beige);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: transparent;
    transition: all 0.4s ease;
}
header.scrolled {
    background: rgba(76, 25, 0, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--beige);
    letter-spacing: 1px;
}
.nav-links {
    display: flex;
    gap: 2rem;
}
.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-main);
}
.nav-links a:hover {
    color: var(--gold);
}
.btn-nav {
    background: var(--glass);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}
.btn-nav:hover {
    background: var(--grad-gold);
    color: var(--bg-solid-dark);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--grad-gold);
    color: var(--bg-solid-dark);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}
.btn-secondary {
    display: inline-block;
    background: var(--glass);
    color: var(--beige);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    background: rgba(255, 106, 0, 0.2);
    border-color: var(--beige);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(51, 17, 0, 0.5), rgba(20, 5, 0, 0.95));
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-top: 4rem;
}
.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}
.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}
.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--beige);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-feature i {
    color: var(--gold);
}

/* Hotel Grid */
.hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}
.hotel-card {
    background: var(--bg-darker);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.hotel-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
}
.hotel-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}
.hotel-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.hotel-card:hover .hotel-img-wrapper img {
    transform: scale(1.05);
}
.hotel-location {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(76, 25, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--beige);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.hotel-content {
    padding: 2rem;
}
.hotel-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.hotel-tagline {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}
.hotel-feature {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.hotel-feature::before {
    content: '✦';
    color: var(--blue);
}

/* Detail Page Layout */
.detail-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 4rem;
}
.detail-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-solid-dark) 0%, rgba(20, 5, 0, 0) 100%);
}
.detail-header-content {
    position: relative;
    z-index: 1;
}
.detail-header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}
.detail-location {
    font-size: 1.2rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: -3rem;
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}
.gallery-img {
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-img:hover img {
    transform: scale(1.1);
}

.detail-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}
.detail-main section {
    margin-bottom: 4rem;
}
.detail-main h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 0.5rem;
}
.detail-main p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1rem;
}
.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-main);
    background: var(--glass);
    padding: 1rem;
    border-radius: 4px;
}
.feature-list li i { color: var(--gold); }

.detail-sidebar {
    position: sticky;
    top: 100px;
    background: var(--bg-darker);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 8px;
    height: fit-content;
}
.detail-sidebar h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.detail-sidebar p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}
.detail-sidebar .btn-primary {
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
}
.detail-sidebar .btn-secondary {
    width: 100%;
    text-align: center;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}
.form-control {
    width: 100%;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    color: var(--text-main);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}
.form-control:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 106, 0, 0.05);
}
textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

/* Footer */
footer {
    background: var(--bg-darker);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--glass-border);
    padding: 5rem 0 2rem 0;
    margin-top: 4rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}
.footer-brand h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.footer-brand p {
    color: var(--text-muted);
    max-width: 300px;
    margin-bottom: 1.5rem;
}
.footer-links h5 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}
.footer-links ul li {
    margin-bottom: 0.8rem;
}
.footer-links ul li a {
    color: var(--text-muted);
}
.footer-links ul li a:hover {
    color: var(--gold);
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .detail-layout { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-features { flex-direction: column; gap: 1rem; }
    .hero h1 { font-size: 2.5rem; }
    .section { padding: 4rem 0; }
    .detail-hero h1 { font-size: 2.5rem; }
    .feature-list { grid-template-columns: 1fr; }
}