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

:root {
    --bg-main: #0a0a0a;
    --bg-sec: #141414;
    --gold: #d6b36a;
    --copper: #b45309;
    --olive: #6b705c;
    --rose: #e6ccb2;
    
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(214, 179, 106, 0.15);
    --glass-glow: rgba(214, 179, 106, 0.08);
    
    --text-main: #ffffff;
    --text-muted: #a3a3a3;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --max-width: 1240px;
    --section-spacing: 110px;
}

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Fixes header overlap for anchor links across all pages */
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
}

body {
    overflow-x: hidden;
}

::selection {
    background-color: var(--gold);
    color: var(--bg-main);
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--rose);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--text-main);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* STRICT COLOR ENFORCEMENT - WARMTH FILTER */
img {
    max-width: 100%;
    height: auto;
    display: block;
    filter: sepia(0.3) hue-rotate(-15deg) saturate(1.2) brightness(0.9);
    transition: filter 0.5s ease, transform 0.7s ease;
}

/* UTILITIES */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: var(--section-spacing) 0;
}

.text-center { text-align: center; }
.gold-text { color: var(--gold); }
.copper-text { color: var(--copper); }
.rose-text { color: var(--rose); }

/* GLASSMORPHISM */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--glass-border);
    border-top: 1px solid rgba(214, 179, 106, 0.3);
    border-left: 1px solid rgba(214, 179, 106, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 0 20px var(--glass-glow);
    border-radius: 4px;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-align: center;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--copper));
    color: var(--bg-main);
    box-shadow: 0 4px 15px rgba(180, 83, 9, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--rose), var(--gold));
    z-index: -1;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.btn-gold:hover {
    color: var(--bg-main);
    box-shadow: 0 0 25px rgba(214, 179, 106, 0.6);
    transform: translateY(-2px);
}

.btn-gold:hover::before {
    opacity: 1;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--glass-bg);
    box-shadow: 0 0 15px var(--glass-glow);
    color: var(--rose);
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.4s ease, padding 0.4s ease;
    padding: 20px 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.9), rgba(10,10,10,0));
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-main);
    letter-spacing: 1px;
    position: relative;
    text-decoration: none;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40%;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-icon {
    display: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('images/photo-1520250497591-112f2f40a3f4.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: scale(1.05);
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.8) 100%),
                linear-gradient(45deg, rgba(180, 83, 9, 0.4) 0%, transparent 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1.2s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, var(--rose));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero p.subtext {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 600px;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    gap: 20px;
}

/* EDITORIAL GRID (HOTELS) */
.editorial-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.hotel-card {
    position: relative;
    group: hover;
}

.hotel-card:nth-child(odd) {
    grid-column: 1 / 8;
}

.hotel-card:nth-child(even) {
    grid-column: 6 / 13;
    margin-top: 120px;
}

.hotel-img-wrapper {
    overflow: hidden;
    position: relative;
    border-radius: 2px;
}

.hotel-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(10,10,10,0.9), transparent);
    pointer-events: none;
}

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

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

.hotel-info {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 40px;
    width: 100%;
    z-index: 2;
}

.hotel-price {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.hotel-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hotel-desc {
    color: #ccc;
    margin-bottom: 25px;
    max-width: 90%;
}

.hotel-card-glass {
    position: absolute;
    top: -30px;
    right: -30px;
    padding: 30px;
    width: 250px;
    z-index: 3;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.hotel-card:hover .hotel-card-glass {
    opacity: 1;
    transform: translateY(0);
}

.glass-title {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 10px;
}

.glass-list {
    list-style: none;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.glass-list li {
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.glass-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--copper);
    font-size: 0.7rem;
    top: 2px;
}

/* TRAVEL GUIDE SECTION */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 50px;
}

.guide-box {
    padding: 50px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.guide-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6), inset 0 0 30px var(--glass-glow);
}

.guide-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

/* HOTEL DETAIL PAGES */
.page-hero {
    height: 70vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    position: relative;
}

.page-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.editorial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d1d1d1;
}

.editorial-text h2 {
    font-size: 2.2rem;
    margin: 40px 0 20px;
    color: var(--rose);
}

.editorial-text h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--gold);
}

.editorial-text p {
    margin-bottom: 24px;
}

.editorial-text .dropcap {
    float: left;
    font-size: 4rem;
    line-height: 0.8;
    padding-right: 15px;
    padding-top: 5px;
    font-family: var(--font-heading);
    color: var(--gold);
}

.sidebar {
    position: sticky;
    top: 120px;
    padding: 40px;
    height: max-content;
}

.sidebar h4 {
    font-size: 1.4rem;
    color: var(--gold);
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.amenity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    border-radius: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.gallery-item {
    height: 300px;
    overflow: hidden;
    border-radius: 2px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* FAQs */
.faq-item {
    border-bottom: 1px solid var(--glass-border);
    padding: 20px 0;
}

.faq-q {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 10px;
}

/* CONTACT SECTION */
.contact-form {
    max-width: 600px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.contact-form input, 
.contact-form select, 
.contact-form textarea {
    width: 100%;
    padding: 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus, 
.contact-form select:focus, 
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(214, 179, 106, 0.2);
}

.contact-form select option {
    background: var(--bg-sec);
    color: var(--text-main);
}

/* FOOTER */
.footer {
    background: var(--bg-sec);
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    color: var(--gold);
}

.footer-brand p {
    font-size: 0.9rem;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.8rem;
    color: #666;
}

/* ANIMATIONS & RESPONSIVE */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .editorial-grid { display: flex; flex-direction: column; }
    .hotel-card:nth-child(even) { margin-top: 0; }
    .hero h1 { font-size: 3.5rem; }
    .guide-grid { grid-template-columns: 1fr; }
    .detail-grid { grid-template-columns: 1fr; }
    .sidebar { position: static; margin-top: 40px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-icon { display: block; }
    .hero h1 { font-size: 2.8rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .hotel-card-glass { display: none; }
}