/* <----------------------------------CSS Variables------------------> */
:root {
    --primary-dark: #1e3a22;
    --primary-medium: #2a4a2e;
    --primary-light: #9db086;
    --primary-lightest: #b8d4a8;
    --hero-gradient: linear-gradient(135deg, #1e3a22 0%, #2a4a2e 50%, #325435 100%);
    --content-gradient: linear-gradient(135deg, #b8d4a8 0%, #9db086 100%);
    --white-transparent: rgba(255, 255, 255, 0.95);
    --shadow-light: 0px 8px 20px rgba(30, 58, 34, 0.2);
    --shadow-medium: 0px 15px 35px rgba(30, 58, 34, 0.3);
}

/* <----------------------------------Global Styles------------------> */
body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    padding: 0;
    margin: 0;
}

div, p, form, input, a, span, button {
    box-sizing: border-box;
}

input {
    display: block;
}

input, input:hover, input:active, button, button:hover, button:active {
    text-decoration: none;
    border: none;
    outline: none;
    text-transform: none;
    transition: all 0.7s ease;
}

ul, li {
    display: block;
    padding: 0;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    padding: 0;
    margin: 0;
}

h1 {
    color: #e3ebe6;
    letter-spacing: 0.25pc;
    font-weight: 800;
    font-size: 50px;
}

h2 {
    color: #313834;
    letter-spacing: 0.2pc;
    font-weight: 600;
    font-size: 30px;
}

h3 {
    color: #313834;
    letter-spacing: 0.04pc;
    font-weight: 500;
    font-size: 25px;
}

a, a:hover, a:active, a:focus {
    text-decoration: none;
    transition: all 0.1s ease;
    outline: none;
    box-shadow: none;
}

.d-block { display: block; }
.d-flex { display: flex; }
.j-cont-betw { justify-content: space-between; }
.j-cont-arroud { justify-content: space-around; }
.btn:focus { box-shadow: none; }

/* <----------------------------------Header & Navigation------------------> */
.header_nav {
    background-color: #343231d9;
    position: relative;
    z-index: 100;
}

.header_nav .container {
    position: relative;
}

.nav {
    padding: 10px 0;
    align-items: center !important;
    min-height: 70px;
}

.logo {
    padding: 10px 0;
}

.nav_logo {
    width: 60px;
    max-height: 50px;
    width: auto;
}

.menu {
    justify-content: space-around;
    padding: 25px 0;
}

.menu-item a {
    font-weight: 500;
    color: #fff;
    font-size: 20px;
}

.menu-item a:hover {
    font-weight: 500;
    color: #9db086;
    text-decoration: underline;
    transition: 0.5s;
}

/* Mobile Menu */
.navbar-toggler {
    background: none;
    border: none;
    padding: 8px;
    outline: none;
    cursor: pointer;
    position: relative;
    width: 40px;
    height: 40px;
    z-index: 1001;
}

.navbar-toggler-icon {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    position: relative;
    transition: all 0.3s ease-in-out;
    margin: 0 auto;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    left: 0;
}

.navbar-toggler-icon::before { top: -8px; }
.navbar-toggler-icon::after { top: 8px; }

.navbar-toggler.active .navbar-toggler-icon {
    background-color: transparent;
}

.navbar-toggler.active .navbar-toggler-icon::before,
.navbar-toggler.active .navbar-toggler-icon::after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.navbar-toggler.active .navbar-toggler-icon::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler.active .navbar-toggler-icon::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 0;
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(52, 50, 49, 0.98);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease-in-out;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-content {
    padding: 20px;
}

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

.mobile-menu-list li {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-list li:last-child {
    border-bottom: none;
}

.mobile-menu-list li a {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 15px 0;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    padding-left: 15px;
}

.mobile-menu-list li a:hover {
    color: #9db086;
    border-left-color: #9db086;
    padding-left: 20px;
}

/* <----------------------------------Home Page------------------> */
.title_container {
    padding: 400px 200px 200px;
    background-color: rgba(53, 78, 57, 0.5);
}

.title_main {
    text-align: right;
}

/* <----------------------------------News Section------------------> */
.news {
    background-color: #b2c4b8;
    -webkit-box-shadow: inset 0px 20px 34px -23px #000000;
    box-shadow: inset 0px 20px 34px -23px #000000;
    padding: 60px 0 80px;
}

.news_title {
    margin-bottom: 20px;
    margin-left: 20px;
}

.list_item {
    -webkit-box-shadow: 0px 2px 15px 0px rgba(0,0,0,0.62);
    box-shadow: 0px 2px 15px 0px rgba(0,0,0,0.62);
    background: #d0e2d6;
    padding: 20px;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 30px;
}

.post_container {
    margin-top: 30px;
}

.post_container__text {
    padding: 20px;
}

.post_container__img {
    width: 34%;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 20px;
}

.post-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.post-image:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .post-image {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .post-image {
        height: 160px;
    }
}

.post--info {
    background: #9db086;
    border-left: 5px solid #325435;
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0px 1px 8px 0px rgba(0,0,0,0.3);
}

.post--info .post_title {
    color: #313834;
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 500;
}

.post--info .post_container {
    margin-top: 10px;
}

.post--info .post_container__text {
    padding: 10px 0;
}

.post--info .post_text,
.post--info .post_container__text p {
    color: #313834;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 0;
}

/* <----------------------------------Buttons------------------> */
.btn-primary,
.btn.btn-primary,
a.btn-primary {
    background-color: #325435 !important;
    border-color: #325435 !important;
    color: #e3ebe6 !important;
    padding: 8px 15px !important;
    border-radius: 15px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    margin-top: 15px;
    display: inline-block;
    text-decoration: none !important;
}

.btn-primary:hover {
    background-color: #9db086 !important;
    border-color: #9db086 !important;
    color: #313834 !important;
    transform: translateY(-1px);
    text-decoration: none !important;
}

.btn-primary:focus,
.btn-primary:active,
.btn-primary:visited {
    background-color: #325435 !important;
    border-color: #325435 !important;
    color: #e3ebe6 !important;
    box-shadow: none !important;
    outline: none !important;
}

/* <----------------------------------Footer------------------> */
.footer {
    padding: 30px 0 10px;
    background-color: #325435;
}

.menu_footer {
    text-align: center;
    padding: 15px 0;
}

.footer_rights__res {
    justify-content: center;
    text-align: center;
    color: #98cca7;
    margin-top: 15px;
}

/* <----------------------------------Single Post Design------------------> */
.single-post {
    background: linear-gradient(135deg, #0d1a0f 0%, #1a2f1d 50%, #2a4a2e 100%);
    min-height: 100vh;
    padding: 0;
    margin-top: 0;
    position: relative;
}

.post-single {
    background: transparent;
    border-radius: 0;
    padding: 60px 0 40px;
    box-shadow: none;
    margin-bottom: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.post-header {
    margin-bottom: 40px;
    text-align: center;
    padding: 0;
    border-bottom: none;
}

.post-title-single {
    color: #ffffff;
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
}

.post-meta {
    justify-content: center;
    gap: 0;
}

.post-content-wrapper {
    display: block;
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 60px;
}

.post-featured-image {
    margin: 0 auto 40px;
    text-align: center;
    max-width: 800px;
}

.post-featured-image img {
    border-radius: 20px;
    box-shadow: 0px 15px 40px rgba(0,0,0,0.5);
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 3px solid rgba(157, 176, 134, 0.2);
}

.post-content {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(157, 176, 134, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.post-content p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.post-content h2,
.post-content h3 {
    color: #9db086;
    margin: 30px 0 15px;
    font-weight: 600;
}

.post-content ul,
.post-content ol {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    padding-left: 20px;
}

.post-content li {
    margin-bottom: 8px;
}

.post-content strong {
    color: #9db086;
    font-weight: 600;
}

.post-content em {
    color: rgba(255, 255, 255, 0.8);
}

.post-footer {
    background: transparent;
    text-align: center;
    padding: 30px 0 40px;
    margin-top: 40px;
    width: auto;
    margin-left: 0;
    box-shadow: none;
    border-top: 1px solid rgba(157, 176, 134, 0.2);
}

.single-post .btn-primary {
    background: linear-gradient(135deg, #9db086 0%, #b2c4b8 100%) !important;
    border: 2px solid #9db086 !important;
    color: #1a2f1d !important;
    padding: 12px 25px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    text-transform: none;
    letter-spacing: 0;
    box-shadow: 0px 5px 15px rgba(157, 176, 134, 0.3);
}

.single-post .btn-primary:hover {
    background: linear-gradient(135deg, #b2c4b8 0%, #c5d4c8 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0px 8px 20px rgba(157, 176, 134, 0.4) !important;
    color: #1a2f1d !important;
}

.breadcrumbs {
    background: linear-gradient(135deg, rgba(157, 176, 134, 0.3) 0%, rgba(178, 196, 184, 0.4) 100%);
    padding: 15px 0;
    border-radius: 0;
    margin-bottom: 0;
    font-size: 14px;
    box-shadow: none;
    border: none;
    border-bottom: 1px solid rgba(157, 176, 134, 0.3);
    color: rgba(255, 255, 255, 0.9);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

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

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #ffffff;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-current {
    color: #ffffff;
    font-weight: 600;
}

/* <----------------------------------About Page------------------> */
.about-hero-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
}

.about-hero-overlay {
    background-color: rgba(53, 78, 57, 0.55);
    width: 100%;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.about-hero-content {
    padding: 120px 0 80px;
    text-align: center;
}

.about-title {
    color: #ffffff;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.7);
}

.about-subtitle {
    color: #c8e6b8;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.about-description {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.page-about-content {
    background: linear-gradient(135deg, #1e3a22 0%, #2a4a2e 50%, #325435 100%);
    min-height: 100vh;
    padding: 0;
}

.about-info {
    padding: 80px 0;
}

.info-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(157, 176, 134, 0.2);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.info-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0px 10px 30px rgba(0,0,0,0.3);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.info-box h3 {
    color: #9db086;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.info-box p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.about-general {
    padding: 80px 0;
    background: linear-gradient(135deg, #b8d4a8 0%, #9db086 100%);
    position: relative;
}

.about-general::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, transparent 100%);
}

.about-general::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.1) 0%, transparent 100%);
}

.about-general .general-content h2 {
    color: #1e3a22;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(255,255,255,0.3);
}

.about-general .general-content p {
    color: #2a4a2e;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.2);
}

.about-general .general-content h3 {
    color: #1e3a22;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 30px 0 15px;
    text-shadow: 1px 1px 3px rgba(255,255,255,0.3);
}

.about-general .benefits-list {
    list-style: none;
    padding: 0;
}

.about-general .benefits-list li {
    color: #2a4a2e;
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.2);
}

.about-general .benefits-list li::before {
    content: "✓";
    color: #1e3a22;
    font-weight: bold;
    position: absolute;
    left: 0;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.3);
}

.about-general .general-image img {
    border-radius: 15px;
    box-shadow: 0px 10px 30px rgba(30, 58, 34, 0.4);
    width: 100%;
    border: 3px solid rgba(30, 58, 34, 0.3);
}

.about-membership {
    padding: 80px 0;
    box-shadow: inset 0px 15px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid rgba(157, 176, 134, 0.2);
    background: rgba(0, 0, 0, 0.15);
    position: relative;
}

.about-membership::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
    pointer-events: none;
}

.about-membership .container {
    position: relative;
    z-index: 2;
}

.about-membership h2 {
    color: #9db086;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
}

.about-membership p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.benefit-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 30px 20px;
    border: 1px solid rgba(157, 176, 134, 0.3);
    margin-bottom: 20px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
}

.benefit-item h4 {
    color: #9db086;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.price {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.page-about .btn-primary {
    background: #325435 !important;
    border: 2px solid #325435 !important;
    color: #e3ebe6 !important;
    padding: 15px 40px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: inline-block;
    margin-top: 20px;
}

/* <----------------------------------Gallery Page------------------> */
.modern-page-hero, .gallery-hero {
    background: linear-gradient(135deg, #1e3a22 0%, #2a4a2e 50%, #3d6b42 100%);
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.modern-page-hero::before, .gallery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="fish" patternUnits="userSpaceOnUse" width="50" height="50"><path d="M10 25 Q25 15 40 25 Q25 35 10 25" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23fish)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    letter-spacing: -1px;
}

.hero-subtitle , .hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #9db086, #b8d4a8);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(157, 176, 134, 0.3);
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 60"><path d="M0,60 C300,20 600,20 900,40 C1050,50 1150,30 1200,20 L1200,60 Z" fill="%23f8f9fa"/></svg>') no-repeat center;
    background-size: cover;
}

