/* Global Styles */
body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    font-family: Roboto, sans-serif;
    background: #2F4241;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

/* Main Container Styles */
.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-top: 100px; /* Adjust padding to avoid overlap with the topbar */
}

/* 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; /* Space between title and menu */
    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; /* Change color on hover */
}

/* 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; /* Change background on hover */
}

/* Content Styles */
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0; /* Adjust padding to fill the left side and avoid overlap with the topbar */
    gap: 20px;
    width: 100%;
    background: #3F5A59;
}

.divider {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.10);
}

.text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    color: white;
    text-align: center;
}

.welcome {
    font-size: 30px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: 0.30px;
}

.description {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.16px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.10);
}

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

.search-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    background: black;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-button:hover {
    background: #BDFF00; /* Change background on hover */
}

/* Promo Section Styles */
.promo-section {
    width: 100%;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    background: #4F6A69;
}

.promo-divider {
    width: 100%;
    max-width: 1440px;
    height: 0;
    border: 1px solid rgba(0, 0, 0, 0.10);
}

.promo-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 800px;
    height: 300px;
}

.promo-box {
    width: 100%;
    height: 292px;
    position: relative;
    background: rgba(216, 216, 216, 0.50);
    border-radius: 6px;
}

.promo-text {
    width: 100%;
    height: 16px;
    position: absolute;
    top: 138px;
    left: 0;
    text-align: center;
    color: black;
    font-size: 12px;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.12px;
    word-wrap: break-word;
}

.promo-dots {
    position: absolute;
    top: 280px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.promo-dot {
    width: 4px;
    height: 4px;
    background: rgba(0, 0, 0, 0.30);
    border-radius: 100px;
}

.promo-dot.active {
    width: 20px;
    background: white;
}

.promo-image-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    height: 400px;
}

.promo-image {
    width: 100%;
    height: 100%;
    border-radius: 6px;
}

/* Latest News Section Styles */
.latest-news {
    width: 100%;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    background: #5F7A79;
}

.news-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.news-header {
    text-align: center;
    color: white;
}

.news-header h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: 0.40px;
}

.news-header p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.16px;
}

.news-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 6px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.news-item img {
    width: 252px;
    height: 257px;
    border-radius: 6px;
}

.news-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.news-details h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0.20px;
}

.news-details p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.16px;
}

.tags {
    display: flex;
    gap: 6px;
}

.tag {
    padding: 2px 4px;
    background: rgba(255, 249, 249, 0.50);
    border-radius: 2px;
    border: 0.50px solid rgba(0, 0, 0, 0.10);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.12px;
}

.club {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.club p {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.14px;
}

/* Featured Products Section Styles */
.featured-products {
    width: 100%;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    background: #6F8A89;
}

.products-header {
    text-align: center;
    color: white;
}

.products-header h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: 0.40px;
}

.products-header p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.16px;
}

.products-content {
    display: flex;
    gap: 20px;
}

.product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: white;
    border-radius: 6px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.product-item img {
    width: 100%;
    max-width: 340px;
    border-radius: 6px;
}

.product-details {
    text-align: center;
}

.product-details h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0.20px;
}

.product-details p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.16px;
}

/* 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;
}