/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Header Styles */
header {
    background: #2c3e50;
    color: lightgoldenrodyellow;
    padding: 15px 0;
    text-align: center;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #e67e22; /* Change color on hover */
}

/* Hero Section */
.hero {
    background: url('images/kagbeni-bg.jpg') no-repeat center center/cover;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: -1;
}

.hero h2 {
    font-size: 40px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero p {
    font-size: 20px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

button {
    padding: 10px 20px;
    background: #e67e22;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

button:hover {
    background: #d95d00; /* Darker shade on hover */
}

/* Content Section */
#content, #contact-content {
    padding: 40px;
    margin: 20px auto;
    border-radius: 10px;
    background: white; /* Background for content sections */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Shadow for depth */
    max-width: 800px; /* Limit width for better readability */
}

h2 {
    color: #2c3e50; /* Darker color for section headers */
    margin-bottom: 20px;
    border-bottom: 2px solid #e67e22; /* Underline effect */
    padding-bottom: 10px;
}

.welcome {
    color: lightgrey;
}
#content img, #contact-content img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    margin-top: 20px; /* Space above images */
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

/* Button Styles */
.btn-primary {
    padding: 12px 24px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #2980b9;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Space between form elements */
}

input, textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border 0.3s ease;
}

input:focus, textarea:focus {
    border: 1px solid #3498db; /* Highlight border on focus */
    outline: none;
}

/* Card Styles */
.card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px); /* Lift effect on hover */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 30px; /* Adjust font size for smaller screens */
    }

    .hero p {
        font-size: 18px; /* Adjust font size for smaller screens */
    }

    nav ul li {
        display: block; /* Stack navigation items vertically on small screens */
        margin: 5px 0;
    }

    #content, #contact-content {
        padding: 20px; /* Adjust padding for smaller screens */
    }
}

/* Additional Styles */
section {
    padding: 40px 20px;
    margin: 10px auto;
    background: #f9f9f9; /* Light background for sections */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

h1, h2, h3 {
    margin-bottom: 15px;
    font-family: 'Georgia', serif; /* Different font for headings */
}

p {
    margin-bottom: 15px;
}

blockquote {
    font-style: italic;
    padding: 10px 20px;
    border-left: 5px solid #3498db; /* Blue line for blockquote */
    background: #f0f8ff; /* Light blue background for blockquote */
}

ul {
    list-style: none; /* Remove bullet points */
    padding-left: 0; /* Remove padding */
}

ul li {
    padding: 5px 0;
    position: relative;
}

ul li::before {
    content: '✔'; /* Checkmark before each list item */
    color: #3498db; /* Checkmark color */
    position: absolute;
    left: -20px; /* Position the checkmark */
}
/* Custom styles for the gallery */
        .gallery {
            display: flex;
            flex-wrap: wrap;
            gap: 15px; /* Space between images */
            justify-content: center; /* Center the images */
            padding: 20px;
        }

        .gallery img {
            width: calc(50% - 10px); /* Two images per row */
            border-radius: 10px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .gallery img:hover {
            transform: scale(1.05); /* Scale effect on hover */
        }

        /* Modal styles */
        .modal {
            display: none; /* Hidden by default */
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto; /* Enable scroll if needed */
            background-color: rgba(0, 0, 0, 0.8); /* Black background with opacity */
        }

        .modal-content {
            margin: auto;
            display: block;
            width: 80%;
            max-width: 700px;
            border-radius: 10px;
        }

        .close {
            position: absolute;
            top: 20px;
            right: 35px;
            color: #fff;
            font-size: 40px;
            font-weight: bold;
            transition: color 0.3s ease;
        }

        .close:hover,
        .close:focus {
            color: #e67e22; /* Change color on hover */
            text-decoration: none;
            cursor: pointer;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .gallery img {
                width: calc(100% - 10px); /* One image per row on smaller screens */
            }
        }
