/* Global Styles */
body {
    font-family: 'Raleway', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

.container {
    width: 85%;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.logo {
    width: 150px;
    margin-bottom: 15px;
    animation: fadeIn 2s ease-in-out;
}

/* Header Styles */
header {
    background: linear-gradient(45deg, #1f1f1f, #3d3d3d);
    padding: 60px 0;
    text-align: center;
}

header h1 {
    font-size: 3.5em;
    margin: 0;
    font-weight: 900;
    color: #ff6b6b;
    text-shadow: 0px 4px 10px rgba(255, 107, 107, 0.7);
}

header p {
    font-size: 1.5em;
    margin-top: 10px;
    color: #fff;
    font-weight: 300;
}

.cta-button {
    padding: 15px 30px;
    font-size: 1em;
    background-color: #ff6b6b;
    border: none;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease-in-out, transform 0.3s;
}

.cta-button:hover {
    background-color: #e05a5a;
    transform: scale(1.05);
}

/* Gallery Section */
#gallery {
    padding: 50px 0;
    background-color: #1b1b1b;
    border-top: 3px solid #ff6b6b;
    position: relative;
}

.gallery-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.center {
    width: 50%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.5);
}

.blurred {
    width: 15%;
    height: auto;
    filter: blur(5px);
    opacity: 0.7;
    transform: scale(0.9);
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 2em;
    cursor: pointer;
    transition: transform 0.2s;
}

#prevBtn {
    left: 5%;
}

#nextBtn {
    right: 5%;
}

.nav-button:hover {
    transform: scale(1.2);
}

/* Snow Effect Canvas */
#snowCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    opacity: 0.3;
}
