* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Tinos", serif;
}

body {
    font-family: "Tinos", serif;
    color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: #3b3836;
    position: fixed;
    top: 0;
    width: 100%;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d15e12;
    text-decoration: none;
}

.nav-options {
    list-style: none;
    display: flex;
    gap: 3rem;
}

.nav-options a {
    color: #fff;
    text-decoration: none;
}

.nav-options a:hover {
    color: black;
}

.welcome {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
    url('https://images.unsplash.com/photo-1511556532299-8f662fc26c06') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
}

.welcome-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
}

.welcome-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.welcome-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.btn {
    background-color: #d15e12;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #fff;
    color: #d15e12;
}

.shoes {
    padding: 5rem 2rem;
    background-color: #fff;
}

.shoes h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #d15e12;
}

.shoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.shoes-card {
    background-color: #3b3836;
    padding: 2rem;
    border-radius: 10px;
    text-align: left;
    transition: 0.5s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.shoes-card .shoes-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.shoes-card .shoes-desc {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 1rem
}

.shoes-card .shoes-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #d15e12;
}

.shoes-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.shoes-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.us-content {
    padding: 5rem 2rem;
    background-color: #3b3836;
    text-align: center;
}

.us-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #d15e12;
}

.us-content p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;   
}

.contact-content {
    padding: 5rem 2rem;
    background-color: #3b3836;
}

.contact-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #d15e12;
}

.contact-content p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.contact-info {
    text-align: center;
    margin-bottom: 2rem;
}


.map {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 10px;
}

.map iframe {
    display: block;
    width: 100%;
    height: 400px;
    border-radius: 10px;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #3b3836;
    min-width: 150px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    z-index: 10;
}

.dropdown-content a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #d15e12;
    border-radius: 15px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.category-content {
    padding: 6rem 2rem;
}

.tab-navigation {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
} 

.tab-button {
    border: none;
    background-color: #3b3836;
    color: #d15e12;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.tab-button:hover {
    background-color: black;
}

.tab-button.active {
    background-color: #d15e12;
    color: #fff;
}

.tab-content {
    display: none;
    padding: 2rem;
    border-radius: 5px;
    color: #333;
}

.tab-content.active {
    display: grid;
    grid-template-columns: min-content();
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-card {
    background-color: #3b3836;
    padding: 2rem 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.logo-brand {
    height: 120px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
    transition: filter 0.32 ease;
}

.brand-card p {
    font-size: 1.1rem;
    font-weight: bold;
    color: #d15e12;
    text-align: center;
    margin-bottom: 0;
    transition: color 0.3 ease;
}

.brand-card:hover {
    background-color: #d15e12;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(209, 94, 18, 0.4);
}

.brand-card:hover p {
    color: #fff;
}

.brand-card:hover .logo-brand {
    filter: brightness(0) invert(1);
}
