.navbar-brand img {
    width: 110px;
    margin: 10px;
}

.hero {
    height: 91vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../images/bg.png') center/cover;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #3333334a;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 40px;
    background: rgb(255 255 255 / 87%);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero h1 {
    font-size: 52px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 35px;
    color: var(--text-muted);
}

.categories {
    padding: 100px 8%;
    background-color: var(--bg-color);
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.cat-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.cat-card img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.cat-card:hover img {
    transform: scale(1.08);
}

.cat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.cat-title {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 1;
    color: #FFF;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 1px;
}

.page-header {
    text-align: center;
    padding: 100px 20px;
    background-color: var(--bg-alt);
    border-bottom: 1px solid var(--border);
}

.page-header h1 {
    font-size: 46px;
    font-weight: 400;
    margin-bottom: 15px;
}

.page-header p {
    color: var(--text-muted);
    font-size: 18px;
}

.category-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 86px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    z-index: 90;
}

.category-nav a {
    text-decoration: none;
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
    transition: color 0.3s;
}

.category-nav a:hover {
    color: var(--primary-color);
}

.category-section {
    padding: 100px 8%;
}

.category-section:nth-child(even) {
    background-color: var(--bg-alt);
}

.category-section h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 50px;
    text-align: center;
}