/* Global Styles */
body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #2F4241, #3F5A59);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

/* Container Styles */
.container {
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

/* Topbar Styles */
.topbar {
    width: 100%;
    background: #BDFF00;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.12);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.circle {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.10);
    border-radius: 50%;
}

.title {
    color: black;
    font-size: 28px;
    font-weight: 500;
    line-height: 36px;
    letter-spacing: 0.28px;
}

/* Menu Styles */
.menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-item {
    color: black;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.16px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu-item:hover {
    color: #2F4241;
}

/* Search Styles */
.search {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.10);
}

.search-text {
    color: rgba(0, 0, 0, 0.50);
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.14px;
    border: none;
    outline: none;
}

.search-icon {
    width: 20px;
    height: 20px;
    background: rgba(0, 0, 0, 0.70);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-icon:hover {
    background: #2F4241;
}

/* Main Container Styles */
.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-top: 100px;
}

/* Order Section Styles */
.order-section {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    background: rgba(63, 90, 89, 0.8);
    border-radius: 12px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.order-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-form label {
    font-size: 16px;
    font-weight: 500;
}

.order-form select,
.order-form input {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.order-button {
    padding: 12px 20px;
    background: #BDFF00;
    border: none;
    border-radius: 8px;
    color: black;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.order-button:hover {
    background: #2F4241;
    color: white;
}

/* Newsletter Section Styles */
.newsletter-section {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    background: rgba(79, 106, 105, 0.8);
    border-radius: 12px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
}

.newsletter-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form label {
    font-size: 16px;
    font-weight: 500;
}

.newsletter-form input {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.subscribe-button {
    padding: 12px 20px;
    background: #BDFF00;
    border: none;
    border-radius: 8px;
    color: black;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.subscribe-button:hover {
    background: #2F4241;
    color: white;
}

/* Footer Styles */
.footer {
    width: 100%;
    background: #BDFF00;
    padding: 20px 0;
    text-align: center;
    color: black;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.14px;
    position: relative;
    bottom: 0;
}