.gallery-section {
    padding: 60px 0;
}

.gallery-grid {
    margin-top: 40px;
}

.gallery-item {
    margin-bottom: 0;
}

.gallery-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: #f8f9fa;
}

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

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

.gallery-content {
    padding: 20px;
}

.gallery-title {
    color: #325435;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.gallery-date {
    color: #9db086;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.gallery-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #325435;
    font-weight: 500;
    font-size: 0.9rem;
}

.gallery-btn i {
    transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-btn i {
    transform: translateX(5px);
}

.placeholder-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: #f8f9fa;
    color: #adb5bd;
}

.placeholder-image i {
    font-size: 3rem;
    margin-bottom: 10px;
}

.no-galleries {
    text-align: center;
    padding: 80px 20px;
    color: #6c757d;
}

.no-galleries i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-galleries h3 {
    color: #1e3a22;
    margin-bottom: 15px;
}

/* <----------------------------------Standard Pages------------------> */
.page-content-section {
    background: linear-gradient(135deg, #b8d4a8 0%, #9db086 100%);
    padding: 80px 0;
    min-height: 80vh;
    position: relative;
}

.page-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, transparent 100%);
}

.page-header {
    margin-bottom: 40px;
    text-align: center;
    padding: 40px 0 20px;
    position: relative;
    z-index: 2;
}

