@layer properties {
    @supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))) {
        *, :before, :after, ::backdrop {
            --tw-rotate-x: initial;
            --tw-rotate-y: initial;
            --tw-rotate-z: initial;
            --tw-skew-x: initial;
            --tw-skew-y: initial;
            --tw-border-style: solid
        }
    }
}

@import url('https://fonts.googleapis.com/css2?family=Headland+One&display=swap');

:root {
    --primary-color: #a22c28;
    --primary-light: #f8ebeb;
    --primary-dark: #8c2622;
    --text-color: #333;
    --text-light: #666;
    --white: #fff;
    --font-heading: "Headland One", serif;
    --font-body: "Glory";
}

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

.visible {
    visibility: visible
}

.fixed {
    position: fixed
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.container {
    width: 100%
}

.mx-auto {
    margin-inline: auto
}

.block {
    display: block
}

.flex {
    display: flex
}

.grid {
    display: grid
}

.hidden {
    display: none
}

body, button, input, select, textarea {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--white);
    font-size: 16px;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 400;
    line-height: 1.2;
}

p {
    color: var(--text-light);
    margin-bottom: 15px;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.inline-flex {
    display: inline-flex
}

.grow {
    flex-grow: 1
}

.transform {
    transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,)
}

.border {
    border-style: var(--tw-border-style);
    border-width: 1px
}

.text-\[3\.5rem\] {
    font-size: 3.5rem
}

.italic {
    font-style: italic
}

.transition {
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
    transition-timing-function: var(--tw-ease, ease);
    transition-duration: var(--tw-duration, 0s)
}

.text-right {
    text-align: right
}

.mt-3 {
    margin-top: 1.5rem
}

.mt-5 {
    margin-top: 3rem
}

.light-bg {
    background-color: var(--primary-light)
}

.dark-bg {
    background-color: var(--primary-color);
    color: var(--white)
}

.dark-bg h2, .dark-bg p {
    color: var(--white)
}

.border-top-bottom {
    border-top: 1px dashed var(--primary-color);
    border-bottom: 1px dashed var(--primary-color);
    margin: 40px 0
}

.section {
    padding: 80px 0
}

.section-title h2 {
    margin-bottom: 10px;
    font-size: 2.5rem
}

.divider-line {
    background-color: var(--primary-color);
    width: 60px;
    height: 2px;
    margin: 20px auto
}

.btn {
    cursor: pointer;
    text-align: center;
    font-weight: 600;
    font-family: var(--font-body);
    border-radius: 4px;
    padding: 10px 24px;
    transition: background 0.3s, color 0.3s;
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

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

.btn-outline {
    color: var(--white);
    border: 2px solid var(--white);
    background-color: #0000
}

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

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 10px 30px;
}

.btn-sm {
    padding: 6px 16px;
    font-size: 14px
}

@property --tw-rotate-x {
    syntax: "*";
    inherits: false
}

@property --tw-rotate-y {
    syntax: "*";
    inherits: false
}

@property --tw-rotate-z {
    syntax: "*";
    inherits: false
}

@property --tw-skew-x {
    syntax: "*";
    inherits: false
}

@property --tw-skew-y {
    syntax: "*";
    inherits: false
}

@property --tw-border-style {
    syntax: "*";
    inherits: false;
    initial-value: solid
}

.site-header {
    position: fixed;
    top: 45px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 14px 0;
    transition: top 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
    background: #a12b27;
}

.site-header.scrolled {
    top: 0;
    background: #a12b27;
    padding: 12px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo-img {
    height: 40px;
    max-width: 160px;
}

.main-nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    padding: 8px 15px;
    transition: 0.3s;
}

.nav-link:hover {
    opacity: 0.8;
}

.nav-link.active {
    background: #fff;
    color: #a12b27;
    border-radius: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.book-btn {
    background: #fff;
    color: #a12b27;
    padding: 8px 20px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.book-btn:hover {
    transform: translateY(-2px);
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    color: #fff;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 768px) {
    .main-nav, .social-icons, .header-actions {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .main-nav.main-nav--open {
        display: block !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-color);
        padding: 20px 0;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    .main-nav.main-nav--open ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

.site-footer {
    background-color: var(--primary-color);
    color: var(--white);
    margin-top: 80px;
    padding-top: 150px;
    padding-bottom: 30px;
}

.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    display: flex;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo-img {
    object-fit: contain;
    width: auto;
    height: 50px;
    display: block;
    margin-left: -11px;
}

.links-col ul li {
    margin-bottom: 10px;
}

.links-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.links-col a:hover {
    color: var(--white);
}

.contact-details-col p {
    color: #fffc;
    margin-bottom: 10px
}

.footer-bottom-area {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    display: flex;
}

.newsletter-col h4 {
    color: var(--white);
    margin-bottom: 5px;
}

.newsletter-col p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.input-row {
    display: flex;
}

.input-row input {
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
    width: 250px;
    padding: 10px 15px;
}

.input-row button {
    border-radius: 0 4px 4px 0;
}

@media (max-width: 900px) {
    .site-footer {
        padding-top: 100px;
    }

    .footer-bottom-area {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter-form-col, .input-group, .input-row {
        width: 100%;
    }

    .input-row input {
        width: 100%;
        margin-right: 4px;
    }

    .input-row input, .input-row button {
        border-radius: 4px;
    }
}

.mobile-toggle svg path {
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
    transform-box: fill-box;
}

.mobile-toggle--open svg path:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle--open svg path:nth-child(2) {
    opacity: 0;
}

.mobile-toggle--open svg path:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
