body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1a1a1a;
    color: #f5f5f5;
    margin: 0;
    padding: 0;
}

.header {
    color: bisque;
    background-color: #1a1a1a;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.header h1 {
    font-size: 55px;
    margin: 0;
    line-height: 1.2;
    color: bisque;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 35px;
    cursor: pointer;
    margin-right: 20px;
}

.hamburger span {
    display: block;
    height: 5px;
    background-color: bisque;
    border-radius: 2px;
    width: 100%;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 20px;
    background-color: black;
    border: 1px solid bisque;
    border-radius: 8px;
    padding: 10px;
    z-index: 1000;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    width: 150px;
    text-align: center;
}

.dropdown-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-menu li {
    margin: 10px 0;
}

.dropdown-menu a {
    text-decoration: none;
    color: bisque;
    font-size: 18px;
    display: block;
    padding: 8px 10px;
    border: 1px solid transparent;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    color: black;
    background-color: bisque;
    border: 1px solid white;
}

.logo {
    height: 60px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.main-nav a {
    color: #f5f5f5;
    text-decoration: none;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

.main-nav a:hover, .main-nav .active {
    background-color: #d4af37;
    color: #000;
    border-radius: 5px;
}

.hero {
    background: url('../images/background.jpg') no-repeat center center/cover;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 4rem;
    color: #d4af37;
}

.hero p {
    margin-top: 20px;
    font-size: 1.5rem;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #d4af37;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #b38e2e;
}

.products {
    background-color: #121212;
    padding: 50px 0;
    text-align: center;
}

.products h2 {
    color: #d4af37;
    margin-bottom: 30px;
}

.product-gallery {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.product-item {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 200px;
}

.product-item img {
    width: 100%;
    border-radius: 10px;
}

.product-item h3 {
    color: #fff;
    margin-top: 10px;
}

.product-item p {
    color: #d4af37;
    margin-top: 5px;
}



footer {
    background-color: #1a1a1a;
    padding: 20px;
    text-align: center;
}

footer p {
    color: #999;
}

footer a {
    color: #d4af37;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}


/* Styles from team.css */

/* Styles for the team page */
.team-header {
    text-align: center;
    font-size: 2rem;
    margin-top: 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

.team-member {
    text-align: center;
    background-color: #444;
    border-radius: 10px;
    padding: 15px;
    color: #fff;
}
