* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'notosan';
    src: url('assets/fonts/NotoSansLao-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'notosan';
    background-color: #F2F2F2;
    color: #000;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    display: flex;
    font-family: 'notosan';
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px 10px 50px;
    /* background-color: #317BDA; */
}

.logo {
    max-width: 150px;
    font-size: 20px;
}

.support a {
    color: #000; /* White for contrast */
    font-family: 'notosan';
    text-decoration: none;
    font-size: 16px;
}

.hero {
    text-align: left;
    padding: 40px;
    background-color: #FFFFFF;
}

.hero h1 {
    font-size: 48px;
    font-family: 'notosan';
    color: #317BDA; /* Primary Blue */
    margin-bottom: 10px;
}

.hero p {
    font-size: 24px;
    color: #000; /* Black text */
    font-family: 'notosan';
}

.screenshots {
    text-align: right;
    padding: 20px;
}

.screenshots h2 {
    margin-bottom: 20px;
    font-size: 20px;
    text-align: right;
}


/* Buttons and Highlights */
button, .highlight {
    background-color: #FFD700; /* Accent Yellow */
    color: #000;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

button:hover, .highlight:hover {
    background-color: #FF5733; /* Accent Red on hover */
    color: #FFF;
}


.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    padding: 20px;
    background-color: #FFFFFF; /* White to contrast screenshots */
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #317BDA; /* Primary Blue border */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }

    .grid-item img {
        height: 100%;
    }
}
/* Footer */
footer {
    background-color: #317BDA; /* Primary Blue */
    color: #FFFFFF;
    padding: 20px 10px;
}

.footer-section h2 {
    font-size: 18px;
    color: #FFD700; /* Accent Yellow for headings */
}

.footer-section p, .footer-section a {
    color: #FFFFFF; /* White text */
}

.footer-bottom {
    text-align: center;
    padding: 10px;
    font-size: 14px;
    color: #FFFFFF;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
}
