:root {
    --primary-color: #0a2f1f;
    --secondary-color: #1e5a3a;
    --accent-color: #2e8b57;
    --text-color: #e3f0e7;
    --hover-color: #3cb371;
    --bg-color: #0b1e16;
    --card-bg: #132b20;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --header-gradient: linear-gradient(145deg, #0c281d 0%, #15382a 100%);
    --footer-gradient: linear-gradient(145deg, #0a1f18 0%, #14352a 100%);
    --font-main: 'Inter', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --border-radius: 20px;
    --border-radius-sm: 14px;
    --shadow-sm: 0 8px 20px rgba(0, 20, 10, 0.3);
    --shadow-md: 0 12px 28px rgba(0, 30, 15, 0.4);
    --shadow-hover: 0 18px 30px rgba(46, 139, 86, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.65;
    overflow-x: hidden;
    font-weight: 350;
    font-size: 16px;
    background-image: radial-gradient(circle at 10% 20%, rgba(46, 139, 86, 0.05) 0%, transparent 30%);
}

header {
    background: var(--header-gradient);
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(46, 139, 86, 0.25);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

a {
    text-decoration: none;
    color: var(--accent-color);
}

.c-carol-hill-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    height: 90px;
    padding: 0 35px;
}

.c-carol-hill-logo-img {
    height: 75px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

.main-nav {
    display: flex;
    justify-content: flex-end;
    flex-grow: 1;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 12px;
    align-items: center;
}

.nav-link {
    color: #e2f0e6;
    text-decoration: none;
    font-weight: 560;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 40px;
    background: rgba(30, 90, 58, 0.2);
    border: 1.2px solid rgba(46, 139, 86, 0.4);
    white-space: nowrap;
    letter-spacing: 0.6px;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.nav-link:hover {
    background: rgba(46, 139, 86, 0.25);
    color: #ffffff;
    border-color: var(--accent-color);
    box-shadow: 0 8px 18px rgba(46, 139, 86, 0.3);
    transform: translateY(-2px);
}

.nav-link.active {
    background: rgba(46, 139, 86, 0.35);
    color: #ffffff;
    border-color: var(--accent-color);
    border-width: 1.5px;
}

.nav-link i {
    font-size: 13px;
    margin-left: 8px;
    opacity: 0.95;
}

.mobile-menu-btn {
    display: none;
    background: rgba(30, 90, 58, 0.35);
    border: 1.5px solid rgba(46, 139, 86, 0.5);
    color: #e2f0e6;
    font-size: 20px;
    cursor: pointer;
    padding: 12px 18px;
    border-radius: 40px;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.mobile-menu-btn:hover {
    background: rgba(46, 139, 86, 0.45);
    border-color: var(--accent-color);
    color: white;
    transform: scale(0.96);
}

main {
    margin-top: 90px;
    padding: 35px;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    min-height: 70vh;
}

h1 {
    font-size: 34px;
    margin-bottom: 35px;
    color: #bef5d5;
    font-weight: 650;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(46, 139, 86, 0.35);
    position: relative;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
    text-shadow: 0 2px 5px rgba(0,30,10,0.5);
}

h1::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #7ccf9c);
    border-radius: 4px;
}

h2 {
    font-size: 28px;
    margin: 35px 0 30px;
    color: #d0f0da;
    font-weight: 600;
    text-align: center;
    position: relative;
    font-family: var(--font-heading);
    padding-bottom: 12px;
    letter-spacing: -0.2px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 3px;
}

.c-carol-hill-gallery-grid {
    column-count: 4;
    column-gap: 22px;
    margin: 35px 0;
}

.c-carol-hill-gallery-card {
    background: transparent;
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: none;
    margin-bottom: 22px;
    border: none;
    break-inside: avoid;
    position: relative;
    display: block;
    width: 100%;
}

.c-carol-hill-gallery-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    transition: transform 0.4s ease, box-shadow 0.3s ease;
    box-shadow: 0 12px 25px -8px rgba(0, 30, 10, 0.6);
}

.c-carol-hill-gallery-card:hover img {
    transform: scale(1.02);
    box-shadow: 0 20px 32px -8px rgba(46, 139, 86, 0.4);
}

.c-carol-hill-gallery-info {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    padding: 10px 16px;
    background: linear-gradient(to top, rgba(10, 30, 18, 0.9), rgba(10, 35, 20, 0.7));
    backdrop-filter: blur(8px);
    text-align: left;
    border-radius: 40px;
    border: 1px solid rgba(46, 139, 86, 0.5);
    z-index: 2;
    box-shadow: 0 6px 14px rgba(0,20,5,0.3);
}

.c-carol-hill-gallery-title {
    font-size: 13px;
    margin: 0;
    color: #d4f5e6;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-shadow: 0 1px 3px black;
    opacity: 0.95;
}

.c-carol-hill-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
    margin: 35px 0;
}

.c-carol-hill-item {
    background: rgba(20, 55, 40, 0.5);
    border-radius: 50px;
    padding: 14px 22px;
    transition: var(--transition);
    border: 1px solid rgba(46, 139, 86, 0.3);
    text-align: center;
    backdrop-filter: blur(8px);
    box-shadow: 0 6px 12px rgba(0,15,5,0.2);
}

.c-carol-hill-item:hover {
    border-color: var(--accent-color);
    background: rgba(30, 80, 55, 0.7);
    transform: translateY(-4px);
    box-shadow: 0 14px 22px rgba(46, 139, 86, 0.3);
}

.c-carol-hill-link {
    text-decoration: none;
    color: #f0fff0;
    font-weight: 500;
    display: block;
    font-size: 15px;
    transition: var(--transition);
}

.c-carol-hill-link:hover {
    color: #b8f2c8;
}

footer {
    background: #0f2c21;
    padding: 60px 35px 40px;
    margin-top: 70px;
    border-top: 4px solid var(--accent-color);
    backdrop-filter: blur(10px);
    box-shadow: inset 0 10px 30px rgba(0,0,0,0.2);
}

.footer-container-c-carol-hill {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-container-c-carol-hill:first-of-type {
    margin-bottom: 30px;
}

.c-carol-hill-footer-links-col {
    flex: 1 1 240px;
    min-width: 200px;
}

.c-carol-hill-footer-links-col h3 {
    color: #b8e6c7;
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    font-weight: 600;
    border-bottom: 2px solid rgba(46, 139, 86, 0.5);
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.c-carol-hill-footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.c-carol-hill-footer-link {
    color: #c5e0d0;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    padding: 8px 0;
    border-bottom: 1px dotted transparent;
    display: inline-block;
    width: fit-content;
}

.c-carol-hill-footer-link:hover {
    color: #9bebc0;
    border-bottom-color: var(--accent-color);
    transform: translateX(6px);
}

.copyright {
    text-align: left;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(46, 139, 86, 0.3);
    font-size: 13px;
    color: #a8c9b8;
    grid-column: 1 / -1;
    width: 100%;
}

.copyright p {
    margin-bottom: 8px;
}

.c-carol-hill-info-section {
    background: rgba(15, 45, 30, 0.6);
    padding: 28px 32px;
    border-radius: 36px;
    margin: 40px 0;
    border: 1px solid rgba(46, 139, 86, 0.3);
    font-size: 16px;
    line-height: 1.7;
    backdrop-filter: blur(8px);
    color: #d8f0e0;
    box-shadow: 0 10px 20px rgba(0,20,8,0.2);
}

.c-carol-hill-map-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
    margin: 40px 0;
}

.c-carol-hill-map-item {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
}

.c-carol-hill-map-link {
    color: #e2f0e2;
    text-decoration: none;
    font-size: 15px;
    display: block;
    padding: 14px 22px;
    background: rgba(25, 65, 45, 0.5);
    border-radius: 60px;
    transition: var(--transition);
    border-left: none;
    border: 1px solid rgba(46, 139, 86, 0.25);
    backdrop-filter: blur(6px);
    text-align: center;
}

.c-carol-hill-map-link:hover {
    color: #ffffff;
    background: rgba(46, 139, 86, 0.3);
    border: 1px solid var(--accent-color);
    transform: scale(1.02);
    box-shadow: 0 8px 18px rgba(46, 139, 86, 0.3);
}

.c-carol-hill-map-link h4 {
    font-size: 15px;
    font-weight: 450;
    margin: 0;
    color: inherit;
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 320px;
        height: 100vh;
        background: rgba(12, 35, 24, 0.98);
        backdrop-filter: blur(20px);
        padding: 100px 28px 50px;
        flex-direction: column;
        z-index: 1001;
        overflow-y: auto;
        transition: left 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);
        border-right: 2px solid var(--accent-color);
        box-shadow: 0 0 40px rgba(0,40,20,0.7);
    }

    .main-nav.show {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .nav-link {
        width: 100%;
        text-align: left;
        padding: 16px 28px;
        font-size: 16px;
        border-radius: 100px;
        background: rgba(30, 90, 58, 0.2);
        border: 1.2px solid rgba(46, 139, 86, 0.5);
        margin-bottom: 6px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: #f0fff0;
    }

    .nav-link:hover {
        background: rgba(46, 139, 86, 0.35);
        border-color: var(--accent-color);
        color: white;
    }

    .nav-link.active {
        background: rgba(46, 139, 86, 0.5);
        border-color: var(--accent-color);
        color: white;
    }

    .mobile-menu-close {
        position: absolute;
        top: 30px;
        right: 25px;
        background: rgba(46, 139, 86, 0.25);
        border: 1.5px solid var(--accent-color);
        color: #ffffff;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        cursor: pointer;
        transition: var(--transition);
        z-index: 1002;
        backdrop-filter: blur(6px);
    }

    .mobile-menu-close:hover {
        background: var(--accent-color);
        border-color: var(--accent-color);
        color: white;
        transform: rotate(90deg);
    }
}

@media (max-width: 800px) {
    .c-carol-hill-gallery-grid {
        column-count: 2;
        column-gap: 18px;
    }
    
    h1 { font-size: 30px; }
    h2 { font-size: 26px; }
    main { margin-top: 80px; padding: 25px; }
    .c-carol-hill-header-container { padding: 0 25px; height: 70px; }
    .c-carol-hill-logo-img { height: 55px; }
    .footer-container-c-carol-hill { gap: 35px; }
}

@media (max-width: 600px) {
    .c-carol-hill-gallery-grid { column-count: 1; column-gap: 0; margin: 25px 0; }
    .c-carol-hill-grid { grid-template-columns: 1fr; gap: 14px; }
    .c-carol-hill-item { padding: 12px 18px; }
    .c-carol-hill-link { font-size: 14px; }
    h1 { font-size: 26px; }
    h2 { font-size: 24px; }
    footer { padding: 50px 25px 35px; }
    .main-nav { width: 100%; padding: 90px 22px 40px; }
    .nav-link { padding: 14px 22px; font-size: 15px; }
    .mobile-menu-close { top: 20px; right: 20px; }
    .c-carol-hill-map-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .c-carol-hill-map-link { padding: 12px 14px; font-size: 14px; border-radius: 50px; }
    .footer-container-c-carol-hill { flex-direction: column; gap: 30px; }
}

@media (max-width: 480px) {
    .c-carol-hill-gallery-grid { column-count: 1; }
    .c-carol-hill-grid { grid-template-columns: 1fr; gap: 10px; }
    .c-carol-hill-item { padding: 10px 16px; }
    .c-carol-hill-logo-img { height: 50px; }
    h1 { font-size: 24px; }
    h2 { font-size: 22px; }
    .c-carol-hill-gallery-info { bottom: 12px; left: 12px; right: 12px; padding: 8px 14px; }
    .c-carol-hill-gallery-title { font-size: 12px; }
    .c-carol-hill-map-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .footer-container-c-carol-hill { flex-direction: column; }
    .copyright { text-align: center; }
}

@media (max-width: 360px) {
    .c-carol-hill-map-grid { grid-template-columns: 1fr; }
    .c-carol-hill-map-link { padding: 10px 14px; }
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0e261e; }
::-webkit-scrollbar-thumb { background: #2a6e4a; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-color); }

/* slider */
.c-carol-hill-gallery-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 20, 12, 0.97);
    backdrop-filter: blur(16px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.c-carol-hill-slider-container {
    position: relative;
    width: 90%;
    height: 85%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.c-carol-hill-slider-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 32px;
    box-shadow: 0 0 40px rgba(46, 139, 86, 0.4);
}

.c-carol-hill-slider-close {
    position: fixed;
    top: 25px;
    right: 25px;
    color: white;
    font-size: 22px;
    cursor: pointer;
    background: rgba(30, 80, 55, 0.6);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1.5px solid var(--accent-color);
    backdrop-filter: blur(6px);
}

.c-carol-hill-slider-prev,
.c-carol-hill-slider-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30, 80, 55, 0.6);
    color: white;
    border: 1.5px solid var(--accent-color);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(6px);
}

.c-carol-hill-slider-prev:hover,
.c-carol-hill-slider-next:hover,
.c-carol-hill-slider-close:hover {
    background: var(--accent-color);
    border-color: white;
    transform: scale(1.08);
}

.c-carol-hill-slider-prev { left: 25px; }
.c-carol-hill-slider-next { right: 25px; }

.c-carol-hill-slider-counter {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #f0fff0;
    font-size: 15px;
    background: rgba(10, 40, 25, 0.7);
    padding: 10px 22px;
    border-radius: 60px;
    border: 1px solid var(--accent-color);
    backdrop-filter: blur(6px);
}

@media (min-width: 993px) {
    .mobile-menu-close { display: none !important; }
}