/* Styles.css */

/* General body and layout styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 28px;
}

header p {
    margin: 5px 0;
    font-size: 16px;
}

.standard-button {
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
}

.standard-button:hover {
    background-color: #0056b3;
}

main, section {
    max-width: 95%;
    margin: 0 auto;
    padding: 20px;
}

/* Intro section */
.intro {
    text-align: center;
    margin-bottom: 30px;
}

.intro img {
    width: 100%;
    max-width: 90%;
    height: auto;
    border-radius: 10px;
    border: 2px solid black;
    margin-bottom: 20px;
}

/* Info box styling */
.info-box {
    background-color: #fff;
    border: 2px solid black;
    border-radius: 10px;
    padding: 20px;
    margin: 20px auto;
    line-height: 1.6;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: justify;
}

/* Button row styling */
.button-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.button-row button {
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
}

.button-row button:hover {
    background-color: #0056b3;
}

/* Responsive image styling */
.responsive-image {
    width: 100%;
    max-width: 90%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
    border: 2px solid black;
}

/* Navigation helper section */
.navigation-helper {
    text-align: center;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.navigation-helper p {
    color: #007BFF;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
}

.navigation-helper img {
    display: block;
    margin: 0 auto;
    max-width: 90%;
    height: auto;
    border: 2px solid black;
    border-radius: 10px;
}

/* Micro PC splash section */
.micro-pc-splash {
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border: 2px solid black;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.responsive-image-mini {
    display: block;
    margin: 0 auto 20px;
    max-width: 60%;
    height: auto;
}

.micro-pc-text {
    max-width: 85%;
    margin: 0 auto;
    text-align: justify;
    line-height: 1.8;
    font-size: 16px;
    color: #333;
}

/* Footer styling */
footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

/* Responsive video styling */
.responsive-video {
    width: 100%;
    max-width: 90%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
    border: 2px solid black;
}

/* --- New styles for Magic.html image animation --- */
.animated-image {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    height: auto;
    animation: scaleUp 4s forwards;
}

@keyframes scaleUp {
    0% {
        transform: scale(0.25);
    }
    100% {
        transform: scale(1);
    }
}
