.glass-navbar {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.hero-sec {
    position: relative;
    height: 100vh;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)), url('img/summit.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: white;
}

.bg {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.4) 0%,
            #ffecd2 15%,
            #ffb095 50%,
            #a2e3ff 100%);
}

.trails {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 60px 40px;
}

.trail-pic {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 10px;
    margin-bottom: 30px;
}

.trail-pic:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.main-info {
    font-size: clamp(1rem, 3vw, 1.5rem);
    line-height: 1.8;
    text-align: justify;
}

.info-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid black;
    border-radius: 20px;
}

.info-card:hover {
    transform: translateY(-5px);
}

body {
    font-family: 'Poppins', sans-serif;
    color: black;
}

.hero-sec h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
    letter-spacing: 3px;
}

.hero-sec h3 {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 400;
    margin-top: 1rem;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
}

h5 {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
}

p {
    font-weight: 300;
    font-size: clamp(0.85rem, 2vw, 1rem);
}

#trail-sec p {
    text-align: justify;
}

footer {
    background-color: rgb(12, 0, 40);
    font-size: 0.9rem;
    border-top: 1px solid black;
    color: white;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}