/* Base styles */
body {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    background-color: #e8fdf5;
    color: #2d3436;
}

/* Navbar Styling */
#nav {
    height: 80px;
    width: 100%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: fixed;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

#nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0 auto;
    padding: 0;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
}

#nav li.name {
    padding-right: 300px;
    font-weight: bold;
    font-size: 30px;
    color: #27ae60;
}

#nav a {
    text-decoration: none;
    font-size: 16px;
    color: #2d3436;
    transition: color 0.3s;
}

#nav a:hover {
    color: #2ecc71;
}

*::selection {
    color: #63d471;
    background-color: #fff;
  }

/* Container Styling */
.container {
    max-width: 600px;
    margin: 150px auto 50px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
}

/* Headings */
h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1e824c;
    font-family: "Orbitron", sans-serif;
}

/* Form Elements */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: #2d3436;
}

input,
textarea {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.3s;
    background-color: #ffffff;
}

input:focus,
textarea:focus {
    border-color: #63d471;
}

input[type="number"],
input[type="text"] {
    font-size: 16px;
    color: #2d3436;
}

/* Button Styling */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    color: #ffffff;
    background-color: #63d471;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #2ecc71;
}

/* Order Summary */
#order-summary {
    margin-top: 30px;
    font-size: 16px;
    color: #2d3436;
    background-color: #e8fdf5;
    padding: 15px;
    border: 1px solid #63d471;
    border-radius: 6px;
    text-align: center;
}