/* Somers Wintersport Theme CSS */
:root {
    --color-primary: #0B2545;
    --color-secondary: #F5F7FA;
    --color-tertiary: #E0E4EC;
    --color-accent: #FF7A00;
    --color-accent-secondary: #00B3B8;
    --color-text-dark: #111827;
    --color-text-muted: #6B7280;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Base Styles */
.somers-theme {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: var(--color-secondary);
    line-height: 1.6;
}

/* Header & Navigation */
.somers-header {
    background: transparent;
    transition: all 0.3s ease;
}

.somers-header .navbar {
    background-color: var(--color-primary);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.somers-header .navbar.scrolled {
    background-color: rgba(11, 37, 69, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(11, 37, 69, 0.1);
}

.somers-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.somers-logo-main {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: white;
    letter-spacing: -0.5px;
}

.somers-logo-sub {
    font-size: 0.75rem;
    color: var(--color-accent-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: -2px;
}

.somers-header .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.2s ease;
    position: relative;
}

.somers-header .nav-link:hover,
.somers-header .nav-link.active {
    color: white !important;
}

.somers-header .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--color-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.somers-header .nav-link:hover::after,
.somers-header .nav-link.active::after {
    transform: scaleX(1);
}

.somers-badge {
    display: inline-block;
    background-color: var(--color-accent);
    color: white;
    font-size: 0.7rem;
    padding: 0.1rem 0.5rem;
    border-radius: 12px;
    margin-left: 0.5rem;
    vertical-align: middle;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(11, 37, 69, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.search-overlay.active {
    display: flex;
}

.search-content {
    width: 100%;
    max-width: 700px;
    position: relative;
}

.search-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.2s;
}

.search-close:hover {
    color: var(--color-accent);
}

.search-form {
    display: flex;
    gap: 10px;
}

.search-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1.2rem;
    font-size: 1.1rem;
}

.search-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-form .btn {
    padding: 1.2rem 2rem;
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

.search-suggestions {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.search-suggestions a {
    color: var(--color-accent-secondary);
    text-decoration: none;
    padding: 0.3rem 0.8rem;
    border: 1px solid rgba(0, 179, 184, 0.3);
    border-radius: 20px;
    transition: all 0.2s;
}

.search-suggestions a:hover {
    background-color: var(--color-accent-secondary);
    color: white;
    border-color: var(--color-accent-secondary);
}

/* Hero Section */
.somers-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a3a6a 100%);
    color: white;
    padding: 8rem 0 5rem;
    margin-top: 76px;
    position: relative;
    overflow: hidden;
}

.somers-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%2300b3b8' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero-badge {
    display: inline-block;
    background-color: var(--color-accent);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
}

.hero-image-container {
    position: relative;
}

.hero-image-main {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero-image-main:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.badge-rental,
.badge-sale {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.badge-rental {
    background-color: var(--color-accent-secondary);
    color: white;
}

.badge-sale {
    background-color: var(--color-accent);
    color: white;
}

/* Categories */
.somers-categories {
    background-color: white;
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.category-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background-color: var(--color-secondary);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(11, 37, 69, 0.1);
}

.category-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, var(--color-primary) 100%);
    opacity: 0.3;
}

.category-icon {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-primary);
}

.category-content {
    padding: 1.5rem;
}

.category-title {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.category-link {
    color: var(--color-accent-secondary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
}

.category-card:hover .category-link {
    gap: 10px;
}

/* Rental Banner */
.somers-rental-banner {
    background-color: var(--color-tertiary);
}

.rental-card {
    background-color: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.rental-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.rental-text {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.rental-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.rental-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    color: var(--color-text-dark);
}

.rental-features li i {
    color: var(--color-accent-secondary);
}

.rental-image {
    position: relative;
}

.rental-image img {
    border-radius: 10px;
    width: 100%;
    height: auto;
}

.rental-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--color-accent);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.3);
}

/* Featured Products */
.somers-featured {
    background-color: white;
}

.product-card {
    background-color: var(--color-secondary);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(11, 37, 69, 0.1);
}

.product-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
}

.badge-nieuw {
    background-color: var(--color-accent-secondary);
}

.badge-sale {
    background-color: var(--color-accent);
}

.product-wishlist {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background-color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: all 0.2s;
    cursor: pointer;
}

.product-wishlist:hover {
    color: #ff4757;
    background-color: #ffeaea;
}

.product-content {
    padding: 1.5rem;
}

