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

:root {
    /* Colors */
    --bg-primary: #f9fafb;
    --bg-section: #ffffff;
    --bg-soft: #f1f5f9;
    --border-color: #e2e8f0;
    
    --text-heading: #0f172a;
    --text-body: #475569;
    --text-muted: #94a3b8;

    /* Gradients */
    --accent-teal: linear-gradient(135deg, #0ea5a4, #14b8a6);
    --accent-gold: linear-gradient(135deg, #e7c873, #f5deb3);
    --accent-green: linear-gradient(135deg, #4ade80, #16a34a);

    /* UI Elements */
    --radius: 20px;
    --shadow-soft: 0 15px 40px rgba(15, 23, 42, 0.06);
    --shadow-hover: 0 20px 50px rgba(14, 165, 164, 0.15);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.3s ease;
}

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

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 6rem 0;
}

.text-center {
    text-align: center;
}

/* Header & Nav */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-slow);
}

.site-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-slow);
}

.site-header.scrolled::after {
    transform: scaleX(1);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-heading);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent-teal);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-fast);
}

.nav-links a:hover {
    color: #0ea5a4;
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-heading);
    margin: 5px 0;
    transition: var(--transition-fast);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-slow);
    border: none;
}

.btn-teal {
    background: var(--accent-teal);
    color: white;
    box-shadow: 0 4px 15px rgba(14, 165, 164, 0.2);
}

.btn-teal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 164, 0.3);
    color: white;
}

.btn-gold {
    background: var(--accent-gold);
    color: var(--text-heading);
    box-shadow: 0 4px 15px rgba(231, 200, 115, 0.2);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 200, 115, 0.3);
}

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

.btn-outline:hover {
    border-color: #0ea5a4;
    color: #0ea5a4;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomOut 20s infinite alternate linear;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(249, 250, 251, 0.3), rgba(249, 250, 251, 0.95));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    padding: 2rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #0ea5a4;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-body);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Sections */
.bg-white { background: var(--bg-section); }
.bg-soft { background: var(--bg-soft); }

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Cards & Grids */
.editorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.hotel-card {
    background: var(--bg-section);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-slow);
    border: 1px solid var(--border-color);
}

.hotel-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

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

.hotel-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.hotel-card-content {
    padding: 2.5rem;
}

.hotel-location {
    font-size: 0.85rem;
    color: #0ea5a4;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.hotel-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.hotel-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.features-list li::before {
    content: '✦';
    color: #e7c873;
    margin-right: 10px;
    font-size: 0.8rem;
}

/* Alternating Layout for Details Page */
.hotel-detail-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

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

.hotel-detail-img {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

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

.hotel-detail-info {
    flex: 1;
}

.hotel-detail-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Page Headers */
.page-header {
    padding: 12rem 0 6rem;
    text-align: center;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border-color);
}

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

/* Forms */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-section);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--bg-primary);
}

.form-control:focus {
    outline: none;
    border-color: #0ea5a4;
    box-shadow: 0 0 0 3px rgba(14, 165, 164, 0.1);
}

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

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

.legal-content h2 {
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.legal-content p {
    margin-bottom: 1.5rem;
}

/* Footer */
.site-footer {
    background: var(--bg-section);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

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

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

.footer-links li {
    margin-bottom: 0.8rem;
}

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

.footer-links a:hover {
    color: #0ea5a4;
}

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

/* Animations & Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes zoomOut {
    0% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 { font-size: 3.5rem; }
    .hotel-detail-row, .hotel-detail-row:nth-child(even) {
        flex-direction: column;
        gap: 2rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--bg-section);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
        transform: translateY(-150%);
        transition: var(--transition-slow);
        opacity: 0;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        box-shadow: var(--shadow-soft);
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 { font-size: 2.8rem; }
    .hero-btns { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .page-header h1 { font-size: 2.5rem; }
}