@import url('theme.css');

/* Main Titles - Light Theme */
.main-title-section {
    text-align: left;
    margin: 40px 0;
    padding: 0 20px;
}

.main-title-section h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-navy);
}

/* Directory Section */
.directory-section {
    padding: 20px;
    background-color: var(--bg-body);
    margin-bottom: 40px;
}

.directory-heading {
    text-align: left;
    color: var(--color-primary);
    font-size: 18px;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--color-primary-dim);
    padding-bottom: 10px;
    font-weight: 600;
}

.directory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
    padding: 10px;
}

.directory-item {
    display: flex;
    align-items: center;
    background-color: var(--bg-white);
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.directory-item:hover {
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.directory-icon {
    padding: 5px;
    margin-right: 15px;
    color: var(--color-primary);
}

.directory-link {
    text-decoration: none;
    color: var(--color-text-main);
    font-size: 15px;
    font-weight: 500;
}

.directory-link:hover {
    color: var(--color-primary);
}

/* Banner */
.background-image-section {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
    box-shadow: var(--shadow-lg);
}

.background-content {
    text-align: center;
    color: white;
    z-index: 2;
}

.background-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
}

.register-now-btn {
    background-color: var(--color-primary);
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 15px;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--color-primary-glow);
}

.register-now-btn:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
}

/* Products/Suppliers List Section */
.products-section {
    background-color: var(--bg-white);
    padding: 30px;
    margin-top: 20px;
    margin-bottom: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.products-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 20px;
}

.products-links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.product-item a {
    font-size: 14px;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.product-item a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

/* Wholesale Info Section */
.wholesale-section {
    background-color: var(--bg-white);
    padding: 30px;
    margin-top: 20px;
    margin-bottom: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.wholesale-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 20px;
    text-align: left;
}

.wholesale-info {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 15px;
    text-align: justify;
}
