/* Global Styles and Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

/* Skip to main content link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #2c5f2d;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
}

.skip-link:focus {
    top: 0;
}
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

/* Header Styles */
header {
    background: linear-gradient(135deg, #2c5f2d 0%, #97bc62 100%);
    color: #fff;
    padding: 30px 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

header h2.tagline {
    font-size: 1.1em;
    font-style: italic;
    opacity: 0.9;
    font-weight: normal;
}

/* Navigation Styles */
nav {
    background-color: #1a3d1a;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav .container {
    position: relative;
}

/* Hide checkbox */
.menu-toggle {
    display: none;
}

/* Hamburger Menu Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 15px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Animate hamburger to X when checked */
.menu-toggle:checked + .mobile-menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle:checked + .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.menu-toggle:checked + .mobile-menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 15px 20px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    background-color: #2c5f2d;
}

/* Main Content */
main {
    min-height: 500px;
}

/* Page Header */
.page-header {
    background-color: #2c5f2d;
    color: #fff;
    padding: 50px 20px;
    text-align: center;
    margin-bottom: 40px;
}

.page-header h2 {
    font-size: 2.2em;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto;
}

/* Destinations Content */
.destinations-content {
    padding: 40px 20px;
    background-color: #fff;
}

.destination-detail {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.destination-detail:last-child {
    border-bottom: none;
}

.destination-detail h3 {
    color: #2c5f2d;
    font-size: 1.8em;
    margin-bottom: 20px;
}

.destination-detail p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.destination-info {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
}

.destination-info p {
    margin-bottom: 10px;
    color: #333;
}

.destination-info strong {
    color: #2c5f2d;
}

/* Call to Action Section */
.call-to-action {
    background-color: #2c5f2d;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    margin-top: 40px;
}

.call-to-action h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.call-to-action p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: #2c5f2d;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

.btn:hover {
    background-color: #1a3d1a;
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1em;
}

.call-to-action .btn {
    background-color: #fff;
    color: #2c5f2d;
    border: 2px solid #fff;
}

.call-to-action .btn:hover {
    background-color: #1a3d1a;
    color: #fff;
    border-color: #fff;
}

/* Card Grid Layout */
.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 30px auto;
}

/* Individual Card */
.image-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

/* Card Image Container */
.card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background-color: #e8e8e8;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    
}

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

/* Card Content */
.card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h4 {
    font-size: 1.2em;
    color: #2c5f2d;
    margin-bottom: 10px;
    font-weight: bold;
}

.card-content p {
    font-size: 0.9em;
    margin-bottom: 0;
    color: #555;
    line-height: 1.7;
}

/* Footer Styles */
footer {
    background-color: #1a3d1a;
    color: #fff;
    padding: 40px 20px 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #97bc62;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.95em;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #97bc62;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2c5f2d;
}

.footer-bottom p {
    color: #ccc;
    font-size: 0.9em;
}

/* Responsive Design - Tablet */
@media screen and (max-width: 1024px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .card-image {
        height: 250px;
    }
}

@media screen and (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    header h2.tagline {
        font-size: 1em;
        font-weight: normal;
}

    .mobile-menu-toggle {
        display: flex;
    }

    nav ul {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #1a3d1a;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .menu-toggle:checked ~ ul {
        max-height: 500px;
    }

    nav ul li {
        width: 100%;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .page-header h2 {
        font-size: 1.8em;
    }

    .card-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .card-image {
        height: 240px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Responsive Design - Mobile */
@media screen and (max-width: 480px) {
    header h1 {
        font-size: 1.6em;
        letter-spacing: 1px;
    }

    header h2.tagline {
        font-size: 0.9em;
        font-weight: normal;
}

    nav ul li a {
        padding: 12px 15px;
        font-size: 0.95em;
    }

    .page-header {
        padding: 30px 15px;
    }

    .page-header h2 {
        font-size: 1.5em;
    }

    .destinations-content,
    .call-to-action {
        padding: 40px 15px;
    }

    .card-image {
        height: 220px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.95em;
    }

    .btn-large {
        padding: 12px 25px;
        font-size: 1em;
    }

}
