@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

body {
    font-family: Poppins, sans-serif;
    background-image: url(img/websitebackground.png);
    color: #2bbb4d;
    text-align: center;
    margin: 0;
    padding: 0;
}

header {
    background: #28a745;
    padding: 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

header h1 {
    margin: 0;
    font-size: 30px;
    color: #7aee3c;
}

section { 
    padding: 20px;
    margin: 20px auto 0px;
    max-width: 800px;
    background: rgba(50, 50, 100, 0.8);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.download {
    margin-top: 20px;
    margin-bottom: 60px;
    justify-content: center; /* wyśrodkuj w poziomie */
    align-items: center;
    display: flex;
    flex-direction: column;
}

.download-btn {
    padding: 12px 24px;
    background: #1c8b36;
    color: #7aee3c;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    margin-bottom: 10px;
    max-width: 200px;
}

.download-btn:hover {
    background: #1c722f;
    transform: scale(1.1);
}

.others {
    margin-top: 200px;
}

.media-links {
    margin-bottom: 30px;
    text-decoration: none;
    color: #64c72f;
}

.media-links a {
    color: #64c72f;
    text-decoration: none;
  }

.others-btn {
    margin-left: 10px;
    display: inline-block;
    padding: 12px 24px;
    background: #1c8b36;
    color: #7aee3c;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.others-btn:hover {
    background: #1c722f;
    transform: scale(1.1);
}

.faq-box, .review-box {
    background: rgba(50, 50, 100, 0.9);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    margin: 10px 0;
}

.category-title {
    color: #64c72f;
}

.title {
    border: 2px solid #28a745;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    font-size: 40px;
    max-width: 1200px;
}

/* ######################################################################################################################################### */
/* updates.php ---------------------------------------------------------------------------------------------------------------------------- */
/* ######################################################################################################################################### */

.updates-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.update-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.update-box {
    background: rgba(40, 167, 69, 0.1);
    border: 2px solid #28a745;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.update-box:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.update-box h3 {
    margin-top: 0;
    color: #7aee3c;
}

.update-box p {
    color: #c3ffc3;
}

.update-box small {
    display: block;
    margin-top: 10px;
    color: #8aff8a;
}

.update-detail {
    max-width: 700px;
    margin: 100px auto;
    background: rgba(50, 50, 100, 0.8);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

/* ######################################################################################################################################### */
/* Contact.html ---------------------------------------------------------------------------------------------------------------------------- */
/* ######################################################################################################################################### */

.contact-container {
    justify-content: space-evenly;
}

.contact-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.contact-left-title h2 {
    font-size: 40px;
    margin-bottom: 5px; 
}

.contact-left-title hr {
    border: none;
    width: 240px;
    height: 5px;
    background-color: #7aee3c;
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact-inputs {
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: #666;
    border-radius: 50px;
}

.contact-left textarea {
    height: 140px;
    padding-top: 15px;
    border-radius: 20px;
}

.contact-inputs:focus {
    border: 3px solid #7aee3c;
}

.contact-inputs::placeholder {
    color: #a9a9a9;
}

.submit-btn {
    margin-left: 10px;
    display: inline-block;
    padding: 12px 24px;
    background: #1c8b36;
    color: #7aee3c;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}

.submit-btn:hover {
    background: #1c722f;
    transform: scale(1.1);
}

@media (max-width:800px) {
    .contact-inputs {
        width: 80vw;
    }
}