/* 
  Exact custom CSS extracted from the original https://sites.staylocal.uk/
  All original styles preserved for pixel-perfect match
*/

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

:root {
    --primary: #0f4c3a;
}

body {
    font-family: 'Inter Tight', system_ui, sans-serif;
}

.heading-serif {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
}

.section-header {
    font-size: 2.25rem;
    line-height: 1.1;
    font-weight: 700;
}

.nav-active {
    color: #0f4c3a;
    font-weight: 600;
}

.property-demo {
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    border: 12px solid #f8f1e9;
    border-radius: 16px;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
}

.demo-hero {
    background-size: cover;
    background-position: center;
    height: 420px;
    position: relative;
}

.mini-nav {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
}

.benefit-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgb(15 76 58 / 0.1), 0 8px 10px -6px rgb(15 76 58 / 0.1);
}

.nav-scrolled {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.05);
}

.uk-green {
    color: #0f4c3a;
}

.soft-bg {
    background-color: #f8f1e9;
}

.demo-tab {
    transition: all 0.2s ease;
}

.demo-tab.active {
    background-color: #0f4c3a;
    color: white;
    border-radius: 9999px;
}

.gallery-img {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.03);
}

.stat-number {
    font-variant-numeric: tabular-nums;
}

.cta-button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgb(15 76 58 / 0.3), 0 4px 6px -4px rgb(15 76 58 / 0.3);
}

.holiday-shadow {
    box-shadow: 0 10px 10px -3px rgb(15 76 58 / 0.1);
}