/* Reset some default styles to ensure consistent rendering */
body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Set a background image for the entire page and make it cover the viewport */
body {
    background-image: url('/assets/background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: Arial, sans-serif;
    min-height: 100vh; /* Ensure the page takes at least the full viewport height */
    display: flex;
    flex-direction: column;
    position: relative; /* Add relative positioning to create the overlay */
}

/* Add a black overlay using a pseudo-element */
body::before {
    content: '';
    background-color: rgba(0, 0, 0, 0.5); /* 50% transparent black overlay */
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1; /* Place it behind the content */
}

/* Make the header and footer 50% transparent */
header, footer {
    background-color: rgba(51, 51, 51, 0.5); /* 50% transparent black */
    backdrop-filter: blur(10px); /* Apply a blur effect to the background */
}

/* Style the header section */
header {
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img {
    max-width: 150px; /* Adjust the size as needed */
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

/* Style the main content section */
main {
    flex: 1; /* Allow the main content to grow and take available space */
    padding: 20px;
    display: flex;
    justify-content: flex-end; /* Align the content to the right */
}

/* Style the welcome section */
#welcome {
    text-align: center;
    margin-bottom: 20px;
}

#welcome h1 {
    font-size: 2rem;
    color: #ff69b4; /* Pink color */
}

#welcome p {
    font-size: 1.2rem;
    color: #add8e6; /* Light blue color */
}

/* Create a grid container for the features section */
.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns with equal width */
    gap: 20px; /* Gap between grid items */
    align-items: start; /* Align items at the top */
}

/* Style the feature sections within the grid */
.feature {
    background-color: transparent; /* Remove background color */
    border: none; /* Remove borders */
    padding: 0;
    text-align: center;
    box-shadow: none; /* Remove box shadow */
}

/* Style the circular containers */
.circle {
    width: 150px; /* Adjust the circle size as needed */
    height: 150px;
    background-color: #fff;
    border-radius: 50%; /* Create a circular shape */
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}

/* Style the featured images inside the circles */
.feature-image {
    max-width: 100%;
    max-height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

/* Style the feature titles */
.feature h2 {
    font-size: 1.5rem;
    margin-top: 10px;
    color: #fff; /* White color for text */
}

/* Style the CTA buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff69b4; /* Pink color */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.btn:hover {
    background-color: #ff3385; /* Darker pink color on hover */
}

/* Style the footer section */
footer {
    color: #fff;
    padding: 10px 20px;
    text-align: center;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    color: #fff;
    margin-right: 10px;
    text-decoration: none;
    font-size: 1.5rem;
}
