
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@200;300;700&display=swap');

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    font-family: 'Quicksand', sans-serif;
    background-color: #112340; /* Primary color same as button */
    background: radial-gradient(circle, #112340 60%, #1e3a8a 120%); /* Subtle gradient */
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #ffffff;
    text-align: center;
    position: relative;
    padding: 20px; /* Padding for mobile */
}

.hero-text {
    margin-bottom: 30px; /* Consistent spacing */
}

#hero-title {
    font-size: 5rem; /* Adjusted size for better fit on mobile */
    letter-spacing: 0.3rem;
    font-family: 'Lexend', sans-serif;
}

#hero-title .bold {
    font-weight: 700; /* Bold for res */
}

#hero-title .light {
    font-weight: 200; /* Light for ideum */
}

#hero-subtitle {
    font-size: 1.2rem; /* Adjusted size for mobile */
    font-family: 'Quicksand', sans-serif;
    font-weight: 300;
    margin-bottom: 30px; /* Match spacing between subtitle and buttons */
}

.buttons-container {
    display: flex;
    justify-content: center;
    gap: 30px; /* Increased space between buttons */
    flex-wrap: wrap; /* Wrap buttons for smaller screens */
}

.neumorphic-button {
    width: 120px; /* Reduced size for mobile */
    height: 120px; /* Square shape */
    border-radius: 20px;
    background: #112340;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 10px 10px 20px #0c1a2c, -10px -10px 20px #18395c;
    transition: transform 0.3s, box-shadow 0.3s;
}

.neumorphic-button:hover {
    transform: scale(1.05);
    box-shadow: 5px 5px 10px #0c1a2c, -5px -5px 10px #18395c;
}

.lord-icon {
    width: 70px; /* Adjusted size for mobile */
    height: 70px;
}

/* Responsive Menu Styles */
.menu-icon {
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 40px;
    height: 35px;
    z-index: 2;
}

.menu-line {
    background-color: #ffffff;
    height: 4px;
    width: 100%;
    transition: all 0.3s ease;
}

.menu {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background-color: #112340;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    width: 200px;
}

.menu a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    padding: 15px 20px;
    font-size: 1.5rem;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.menu a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: scale(1.05);
}

.toggle .menu-line:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.toggle .menu-line:nth-child(2) {
    opacity: 0;
}

.toggle .menu-line:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

.menu.active {
    display: block;
}

/* Media Query for Mobile */
@media (max-width: 768px) {
    #hero-title {
        font-size: 4rem; /* Smaller for mobile */
    }
    .buttons-container {
        flex-direction: column; /* Stack buttons vertically */
    }
    .neumorphic-button {
        width: 100px;
        height: 100px; /* Smaller size for mobile */
    }
    .lord-icon {
        width: 60px; /* Smaller size for mobile */
        height: 60px;
    }
}
