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

:root {
    --primary-color: #1a2a3a;
    /* Deep Navy */
    --accent-color: #d4a017;
    /* Gold/Bronze */
    --reservation-color: #f39c12;
    /* Orange for Reservation */
    --text-color: #444;
    --light-bg: #fdfdfd;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Roboto', sans-serif;
    --max-width: 1200px;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    color: var(--primary-color);
    letter-spacing: 1px;
    font-style: italic;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

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

/* Sticky Buttons */
.sticky-btn-right {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: bottom right;
    background-color: var(--reservation-color);
    color: var(--white);
    padding: 10px 30px;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    z-index: 2000;
    border-radius: 5px 5px 0 0;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
}

.sticky-btn-right:hover {
    background-color: #e67e22;
    padding-bottom: 40px;
}

.sticky-btn-left {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.sticky-btn-left:hover {
    background-color: var(--accent-color);
    transform: scale(1.1);
}

.sticky-btn-left svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.sticky-btn-left:hover {
    background-color: var(--accent-color);
}


/* Hero Section */
.hero {
    height: 100vh;
    background-color: #ddd;
    /* Fallback */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--white);
}

/* Sections */
section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-title span {
    display: block;
    width: 80px;
    height: 2px;
    background-color: var(--accent-color);
    margin: 0 auto;
}

/* About / Intro */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* Rooms Preview */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.room-card {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    overflow: hidden;
}

.room-card:hover {
    transform: translateY(-10px);
}

.room-image {
    height: 300px;
    background-color: #eee;
    background-size: cover;
    background-position: center;
}

.room-info {
    padding: 2rem;
    text-align: center;
}

.room-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.amenities-list {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #777;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.amenities-list span {
    background: #f0f0f0;
    padding: 3px 8px;
    border-radius: 3px;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: #bbb;
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }

    .nav-links {
        display: none;
        /* Add JS toggle for real menu */
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .sticky-btn-right {
        top: auto;
        bottom: 20px;
        right: 20px;
        transform: none;
        margin-right: 0;
        border-radius: 5px;
        padding: 10px 20px;
    }
}