/* style.css */

/* --- Global Styles --- */
body {
    font-family: 'Noto Sans JP', sans-serif;
    padding-top: 56px; /* Fixed header height */
    background-image: url('../images/background_texture.png');
    background-repeat: repeat;
}

h1, h2, h3, h4, h5, h6, .navbar-brand, .btn {
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

/* --- Header --- */
.navbar-brand {
    font-weight: 700;
}

/* --- Hero Section --- */
#hero {
    background-color: transparent;
    padding: 6rem 0;
}

#hero h1 {
    color: #3A3A3A;
}

/* --- Buttons --- */
.btn-primary {
    background-color: #89CFF0; /* Baby Blue */
    border-color: #89CFF0;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
}

.btn-primary:hover {
    background-color: #70B8D4;
    border-color: #70B8D4;
}

.btn-dark {
    background-color: #343a40;
    border-color: #343a40;
    padding: 0.75rem 1.5rem;
}

/* --- Features Section --- */
#features .card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#features .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
}

#features .card-title {
    color: #3A3A3A;
}

/* --- Sharing Section --- */
#sharing {
    background-color: #FFFFFF;
}

/* --- Screenshots Section --- */
.screenshot-placeholder {
    height: 400px;
    background-color: #E9ECEF;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6C757D;
    font-size: 1.2rem;
    border: 1px solid #DEE2E6;
}
.screenshot-placeholder::before {
    content: "Coming Soon";
    font-family: 'M PLUS Rounded 1c', sans-serif;
}


/* --- Download Section --- */
#download {
    background-color: transparent;
}

/* --- Footer --- */
footer a {
    color: #6C757D;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
