body {
    margin: 0;
    padding: 0;
    font-family: 'Manrope', sans-serif;
    color: whitesmoke;
    background-color: #000;
}

header {
    background-color: transparent;
    /* Add transparency for a sleek look */
    padding: 0px;
    margin: 0;
    font-weight: 100;
    z-index: 1000;
    position: absolute;
    /* Position the header on top of the hero section */
    top: 0;
    left: 0;
    width: 100%;
    /* Ensure the header spans the full width of the viewport */
}

.hero {
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* Divide the hero section into 3 equal columns */
    align-items: center;
    /* Vertically center the content */
    color: whitesmoke;
    padding: 0;
}

.hero1 {
    position: relative;
    background: url('../../images/OnlyInDreamsSideCover.jpg') no-repeat center center/cover;
}

.hero2 {
    background: url('../../images/hightop-cover.png') no-repeat center center/cover;
}

.hero-content {
    text-align: left;
}

@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }

    .hero1 {
        background-position: 53% center;
    }

    .hero2 {
        background-position: 45% center;
    }
}

@media (min-width: 768px) {
    .hc1 {
        grid-column: 3 / 4;
        margin-bottom: 300px;
    }

    .hc2 {
        grid-column: 2 / 4;
        margin-top: 300px;
        margin-left: 500px;
    }
}

.hero-image-1 img {
    position: absolute;
    /* Position the image at the bottom-left corner */
    bottom: 50px;
    /* Distance from the bottom of the screen */
    left: 50px;
    /* Distance from the left of the screen */
    height: 15vh;
    /* Initial small size */
    width: auto;
    /* Maintain aspect ratio */
    transition: height 0.3s ease;
    /* Smooth scaling effect */
    z-index: 1000;
    /* Ensure the image is above other elements */
}

.hero-image-1 img:hover {
    /* transform: scale(2); */
    /* Grow the image on hover */
    height: 80vh;
    /* Adjust width dynamically */
}

.hero-image-2 img {
    grid-column: 1 / 4;
    max-width: 100%;
    /* Make the image fill the left column */
    height: 80vh;
    /* Maintain the aspect ratio */
    display: block;
    /* Remove extra space below the image */
    margin-left: 20%;
}

@media (max-width: 768px) {
    .hero-image-2 img {
        display: none;
    }

    .hero-image-1 img {
        display: none;
    }
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: -8px;
    line-height: 1.0;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.cta-btn-group {
    display: flex;
    /* Align buttons horizontally */
    gap: 20px;
    /* Add spacing between the buttons */
    margin-top: 20px;
    /* Add spacing above the button group */
}

.cta-btn {
    display: inline-flex;
    /* Use flexbox for alignment */
    align-items: center;
    /* Vertically center the text and arrow */
    justify-content: center;
    /* Center the content horizontally */
    padding: 10px 20px;
    /* Add spacing inside the button */
    border: 1px solid whitesmoke;
    /* Add a border around the button */
    color: whitesmoke;
    /* Set the text color */
    font-size: 1rem;
    /* Adjust the font size */
    font-weight: 700;
    /* Make the text bold */
    text-decoration: none;
    /* Remove underline from the link */
    background-color: transparent;
    /* Transparent background */
    transition: all 0.3s ease;
    /* Smooth transition for hover effects */
}

.cta-btn:hover {
    background-color: whitesmoke;
    /* Change background color on hover */
    color: black;
    /* Change text color on hover */
}

.cta-arrow {
    margin-left: 10px;
    /* Add spacing between the text and the arrow */
    font-size: 1.2rem;
    /* Slightly larger size for the arrow */
    transition: margin-left 0.3s ease;
    /* Smooth transition for hover effects */
}

.cta-btn:hover .cta-arrow {
    margin-left: 15px;
    /* Move the arrow slightly on hover */
}