@import url('base.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url('../image/home_background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    min-height: 100vh;
    overflow-x: hidden;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 100px);
    text-align: center;
}

.title {
    font-family: 'please-write-me-a-song', serif;
    font-size: 4.5rem;
    color: var(--primary-color);
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 1);
    margin-bottom: 1rem;
    letter-spacing: 0.2rem;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.social-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: row;
    gap: 15px;
    z-index: 100;
}

.social-buttons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary-color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.social-buttons a:hover {
    background-color: var(--primary-color);
    transform: scale(1.15);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

@media (max-width: 1024px) {
    .social-buttons a {
        width: 90px;
        height: 90px;
        font-size: 3rem;
    }

    .title {
        font-size: 9rem;
    }
}