/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Ensures padding and borders are included in element width/height */
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif; /* Fallback font */
    background-color: black;
    width: 100%;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

body {
    background-image: url('background.png');
    background-repeat: no-repeat;
    background-size: cover; /* Ensures the entire viewport is covered */
    background-position: center;
    background-attachment: fixed; /* Fixed image for a consistent scrolling experience */
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center all elements within the container */
    width: 100%;
    max-width: 1000px; /* Maximum container width */
    margin: 0 auto; /* Center container horizontally */
}

.top-section,
.middle-section,
.bottom-section,
.video-wrapper {
    width: 100%;
    max-width: 1000px;
}

.video-wrapper {
    background-color: black; /* Set a black background for the video section */
    width: 100%;
}

.video-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.responsive-video {
    width: 90%;
    max-width: 480px;
    height: auto;
    margin: 0 auto; /* Center the video */
}

/* Responsive Images */
.responsive-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Middle Section */
.middle-section {
    position: relative; /* Establish positioning context for absolute positioning */
}

/* Social Links */
.social-links {
    position: absolute;
    bottom: 20px; /* Adjust this value to move vertically */
    left: 57px;   /* Adjust this value to move horizontally */
    margin: 0;    /* Reset margins */
    width: auto;
    text-align: left;
}

/* Social Item */
.social-item {
    margin-bottom: 10px; /* Adds space between social links */
}

/* Google Font 'Love Ya Like A Sister' */
.love-ya-like-a-sister-regular {
    font-family: 'Love Ya Like A Sister', cursive; /* Google Font */
    font-weight: 400;
    font-size: 4vw; /* Responsive font size */
    color: white;
    text-decoration: none;
    background-color: transparent; /* Background for the text */
    padding: 3px;
    border-radius: 5px;
    line-height: 1.2;
}

/* Bottom Section */
.bottom-section a {
    display: block;
    width: 100%;
}

/* Adjustments for larger screens (Fixed above 1000px width) */
@media (min-width: 1000px) {
    .love-ya-like-a-sister-regular {
        font-size: 40px; /* Fixed font size for screens wider than 1000px */
         background-color: transparent; /* Remove background color */
       
    }
}

/* Media Queries for Mobile Devices */

/* For Tablets */
@media (max-width: 768px) {
    .responsive-video {
        width: 80%;
    }

    .love-ya-like-a-sister-regular {
        font-size: 3.5vw; /* Adjusted for better fit on tablets */
    }
}

@media (max-width: 540px) {
    .social-links {
        bottom: 2px; /* Moves text closer to the bottom */
        left: 20px;    /* Moves text further to the left */
    }
}

/* For Smartphones */
@media (max-width: 480px) {
    .responsive-video {
        width: 95%;
    }

    .love-ya-like-a-sister-regular {
        font-size: 3.5vw; /* Adjusted to reduce font size for smaller screens */
    }
}
