/* Import font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* Body Styling */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    /* Black background */
    min-height: 100vh;
    color: #f5f5f5;
    /* Light text for visibility */
}

/* List Container */
.list {
    position: relative;
}

/* List Heading */
.list h2 {
    color: #ffffff;
    /* Bright white for headers */
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* List Items */
.list ul {
    position: relative;
}

.list ul li {
    position: relative;
    left: 0;
    color: #ffcccb;
    /* Soft pink for readability */
    list-style: none;
    margin: 4px 0;
    border-left: 2px solid #f50057;
    transition: 0.5s;
    cursor: pointer;
}

.list ul li:hover {
    left: 10px;
}

.list ul li span {
    position: relative;
    padding: 8px;
    padding-left: 12px;
    display: inline-block;
    z-index: 1;
    color: #f5f5f5;
    /* Light text for better contrast */
    transition: 0.5s;
}

.list ul li:hover span {
    color: #111;
    /* Darker text for hover effect */
}

.list ul li:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #f50057;
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.5s;
}

.list ul li:hover:before {
    transform: scaleX(1);
}

/* Links Styling */
a {
    text-decoration: none;
    color: #000000;
    /* Consistent light text */
}

/* Buttons Styling */
button {
    width: auto;
    margin: 5px 0;
    padding: 5px;
    font-size: 14px;
    margin-left: 10px;
    border-radius: 10px;
    background-color: #4caf50;
    /* Green button background */
    color: #ffffff;
    /* White text for buttons */
}

/* Back Button */
.back {
    background-color: #4CAF50;
    /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    border-radius: 8px;
}

.back:hover {
    background-color: white;
    color: black;
    border: 2px solid #4CAF50;
}

/* Parallax Background */
.parallax {
    height: 100vh;
    /* background-image: url('https://4kwallpapers.com/images/walls/thumbs_3t/21700.jpeg'); Add your image */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Content Section */
.content {
    height: 100vh;
    background-color: white;
    text-align: center;
    padding: 20px;
    color: #333;
    /* Darker text on white background */
}

/* Share Buttons */
/* Footer Styling */
footer {
    /* background-color: #282c34; Dark background */
    color: #ffffff;
    /* White text color */
    text-align: center;
    /* Center the text */
    padding: 20px 0;
    /* Add padding for spacing */
    /* position: fixed; Stick footer to the bottom */
    bottom: 0;
    width: 100%;
    /* Full width */
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    /* Subtle shadow effect */
}

/* Footer Content Layout */
.footer-content {
    display: flex;
    flex-direction: column;
    /* Stack items vertically */
    align-items: center;
    /* Center content horizontally */
    gap: 10px;
    /* Add some space between share button and text */
}

/* Share Button Styling */
.share-buttons {
    display: flex;
    justify-content: center;
    margin: 0;
}

.share-btn {
    padding: 10px 20px;
    text-decoration: none;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.share-btn.whatsapp {
    background-color: #25D366;
    /* WhatsApp Green */
}

.share-btn:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {

    /* Adjust font sizes and spacing for smaller screens */
    .share-btn {
        padding: 8px 15px;
        /* Reduce button size */
        font-size: 12px;
        /* Slightly smaller font */
    }

    footer {
        padding: 15px 0;
        /* Increase footer padding for touch-friendly design */
    }

    .footer-content {
        gap: 8px;
        /* Adjust spacing between elements */
    }

    header {
        display: none;
        /* Hides the div in mobile view */
    }
    /* For the parent container */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensures full height of the viewport */
    margin: 0; /* Removes any default body margin */
  }
  
  /* Main content area */
  main {
    flex: 1; /* Pushes the footer to the bottom when there's little content */
  }
  
  /* Footer styling */
  footer {
    margin-top: auto; /* Ensures the footer stays at the bottom */
  }
  
}