.page-title {
    color: #1e3a22;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(255,255,255,0.3);
}

.page-content-wrapper {
    position: relative;
    z-index: 2;
}

.page-featured-image {
    margin-bottom: 40px;
    text-align: center;
}

.page-featured-image img {
    border-radius: 15px;
    box-shadow: 0px 10px 30px rgba(30, 58, 34, 0.4);
    width: 100%;
    max-width: 600px;
    height: auto;
    border: 3px solid rgba(30, 58, 34, 0.3);
}

.page-text-content {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid rgba(30, 58, 34, 0.3);
    box-shadow: 0px 10px 25px rgba(30, 58, 34, 0.2);
}

.page-text-content h1,
.page-text-content h2,
.page-text-content h3,
.page-text-content h4,
.page-text-content h5,
.page-text-content h6 {
    color: #1e3a22;
    font-weight: 700;
    margin: 30px 0 15px;
    text-shadow: 1px 1px 3px rgba(255,255,255,0.3);
}

.page-text-content h1 { font-size: 2.5rem; }
.page-text-content h2 { font-size: 2rem; }
.page-text-content h3 { font-size: 1.5rem; }

.page-text-content p {
    color: #2a4a2e;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.2);
}

.page-text-content ul,
.page-text-content ol {
    color: #2a4a2e;
    margin-bottom: 20px;
    padding-left: 30px;
}

