body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}


/* Navbar */
header {
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgb(0,0,0,0.5), rgb(0,0,0,0.5)), url('../images/home.jpg');
    background-size: cover;
    background-attachment: fixed;
}

nav {
    width: 90%;
    height: 80px;
    background-color: white;
    display: flex;
    color: black;
    justify-content: space-between;
    align-items: center;
    padding: 0px 80px;
    position: fixed;
    top: 0;
    z-index: 2; 
}

.menu {
    display: flex;
    align-items: center;
    justify-content: center; 
}

.menu a {
    text-decoration: none;
    color: black;
    padding: 10px 20px;
    font-family: sans-serif;
    font-size: 20px;
}

.menu a.active,
.menu a:hover {
    color: #ff5500; 
    font-weight: bold;
}

.cta-button {
    display: flex; 
    align-items: center; 
    font-size: 1em;
    font-weight: bold;
}

.cta-button a {
    text-decoration: none;
    background: #ff5500;
    color: white;
    padding: 10px 20px;
    margin-right: 30px;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease; 
}

.cta-button a:hover {
    background: transparent;
    color: #ff5500;
    border: 2px solid #ff5500; 
}


/* Home Page */
.h-text {
    max-width: 700px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-10%, -50%);
    z-index: 1; 
}

.h-text h2 {
    color: #ff5500;
    font-size: 2em;
}

.h-text p {
    font-family: sans-serif;
    color: whitesmoke;
    font-size: 1.2em;
}

.h-text .sale {
    font-style: italic;
    color: #ff5500;
}

.h-text .sale  strong{
    color: #f2f2f2;
}

.button-container {
    display: flex;
    gap: 30px;
}

.button {
    display: flex;
    align-items: center; 
    font-size: 1em;
    font-weight: bold;
}

.button a {
    text-decoration: none;
    background: transparent;
    color: #ff5500;
    padding: 10px 20px;
    border: 2px solid #ff5500;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease; 
}

.button a:hover {
    background: #ff5500;
    color: white;
}

.header-content {
    max-width: 700px;
    position: absolute;
    top: 80%;
    left: 45%;
    transform: translate(-20%, -40%);
    z-index: 1;
}

.coming {
  
    margin-top: 20px;
}

.coming h1 {
    font-size: 1.5em;
    color: white;
    text-align: center;
}

.countdown {
    text-align: center;
}

.countdown #timer {
    display: flex;
}

.countdown-item {
    margin: 0 10px;
    font-size: 1.3em; 
    color: #ff5500;
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-weight: bold;
}


/* About Page */
#about {
    background-color: #f4f4f4;
    padding: 2em;
}

#about h2 {
    color: #ff7733;
    text-align: center;
    font-size: 1.6em;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 100%; 
}

.about-description {
    flex: 1;
    padding: 0 2em;
}

.about-description h2 {
    color: #333;
}

.about-description p {
    color: #666;
    font-size: 1.1rem;
}

.about-description h3 {
    color: #ff5500;
    font-size: 1.2rem;
}

.about-description .specs {
    font-size: 1rem;
}

.color-options {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    margin: -10px -15px 0 -10px;
    margin-left: 30px;
}

.color-options li {
    margin: 10px 10px 0 10px; 
    display: flex;
    align-items: center;
    text-align: center;
}

.color-options i {
    margin-right: 10px;
}

.about-description ul {
    column-count: 2; 
    column-gap: 40px;
    max-width: 100%;
    margin-top: 20px; 
}


/* Features Page */
.key-features {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    flex-wrap: wrap;
}

#features h2 , .modal .modal-content h2 {
    color: #ff5500;
    text-align: center;
}

.feature-card {
    width: 300px;
    margin: 15px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease; 
    display: flex;
}

.feature-card:hover {
    background-color: #ff5500; 
}

.feature-card:hover .icon,
.feature-card:hover h3,
.feature-card:hover p {
    color: #fff; 
}

.feature-card:hover {
    border: 1px solid #ff5500; 
}

.icon {
    color: #ff5500; 
    margin-right: 15px;
    font-size: 2em;
    margin-top: 0.3em;
}

.content {
    flex: 1;
}

.feature-card h3 {
    color: #ff5500;
}

.feature-card p {
    color: #666;
}

section#features {
    background-color: #f9f9f9;
    padding: 2em;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}


/* Contact Page */
#contact {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    max-width:100%
}

.contact-image img {
    max-width: 100%;
    margin-top: 10px;
}

.container {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
    height: 35rem;
    width: 42rem;
}

.container h2 {
    color: #ff5500;
    margin-left: 1.5em;
}

input,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}

form {
    max-width: 600px;
    margin: 0 auto;
    padding-left: 1rem;
}

.error-message {
    color: red;
    margin-top: 5px;
}

input:invalid,
textarea:invalid {
    border: 1px solid red;
}

form button {
    background-color: #ff5500;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    cursor: pointer;
    border: none;
}

form button:hover {
    background-color: #ff7733;
}

section#contact {
    color: #fff;
    padding: 2em;
    margin-top: 20px;

}


/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 1.1em;
    border-top: 2px solid #ff5500;
}

footer a {
    color: #ff5500;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.back-to-top {
    position: fixed;
    bottom: 10px;
    right: 20px;
    background-color: #ff5500;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.back-to-top:hover {
    background-color: #fff;
}

.back-to-top a {
    color: #fff;
    text-decoration: none; 
}

.back-to-top:hover a {
    color: #ff5500;
}

.fa-arrow-up {
    font-size: 24px;
}


/* Modal Form */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 7.5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
    height: 72%;
    border-radius: 2%;
}

.modal-content #submitButton:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.modal-content #submitButton:enabled {
    background-color: #ff5500;
    cursor: pointer;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#modalPreOrderForm label,
#modalPreOrderForm input,
#modalPreOrderForm select {
    display: block;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
}

.row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.col {
    flex: 1;
    margin-right: 10px;
}

.col select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    color: #333;
    font-size: 16px;
    appearance: none;
    cursor: pointer;
    height: 2.6em;
}

.col select::after {
    content: '\25BC';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    pointer-events: none;
}

.col select option {
    background-color: #fff;
    color: #333;
}

.error-message {
    color: red;
    font-size: 14px;
    margin-top: 5px;
}

.modal .modal-content form button {
    background-color: #ff5500;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    border: none;
    float: right;
    font-size: 1em;
}

form button:hover {
    background-color: #ff7733;
}

.required {
    color: red;
}