/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #34041b4c;
    background-color: #0e2d4c;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color:#fcfcfc
    
}

a {
    text-decoration: none;
    color: #faf7f7;
}

.container {
    width: 90%;
    max-width: 1800px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #06111a00;
    color: #2b5cb625;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #063564;
}

/* Header Styles */
header {
    background-color: #010004;
    box-shadow: 0 2px 4px rgba(195, 184, 184, 0.1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo img {
    height: 130px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    font-weight: bold;
}

/* Hero Section */
.hero {
    background-image: url('https://via.placeholder.com/1200x400?text=Ski+Slopes');
    background-size: cover;
    background-position: center;
    color: #fefafa;
    padding: 200px 0;
    text-align: center;
}

.hero h2 {
    font-size: 58px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 30px;
    margin-bottom: 30px;
    color:#faf7f7
}

/* Products Section */
.products {
    padding: 60px 0;
    text-align: center;
}

.products h2 {
    margin-bottom: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.product-item {
    background-color: #fefefe;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-item img {
    max-width: 100%;
    border-radius: 10px;
}

.product-item h3 {
    margin: 15px 0 10px;
    color:#010000
}





/* About Section */
.about {
    background-color: #8e8b90;
    padding: 60px 0;
    text-align: center;
}

.about h2 {
    margin-bottom: 20px;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    color:#fdfbfb
}

/* Contact Section */
.contact {
    padding: 60px 0;
    text-align: center;
}

.contact h2 {
    margin-bottom: 20px;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact input, .contact textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact button:hover {
    background-color: #0056b3;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin: 0;
    
}