.page-text-content li {
    margin-bottom: 8px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.2);
}

.page-text-content strong {
    color: #1e3a22;
    font-weight: 700;
}

.page-text-content em {
    color: #325435;
    font-style: italic;
}

.page-text-content a {
    color: #325435;
    font-weight: 600;
    text-decoration: underline;
}

.page-text-content a:hover {
    color: #1e3a22;
}

.page-text-content .btn-primary {
    background: #325435 !important;
    border: 2px solid #325435 !important;
    color: #ffffff !important;
    padding: 12px 25px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    margin: 10px 5px !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
}

/* Modern Page Content - Verbessertes Design */
.modern-content {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
}

.modern-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, transparent 100%);
}

.content-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(50, 84, 53, 0.1);
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #325435, #9db086);
}

.entry-content {
    color: #2a4a2e;
    font-size: 1.1rem;
    line-height: 1.8;
}

.entry-content h1,
.entry-content h2,
.entry-content h3 {
    color: #1e3a22;
    font-weight: 700;
    margin: 30px 0 20px;
}

.entry-content h1 {
    font-size: 2.5rem;
    border-bottom: 3px solid #9db086;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.entry-content h2 {
    font-size: 2rem;
    position: relative;
    padding-left: 20px;
}

.entry-content h3 {
    font-size: 1.5rem;
    color: #325435;
}

