/* Hero Section Styling */
.hero-section {
    /* background-color: #000000; */
    position: relative; /* For parallax effect */
    overflow: hidden; /* Hide overflow for parallax */
    /* padding-top: 100px; */
}

/* Parallax Background */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./assets/parallax-bg.jpg'); /* Replace with a suitable background image */
    background-size: cover;
    background-attachment: fixed; /* Parallax effect */
    background-position: center;
    z-index: -1; /* Push behind content */
    opacity: 0.5; /* Subtle effect */
}

/* Container for Hero Image and Content */
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row; /* Align items in a row */
    align-items: center;
    justify-content: space-between;
    text-align: left;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-in-out forwards;
}

/* Hero Image */
.hero-image-container {
    flex: 1;
    padding: 0 20px; /* Add horizontal padding */
}

.hero-image {
    width: 70%; /* Ensures the image spans the full container */
    height: auto;
    margin-left: 20px;
    border-radius: 15px; /* Optional: rounded corners */
    transition: transform 0.3s ease;
}

.SolanaLogo {
    width: 85px; /* Ensures the image spans the full container */
    height: auto;
    border-radius: 15px; /* Optional: rounded corners */
    transition: transform 0.3s ease;
    animation: float 2s ease-in-out infinite; /* Apply the float animation */
    gap: 50px;
    margin-left: 20px;
}

/* Keyframes for the Floating Effect */
@keyframes float {
    0% {
        transform: translateY(0); /* Initial position */
    }
    50% {
        transform: translateY(-15px); /* Move upwards */
    }
    100% {
        transform: translateY(0); /* Return to original position */
    }
}

.hero-image:hover {
    transform: scale(1.05); /* Slight zoom effect */
}

/* Hero Content */
.hero-content {
    flex: 1;
    padding: 20px;
}

/* Heading Styling */
.hero-heading {
    margin-left: 160px;
    font-size: 80px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
    animation: slideInLeft 1.2s ease-in-out;
}

/* Description Styling */
.hero-description {
    padding-left: 20px;
    font-size: 1.7rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #f9f9f9;
    animation: fadeIn 1.5s ease-in-out;
}

/* Logos Section Styling */
.logo-container {
    display: flex;
    gap: 20px; /* Space between logos */
    padding-left: 160px;
    margin-bottom: 20px; /* Space after logos */
    align-items: center;
}

/* Logo Styling */
.logo {
    width: 50px; /* Consistent width for all logos */
    height: 50px; /* Consistent height for all logos */
    border-radius: 100%; /* Circular shape for all logos */
    background: #fff;
    justify-content: center; /* Horizontally center the content */
    display: flex; /* Make it a flex container */
    align-items: center; /* Vertically center the content */
    position: relative; /* For glow effect */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Smooth scaling and shadow effect */
    animation: glowPulse 2s infinite; /* Add glowing animation */
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: 2px solid #fff;
    border-radius: 50px;
}

/* Hover Effect for Logos */
.logo:hover {
    transform: rotate(360deg) scale(1.1); /* Rotate and scale effect */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Glowing Effect for Logos */
@keyframes glowPulse {
    0% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }
    100% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    }
}

/* Buttons Styling */
.hero-button {
    border: 1px solid #fff; /* White border */
    border-radius: 10px;
    color: white;
    background: transparent;
    font-size: 0.9rem;
    font-weight: bold;
    padding: 8px 16px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 5px;
    position: relative; /* For glow effect */
}

.hero-button:hover {
    background: #fff;
    color: #000000;
    transform: scale(1.05); /* Slightly larger button */
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8); /* Glowing shadow */
}

/* Buttons Container Styling */
.button-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

/* Custom Cursor */
.hero-section {
    cursor: url('./assets/custom-cursor.png'), auto; /* Replace with your custom cursor image */
}

/* Contact Link Styling */
.contact-link {
    display: flex;
    align-items: center;
    gap: 5px; /* Space between items */
    font-size: 1.1rem;
    color: #ffffff;
    background-color: #000000a7; /* Optional: Background color for the container */
    margin-top: 40px;
    border-radius: 5px;
    max-width: 550px;
    width: 100%;
    padding: 10px; /* Unified padding shorthand */
    box-shadow: 2px 2px 8px 8px rgba(242, 249, 249, 0.209);
    word-break: break-all;
}

/* Logo Icon Styling */
.logo-icon {
    width: 40px; /* Adjust width for the logo */
    height: 40px; /* Adjust height for the logo */
    border-radius: 50%; /* Optional: Make the logo circular */
}

/* Link Styling */
.contact-link a {
    color: #ffffff;
    text-decoration: none;
    background-color: #000000;
    border: 1px solid #ffffff; /* Add border to the link */
    padding: 5px 15px; /* Add padding inside the border */
    border-radius: 5px; /* Rounded corners for the link */
    transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.contact-link a:hover {
    border-color: #f0e68c; /* Change border color on hover */
    color: #333; /* Change text color on hover */
}

/* Copy Icon Styling */
.copy-icon {
    cursor: pointer; /* Show pointer cursor on hover */
    color: #fff; /* White icon color */
    font-size: 1.5em; /* Adjust icon size */
    transition: color 0.3s ease;
}

.copy-icon:hover {
    color: #f0e68c; /* Light yellow hover effect */
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* Responsive Adjustments */
@media (max-width: 1024px) {
    /* Tablet View */
    .hero-heading {
        font-size: 60px; /* Adjust heading size for tablets */
        margin-left: 0; /* Remove left margin */
    }

    .hero-description {
        font-size: 1.5rem; /* Smaller font for description */
        padding-left: 0;
    }

    .hero-container {
        flex-direction: column; /* Stack the content vertically on tablets */
        align-items: center;
        text-align: center;
    }

    .hero-image-container {
        margin-bottom: 20px;
        padding: 0 15px;
    }

    .hero-image {
        width: 80%; /* Adjust image width */
        margin: 0 auto;
        border-radius: 15px;
    }

    .logo-container {
        padding-left: 0; /* Remove padding on logos */
        justify-content: center; /* Center logos */
    }

    .logo {
        width: 40px; /* Smaller logo size */
        height: 40px; /* Smaller logo size */
    }

    .button-container {
        grid-template-columns: 1fr 1fr; /* Adjust button layout for tablets */
    }
}

@media (max-width: 768px) {
    /* Mobile View */
    .hero-heading {
        font-size: 40px; /* Adjust heading size for smaller screens */
    }

    .hero-description {
        font-size: 1.2rem; /* Smaller description font */
    }

    .hero-image {
        width: 90%; /* Further reduce image size */
    }

    .logo {
        width: 30px; /* Smaller logos for mobile */
        height: 30px; /* Smaller logos for mobile */
    }

    .button-container {
        grid-template-columns: 1fr; /* Stack buttons on small screens */
    }

    .contact-link {
        margin-left: 0px;
    }

    .contact-link a {
        font-size: 1rem; /* Smaller link font size */
        padding: 10px 20px;
    }

    .hero-image-container {
        flex-direction: column; /* Stack items in a column on mobile */
        align-items: center; /* Center items horizontally */
    }

    .SolanaLogo {
        margin: 10px 0; /* Add vertical margin between images */
        width: 20%; /* Adjust width for better fit on smaller screens */
    }

    .hero-image {
        width: 90%; /* Adjust the hero image width */
    }
}



