/* General Body Style */
body {
    background-image: url('https://www.example.com/snowy-mountain.jpg'); /* Replace with actual snowy image URL */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: 'Roboto', sans-serif;
    color: #eee; /* Light text for modern contrast */
    margin: 0;
    padding: 0;
}

/* Heading Styles */
h1 {
    font-family: 'Playfair Display', serif;
    font-size: 55px;
    color: #C0C0C0; /* Warm sunset coral */
    text-align: center;
    margin-top: 50px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
    font-weight: bold;
}

/* Mountain-Specific Colors for Text */
h2.Montblanc, h2.Chardonnet, h2.Verte, h2.K2, h2.Geant {
    font-size: 32px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Unique Colors for Each Mountain */
h2.Montblanc {
    color: #F4A300; /* Golden Yellow */
}

h2.Chardonnet {
    color: #B7A3C7; /* Light Lavender */
}

h2.Verte {
    color: #4DB8FF; /* Sky Blue */
}

h2.K2 {
    color: #D32F2F; /* Deep Red */
}

h2.Geant {
    color: #88B04B; /* Moss Green */
}

/* Main Container */
.container {
    margin-top: 60px;
}

/* Flex Layout for Mountain Items */
.mountain-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

/* Style for Each Mountain Item */
.mountain-item {
    background: rgba(0, 0, 0, 0.6); /* Darker, transparent background */
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    flex: 1 1 calc(33.333% - 20px);
    margin-bottom: 30px;
}

.mountain-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

/* Hover Effect on Mountain Items */
.mountain-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.mountain-item:hover img {
    transform: scale(1.1);
}

/* Links below images */
.mountain-item a {
    display: inline-block;
    margin-top: 10px;
    font-size: 18px;
    color: #FF6F61; 
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
}

.mountain-item a:hover {
    color: #FFD700; /* Golden Hover */
    transform: translateY(-3px);
}

/* Navbar Styling */
.navbar {
    background-color: #C0C0C0; /* Dark blue-grey */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    color: rgba(0, 0, 0, 0.6) !important;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link {
    color: #C0C0C0 !important;
    font-size: 18px;
    padding: 12px 15px;
    font-weight: 500;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #3498db;
    background-color: rgba(52, 152, 219, 0.2);
    border-radius: 8px;
}

/* Search Bar Styling */
form .form-control {
    border-radius: 25px; /* More rounded */
    border: 1px solid #ddd;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.8);
}

form button {
    border-radius: 25px;
    background-color: #FF6F61;
    color: white;
    padding: 8px 20px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #FF4500;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .mountain-item {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .mountain-item {
        flex: 1 1 100%;
    }
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 20px;
    background-color: #2c3e50;
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer a {
    color: #FF6F61;
    text-decoration: none;
} 