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

body {
    font-family: "Rubik", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background-color: #801727;
    color: #ffffff;
}

.location-link {
    color: #f79646;
    font-weight: bold;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.location-link:hover {
    color: #ffcc00;
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #f79646;
}

a:visited {
    color: #ffffff;
}

.header-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
    margin-bottom: 0;
}

.header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #A92525;
    opacity: 0.61;
    z-index: 1;
}

.main-nav {
    margin: 0;
    padding: 8px 0;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.main-nav a {
    display: block;
    padding: 3px 8px;
    color: #ffffff;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: color 0.3s ease;
}

.main-nav a.active {
    color: #f79646;
}

.main-nav a:hover,
.main-nav a.active {
    color: #f79646;
}

h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 20px;
}

h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    color: #f79646;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.7;
}

strong {
    color: #f79646;
}

h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    color: #f79646;
    margin-bottom: 15px;
}

hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 30px 0;
}

.content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.site-footer {
    margin-top: 40px;
    padding: 30px 20px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05);
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    margin: 0 10px;
    font-size: 0.9rem;
}

.full-width-img {
    max-width: 700px;
    height: auto;
    width: 100%;
    display: block;
    margin: 0 auto;
}