.product-category {
    color: var(--color-accent-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.product-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0.5rem 0;
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
}

.product-actions .btn {
    flex: 1;
}

/* Location Section */
.somers-location {
    background-color: var(--color-tertiary);
}

.location-card {
    background-color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.location-info {
    margin-bottom: 2rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.location-item i {
    color: var(--color-accent-secondary);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.location-item h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.location-map {
    height: 100%;
    min-height: 400px;
    background-color: var(--color-secondary);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-placeholder {
    text-align: center;
    padding: 2rem;
}

.map-marker {
    width: 80px;
    height: 80px;
    background-color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.map-text {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

/* Footer */
.somers-footer {
    background-color: var(--color-primary);
    color: white;
    padding: 4rem 0 2rem;
}

.somers-logo-footer {
    margin-bottom: 1.5rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.2s;
}

.social-link:hover {
    background-color: var(--color-accent);
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s;
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--color-accent-secondary);
    margin-top: 0.2rem;
}

.footer-contact a {
    color: white;
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--color-accent);
}

.opening-hours h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    color: white;
}

.opening-hours h6 i {
    color: var(--color-accent-secondary);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 3rem 0;
}

.footer-bottom {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: white;
}

/* List Page Styles */
.somers-page-header {
    background-color: var(--color-primary);
    color: white;
    margin-top: 76px;
}

.somers-breadcrumb {
    --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.5);
    --bs-breadcrumb-item-active-color: var(--color-accent);
}

.somers-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.somers-breadcrumb .breadcrumb-item a:hover {
    color: white;
}

.page-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-description {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
}

/* Sidebar */
.somers-sidebar {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.widget-title {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--color-tertiary);
}

.widget-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-list li {
    margin-bottom: 0.8rem;
}

.widget-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-dark);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: all 0.2s;
}

.widget-list a:hover,
.widget-list a.active {
    color: var(--color-accent);
    padding-left: 10px;
}

.widget-list .count {
    background-color: var(--color-tertiary);
    color: var(--color-text-muted);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

.widget-filter .form-check {
    margin-bottom: 0.8rem;
}

.widget-filter .form-check-input:checked {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

.price-range {
    padding: 0 1rem;
}

.price-values {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Product Cards */
.somers-card {
    border: 1px solid var(--color-tertiary);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    background-color: white;
}

.somers-card:hover {
    border-color: var(--color-accent-secondary);
    box-shadow: 0 10px 30px rgba(0, 179, 184, 0.1);
}

.somers-card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.somers-card-body {
    padding: 1.5rem;
}

.somers-card-title {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.8rem;
}

.somers-card-text {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.somers-card-footer {
    padding: 1rem 1.5rem;
    background-color: var(--color-secondary);
    border-top: 1px solid var(--color-tertiary);
}

/* Pagination */
.somers-pagination .pagination {
    justify-content: center;
}

.somers-pagination .page-link {
    color: var(--color-primary);
    border-color: var(--color-tertiary);
    margin: 0 0.2rem;
    border-radius: 8px !important;
    min-width: 40px;
    text-align: center;
}

.somers-pagination .page-link:hover {
    background-color: var(--color-accent-secondary);
    border-color: var(--color-accent-secondary);
    color: white;
}

.somers-pagination .page-item.active .page-link {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

/* Blog Styles */
.somers-card-featured {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a3a6a 100%);
    color: white;
    border: none;
}

.somers-card-featured .somers-card-body {
    color: white;
}

.somers-card-featured .somers-card-title a {
    color: white;
}

.somers-card-featured .somers-card-text {
    color: rgba(255, 255, 255, 0.8);
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.post-category {
    background-color: var(--color-accent);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 600;
}

.post-date {
    color: var(--color-text-muted);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background-color: var(--color-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--color-primary);
}

.read-time {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Single Post */
.post-header {
    margin-bottom: 3rem;
}

.post-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.post-share {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.share-link {
    color: white;
    opacity: 0.7;
    transition: opacity 0.2s;
    text-decoration: none;
}

.share-link:hover {
    opacity: 1;
    color: var(--color-accent);
}

.somers-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.somers-content h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-primary);
    margin: 2.5rem 0 1.5rem;
}

.somers-content h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-primary);
    margin: 2rem 0 1rem;
}

.somers-content p {
    margin-bottom: 1.5rem;
}

.somers-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.post-tags .tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    display: inline-block;
    background-color: var(--color-tertiary);
    color: var(--color-primary);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.tag:hover {
    background-color: var(--color-accent);
    color: white;
}

/* Related Articles */
.somers-related-articles {
    background-color: var(--color-secondary);
    padding: 3rem 0;
    border-radius: 20px;
}

.related-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.related-subtitle {
    color: var(--color-text-muted);
}

/* Markdown Body */
.markdown-body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
}

.markdown-body h1,
.markdown-body h2,
.markdown-body h3 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.markdown-body p {
    margin-bottom: 1rem;
}

.markdown-body a {
    color: var(--color-accent-secondary);
    text-decoration: none;
}

.markdown-body a:hover {
    text-decoration: underline;
}

.markdown-body ul,
.markdown-body ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.markdown-body code {
    background-color: var(--color-tertiary);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: monospace;
}

.markdown-body pre {
    background-color: var(--color-tertiary);
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.markdown-body blockquote {
    border-left: 4px solid var(--color-accent);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    color: var(--color-text-muted);
    font-style: italic;
}

/* Buttons */
.btn-primary {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    transition: all 0.2s;
}

.btn-primary:hover {
    background-color: #e56b00;
    border-color: #e56b00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.3);
}

.btn-outline-primary {
    color: var(--color-accent);
    border-color: var(--color-accent);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
}

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

.btn-warning {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
    font-weight: 600;
}

/* Utility */
.min-vh-80 {
    min-height: 80vh;
}

.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background-color: var(--color-accent);
    color: white;
    padding: 0.5rem 1rem;
    z-index: 9999;
    text-decoration: none;
}

.skip-to-content:focus {
    top: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .post-title {
        font-size: 2rem;
    }

    .rental-card,
    .location-card {
        padding: 2rem;
    }

    .somers-sidebar {
        margin-bottom: 2rem;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
}