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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
    background: #888; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555; 
}

.font-heading {
    font-family: 'Playfair Display', serif;
}
.font-body {
    font-family: 'Lato', sans-serif;
}
.font-display {
    font-family: 'Cinzel', serif;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Hero Overlay Gradient */
.hero-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}

/* Blog Content Typography (Prose) */
.prose {
    color: #444;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    max-width: 100%;
    word-break: break-word;
}
.prose-lg {
    font-size: 1.15rem;
    line-height: 2;
}
.prose h1, .prose-lg h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    margin: 2.5rem 0 1.2rem 0;
    color: #222;
}
.prose h2, .prose-lg h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: #333;
}
.prose h3, .prose-lg h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1.5rem 0 0.8rem 0;
    color: #444;
}
.prose h4, .prose-lg h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.2rem 0 0.7rem 0;
    color: #555;
}
.prose p, .prose-lg p {
    margin: 1.1em 0;
}
.prose ul, .prose-lg ul, .prose ol, .prose-lg ol {
    margin: 1.2em 0 1.2em 1.5em;
    padding-left: 1.5em;
}
.prose ul, .prose-lg ul {
    list-style-type: disc;
}
.prose ol, .prose-lg ol {
    list-style-type: decimal;
}
.prose li, .prose-lg li {
    margin-bottom: 0.5em;
}
.prose a, .prose-lg a {
    color: #C5A059;
    text-decoration: underline;
    transition: color 0.2s;
}
.prose a:hover, .prose-lg a:hover {
    color: #A67C00;
}
.prose blockquote, .prose-lg blockquote {
    border-left: 4px solid #C5A059;
    background: #faf7f1;
    color: #555;
    margin: 1.5em 0;
    padding: 1em 1.5em;
    font-style: italic;
}
.prose img, .prose-lg img {
    max-width: 100%;
    height: auto;
    margin: 1.5em 0;
    border-radius: 0.5em;
    display: block;
}
.prose table, .prose-lg table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
    font-size: 1em;
}
.prose th, .prose-lg th {
    background: #f5f5f5;
    font-weight: 600;
    padding: 0.6em 1em;
    border: 1px solid #e5e5e5;
}
.prose td, .prose-lg td {
    padding: 0.6em 1em;
    border: 1px solid #e5e5e5;
}
.prose pre, .prose-lg pre {
    background: #23272e;
    color: #f8f8f2;
    padding: 1em;
    border-radius: 0.4em;
    overflow-x: auto;
    margin: 1.5em 0;
    font-size: 0.97em;
}
.prose code, .prose-lg code {
    background: #f4f4f4;
    color: #c7254e;
    padding: 0.2em 0.4em;
    border-radius: 0.3em;
    font-size: 0.97em;
}
.prose hr, .prose-lg hr {
    border: none;
    border-top: 1px solid #e5e5e5;
    margin: 2em 0;
}
.prose strong, .prose-lg strong {
    font-weight: 700;
    color: #222;
}
.prose em, .prose-lg em {
    font-style: italic;
}
.prose figure, .prose-lg figure {
    margin: 1.5em 0;
    text-align: center;
}
.prose figcaption, .prose-lg figcaption {
    font-size: 0.95em;
    color: #888;
    margin-top: 0.5em;
}
.prose caption, .prose-lg caption {
    font-size: 0.95em;
    color: #888;
    margin-bottom: 0.5em;
}
.prose sup, .prose-lg sup, .prose sub, .prose-lg sub {
    font-size: 0.85em;
}
.prose mark, .prose-lg mark {
    background: #fff3cd;
    color: #856404;
    padding: 0.1em 0.3em;
    border-radius: 0.2em;
}

/* Floating Action Button: Book Now */
.fab-book-now {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 5px;
    background: #C5A059;
    color: #2C3E50;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    border: 1px solid rgba(44,62,80,0.15);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.fab-book-now:hover {
    background: #A67C00;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.28);
}
.fab-book-now:active {
    transform: translateY(0);
    box-shadow: 0 6px 16px rgba(0,0,0,0.22);
}
.fab-book-now:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(197,160,89,0.35), 0 8px 20px rgba(0,0,0,0.25);
}
@media (max-width: 480px) {
    .fab-book-now {
        right: 16px;
        bottom: 16px;
        height: 44px;
        padding: 0 14px;
        letter-spacing: 0.06em;
        font-weight: 700;
    }
}
