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

:root {
    --bg-primary: #0F1F14;
    --bg-secondary: #132A1C;
    --gold-primary: #FFD54F;
    --gold-secondary: #F4B400;
    --gold-grad: linear-gradient(135deg, #FFD54F, #F4B400);
    --green-grad: linear-gradient(135deg, #22C55E, #15803D);
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: 1px solid rgba(255, 213, 79, 0.15);
    --gold-glow: rgba(255, 213, 79, 0.25);
    --green-glow: rgba(34, 197, 94, 0.25);
    --text-primary: #F9FAFB;
    --text-secondary: #D1D5DB;
    --text-muted: #9CA3AF;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --max-width: 1380px;
    --spacing-desktop: 110px;
    --spacing-tablet: 85px;
    --spacing-mobile: 65px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: var(--glass-border);
    border-radius: 26px;
}

.gold-text {
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Header & Nav */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: var(--max-width);
    z-index: 1000;
    background: rgba(15, 31, 20, 0.7);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: var(--glass-border);
    border-radius: 48px;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--gold-grad);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--gold-glow);
}

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

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

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

#mobile-toggle {
    display: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 48px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--gold-grad);
    color: var(--bg-primary);
    box-shadow: 0 4px 15px var(--gold-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 213, 79, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
}

.btn-secondary:hover {
    background: var(--glass-bg);
    box-shadow: 0 0 15px var(--gold-glow);
    transform: translateY(-2px);
}

.btn-green {
    background: transparent;
    border: 2px solid #22C55E;
    color: #22C55E;
}

.btn-green:hover {
    background: rgba(34, 197, 94, 0.1);
    box-shadow: 0 0 15px var(--green-glow);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(15, 31, 20, 0.3), var(--bg-primary)),
                linear-gradient(to right, rgba(15, 31, 20, 0.8), rgba(15, 31, 20, 0.2));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Hotel Cards */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.hotel-card {
    border-radius: 26px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.hotel-card:hover {
    transform: scale(1.03) translateY(-10px);
    box-shadow: 0 15px 35px var(--green-glow);
    border-color: rgba(255, 213, 79, 0.5);
}

.hotel-img {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.hotel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.hotel-price {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(15, 31, 20, 0.8);
    backdrop-filter: blur(10px);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    color: var(--gold-primary);
    border: 1px solid rgba(255, 213, 79, 0.3);
}

.hotel-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.hotel-location {
    color: var(--gold-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
}

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

.hotel-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.hotel-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.highlight-tag {
    background: rgba(34, 197, 94, 0.1);
    color: #22C55E;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

/* Alternating Experience Sections */
.experience-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.experience-row:nth-child(even) {
    flex-direction: row-reverse;
}

.experience-img {
    flex: 1;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
}

.experience-img::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    box-shadow: inset 0 0 0 1px rgba(255, 213, 79, 0.2);
    border-radius: 26px;
    pointer-events: none;
}

.experience-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.experience-text {
    flex: 1;
}

.experience-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.experience-text h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.experience-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Price Insights */
.insight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.insight-card {
    padding: 40px;
    text-align: center;
}

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

.insight-value {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: var(--text-primary);
    margin-bottom: 10px;
}

.insight-label {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(34, 197, 94, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    color: var(--gold-primary);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 300px;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

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

.footer-links ul li a {
    color: var(--text-muted);
}

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

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

/* Internal Pages Header Space */
.page-header {
    padding-top: 180px;
    padding-bottom: 60px;
    text-align: center;
    background: linear-gradient(to bottom, var(--bg-secondary), var(--bg-primary));
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

/* Contact Form */
.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(255, 213, 79, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Legal Pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    margin: 40px 0 20px;
    color: var(--gold-primary);
}

.legal-content p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 1024px) {
    .section { padding: var(--spacing-tablet) 0; }
    .hero h1 { font-size: 3.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section { padding: var(--spacing-mobile) 0; }
    .header { padding: 15px 20px; width: calc(100% - 20px); }
    .mobile-menu-btn { display: block; }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        border-radius: 0 0 26px 26px;
        border-bottom: var(--glass-border);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    #mobile-toggle:checked ~ .nav-links {
        transform: translateY(0);
    }

    .nav-links .btn { width: 100%; margin-top: 10px; }
    
    .hero h1 { font-size: 2.5rem; }
    .hero-btns { flex-direction: column; }
    
    .experience-row, .experience-row:nth-child(even) {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-grid { grid-template-columns: 1fr; }
    .contact-wrapper { padding: 30px 20px; }
}