/*
Theme Name: Innkeeper Theme
Theme URI: https://techtixlabs.co.uk
Author: Techtix
Description: A modern, coastal-inspired WordPress theme fully optimized for the Innkeeper PMS.
Version: 1.1.2
Text Domain: innkeeper
*/

:root {
    --primary: #0B3954; /* Deep Ocean Navy */
    --accent: #4A90E2;  /* Vibrant Wave Blue */
    --background: #F5F7FA; /* Light Sand */
    --text: #4a4a4a;
    --white: #ffffff;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Montserrat', sans-serif;
}

body {
    margin: 0;
    font-family: var(--body-font);
    background-color: var(--background);
    color: var(--text);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

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

.site-branding h1, .site-branding a {
    text-decoration: none;
    color: var(--primary);
    font-family: var(--heading-font);
    font-size: 1.8rem;
    margin: 0;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

.main-navigation a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: var(--accent);
}

/* Hero Section */
.hero-section {
    /* Background is now injected dynamically via index.php */
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content h2 {
    font-family: var(--heading-font);
    font-size: 4rem;
    margin: 0 0 15px 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    font-weight: 300;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.btn {
    background: var(--accent);
    color: var(--white);
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
    display: inline-block;
}

.btn:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Main Content Area */
.content-area {
    padding: 80px 20px;
}

.post {
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    margin-bottom: 40px;
}

.post-title {
    font-family: var(--heading-font);
    color: var(--primary);
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 20px;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Footer */
.site-footer {
    background: var(--primary);
    color: rgba(255,255,255,0.7);
    text-align: center;
    padding: 40px 0;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .hero-content h2 { font-size: 2.5rem; }
    .main-navigation ul { flex-direction: column; text-align: center; gap: 10px; margin-top: 15px; }
    .site-header .container { flex-direction: column; }
}

