/* General Reset */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #2c3e50;
    color: white;
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #3498db;
}

/* Hero & Animation */
header,
.about-hero {
    height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('./assests/Pictures/Mountains.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.fade-in {
    animation: fadeIn ease 2s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Home Features */
.features {
    display: flex;
    justify-content: space-around;
    padding: 50px 10%;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 250px;
    background: #f4f4f4;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

/* Gallery (5 Images) */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 30px;
}

.gallery img {
    width: 100%;
    max-width: 250px;
    border-radius: 10px;
    transition: 0.4s;
}

.gallery img:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Table */
table {
    width: 80%;
    margin: 40px auto;
    border-collapse: collapse;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

th,
td {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: left;
}

th {
    background: #2c3e50;
    color: white;
}

/* Contact Form */
.contact-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn-submit {
    background: #3498db;
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    border-radius: 5px;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: auto;
}

/* Responsive Media Query */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 15px;
    }

    nav ul li a {
        margin: 5px 10px;
    }
}

/* Contact Info Styles */
.contact-info-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    background-color: #f4f7f6;
}

.info-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.info-item {
    margin: 20px 0;
}

.info-item strong {
    display: block;
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-item p {
    margin: 0;
    font-size: 1.2rem;
    color: #3498db;
}

.info-item a {
    margin: 0;
    font-size: 1.2rem;
    color: #3498db;
}

hr {
    border: 0;
    height: 1px;
    background: #eee;
    margin: 0 15%;
}

/* Gallery Page Grid */
.gallery-wrapper {
    padding: 60px 5%;
    text-align: center;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    padding: 40px 0;
}

.photo-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.4s ease-in-out;
    filter: grayscale(20%);
}

.photo-grid img:hover {
    transform: scale(1.02);
    filter: grayscale(0%);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .photo-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}