/* General Body Styles */
body {
    margin: 0;
    padding: 0;
    background-color: #000000; /* Background color */
    font-family: 'Marck Script', cursive, 'Georgia', serif;
}

/* The Welcome Card - now with a glass-like effect */
.welcome-card {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Full screen height */
    background-color: rgba(80, 80, 80, 0.5); /* Semi-transparent background with lower opacity */
    backdrop-filter: blur(10px); /* Apply blur for the glass effect */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 2.5em;
    color: #ff75b8; /* Soft pink */
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease; /* Add transition for smooth fade-in */
    z-index: 1000; /* Ensure the card is on top */
}

/* When the card is visible (fade-in effect) */
.welcome-card.visible {
    opacity: 1;
    transform: scale(1);
}

/* Section Styles with Background Images */
#section1, #section2, #section3, #section4,#section5,#section6,#section7,#section8 {
    position: relative; /* Necessary to position content on top of background */
    height: 100vh; /* Full viewport height */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Section background images */
#section1 {
    background-image: url('images/0bk.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}
#section2 {
    background-image: url('images/1.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

#section3 {
    background-image: url('images/2.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

#section4 {
    background-image: url('images/3.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

#section5 {
    background-image: url('images/4.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

#section6 {
    background-image: url('images/5.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}
#section7 {
    background-image: url('images/0bk.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}
#section8 {
    background-image: url('images/0bk.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

/* Overlay that controls the opacity of the background image */
#section1 .background, #section2 .background, #section3 .background, #section4 .background, #section5 .background , #section6 .background, #section7 .background, #section8 .background{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
    z-index: -1; /* Make sure it stays behind the text */
}

/* FullPage.js Section Styling */
.section {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
    color: white;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    position: relative;
    z-index: 2;
}

/* Fade-in effect */
.section.active {
    opacity: 1;
    transform: translateY(0);
}

/* Text Styling */
h1 {
    font-family: 'Allura', cursive;
    font-size: 4em;
    color: #ff75b8;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 3;
}

p {
    font-family: 'Marck Script', cursive;
    font-size: 1.4em;
    color: #ffffff;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 300;
    z-index: 3;
}

/* Example media query for screens smaller than 768px */
@media (max-width: 768px) {
    .welcome-card {
        font-size: 1.5em; /* Adjust font size for mobile */
    }
    .section h1 {
        font-size: 2.5em; /* Adjust title font size for mobile */
    }
    .section p {
        font-size: 1.2em; /* Adjust paragraph font size for mobile */
    }
    #fullpage {
        font-size: 14px; /* Adjust full-page size */
    }
}

@media (max-width: 480px) {
    .welcome-card {
        font-size: 1.2em;
    }
    .section h1 {
        font-size: 2em;
    }
    .section p {
        font-size: 1em;
    }
}