.entry-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.entry-content ul,
.entry-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.entry-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.entry-content a {
    color: #325435;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.entry-content a:hover {
    color: #1e3a22;
    border-bottom-color: #9db086;
}

.entry-content blockquote {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 5px solid #9db086;
    padding: 20px 30px;
    margin: 30px 0;
    border-radius: 10px;
    font-style: italic;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.entry-content img {
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    margin: 20px 0;
    max-width: 100%;
    height: auto;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .modern-content {
        padding: 60px 0;
    }
    
    .content-card {
        padding: 40px 25px;
        margin: 0 15px;
        border-radius: 15px;
    }
    
    .entry-content {
        font-size: 1rem;
    }
    
    .entry-content h1 {
        font-size: 2rem;
    }
    
    .entry-content h2 {
        font-size: 1.5rem;
        padding-left: 15px;
    }
    
    .entry-content h2::before {
        width: 3px;
        height: 25px;
    }
}

@media (max-width: 576px) {
    .content-card {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .entry-content h1 {
        font-size: 1.8rem;
    }
    
    .entry-content h2 {
        font-size: 1.3rem;
    }
    
    .entry-content blockquote {
        padding: 15px 20px;
        margin: 20px 0;
    }
}

/* <----------------------------------Mobile Responsive------------------> */
@media (max-width: 768px) {
    .nav_logo {
        max-height: 40px;
    }
    
    .nav {
        min-height: 60px;
    }
    
    .title_main {
        font-size: 2.5rem !important;
    }
    
    .title_container {
        padding: 200px 50px 100px;
    }
    
    .about-title {
        font-size: 2.5rem !important;
    }
    
    .about-subtitle {
        font-size: 1.2rem !important;
    }
    
    .about-description {
        font-size: 1rem !important;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
    }
    
    .gallery-section {
        padding: 40px 0;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .gallery-content {
        padding: 15px;
    }
    
    .gallery-title {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .gallery-date {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .gallery-excerpt {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .gallery-btn {
        font-size: 0.85rem;
    }
    
    .info-box {
        margin-bottom: 20px;
        padding: 30px 20px;
    }
    
    .info-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .info-box h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .info-box p {
        font-size: 0.95rem;
    }
    
    .page-content-section {
        padding: 60px 0;
    }
    
    .page-header {
        padding: 30px 0 15px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-text-content {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .page-featured-image {
        margin: 0 15px 30px;
    }
}

@media (max-width: 576px) {
    .logo {
        padding: 5px 0;
    }
    
    .nav_logo {
        max-height: 35px;
    }
    
    .title_main {
        font-size: 2rem !important;
        text-align: center !important;
    }
    
    .title_container {
        padding: 150px 20px 80px;
    }
    
    .about-title {
        font-size: 2rem !important;
    }
    
    .about-subtitle {
        font-size: 1.1rem !important;
    }
    
    .about-description {
        font-size: 0.95rem !important;
    }
    
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .gallery-image {
        height: 180px;
    }
    
    .gallery-content {
        padding: 12px;
    }
    
    .gallery-title {
        font-size: 1rem;
    }
    
    .gallery-date {
        font-size: 0.8rem;
    }
    
    .gallery-excerpt {
        font-size: 0.85rem;
    }
    
    .info-box {
        margin-bottom: 15px;
        padding: 25px 15px;
    }
    
    .info-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .info-box h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .title_main {
        font-size: 1.8rem !important;
    }
    
    .title_container {
        padding: 120px 15px 60px;
    }
    
    .about-title {
        font-size: 1.8rem !important;
    }
    
    .about-subtitle {
        font-size: 1rem !important;
    }
    
    .about-description {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
}

/* <----------------------------------404 Page------------------> */
/* 404 Error Page - Modern & Minimal */
.error-404-section {
    background: #ffffff;
    padding: 120px 0;
    min-height: 70vh;
}

.error-404-content {
    text-align: center;
    padding: 0;
    max-width: 500px;
    margin: 0 auto;
}

.error-number {
    font-size: 8rem;
    font-weight: 800;
    color: #325435;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -4px;
}

.error-title {
    font-size: 2rem;
    font-weight: 600;
    color: #202124;
    margin-bottom: 16px;
    line-height: 1.2;
}

.error-description {
    font-size: 1.1rem;
    color: #5f6368;
    margin-bottom: 40px;
    line-height: 1.5;
}

.error-actions {
    margin-top: 40px;
}

/* Mobile */
@media (max-width: 768px) {
    .error-404-section {
        padding: 80px 0;
    }
    
    .error-number {
        font-size: 6rem;
    }
    
    .error-title {
        font-size: 1.5rem;
    }
    
    .error-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

/* Browser Compatibility Fixes */

/* Samsung Internet & Webkit Fixes */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Flexbox Fixes für ältere Browser */
.d-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.align-items-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.justify-content-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

/* Transform Fixes - KORRIGIERT */
.navbar-toggler.active .navbar-toggler-icon::before,
.navbar-toggler.active .navbar-toggler-icon::after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.navbar-toggler.active .navbar-toggler-icon::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler.active .navbar-toggler-icon::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 0;
}

.wp-block-file__button{
 background: #eceef0;
}

/* Transition Fixes */
a, button, .btn, .navbar-toggler-icon {
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

/* Background Fixes */
.header {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

/* Border Radius Fixes */
.btn, .content-card, .list_item, .info-box {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

/* CSS Grid Fallback für ältere Browser */
.row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* Object-fit Fallback für Samsung Internet */
.post-image, .gallery-image img {
    -webkit-object-fit: cover;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    object-fit: cover;
    font-family: 'object-fit: cover;'; /* Polyfill fallback */
}

/* Filter/Backdrop-filter Fallback */
.header_nav {
    background: rgba(30, 58, 34, 0.95);
    /* Fallback für Browser ohne backdrop-filter */
}

/* Samsung Internet spezifische Fixes */
@supports (-webkit-appearance: none) {
    .mobile-menu {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    
    .mobile-menu.active {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/* CSS Custom Properties Fallback */
:root {
    --primary-dark: #1e3a22;
    --primary-medium: #2a4a2e;
    --primary-light: #9db086;
    --text-dark: #2c3e50;
    --white: #ffffff;
    --transition: all 0.2s ease;
}

/* Fallback für Browser ohne CSS Custom Properties */
.btn-primary {
    background: #2a4a2e !important;
    background: var(--primary-medium, #2a4a2e) !important;
}

.menu-item a {
    color: #ffffff;
    color: var(--white, #ffffff);
}

/* Touch-Action für bessere Mobile Performance */
.mobile-menu, .navbar-toggler {
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

/* Webkit-specific fixes */
input, button, select, textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Prevent zoom on input focus (Samsung Internet) */
input, select, textarea {
    font-size: 16px;
}

@media screen and (max-width: 768px) {
    input, select, textarea {
        font-size: 16px; /* Prevents zoom on Samsung Internet */
    }
}