
:root {
    --tcs-primary: #907561;
    --tcs-primary-light: #b3967f;
    --tcs-dark: #333333;
    --tcs-light: #f8f8f8;
    --tcs-accent: #d4b79a;
    --tcs-gray: #e8e8e8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Navbar Styles */
.tcs-main-nav {
    background-color: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    margin-bottom: 20px;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.tcs-main-nav.tcs-scrolled {
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
}

.tcs-nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.tcs-logo-link {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--tcs-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tcs-logo-img {
    height: 120px;
}

.tcs-nav-list {
    display: flex;
    list-style: none;
    align-items: center;
}

.tcs-nav-element {
    margin-left: 30px;
    position: relative;
}

.tcs-nav-anchor {
    color: var(--tcs-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 0;
}

.tcs-nav-anchor:hover {
    color: var(--tcs-primary);
}

.tcs-nav-anchor::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--tcs-primary);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.tcs-nav-anchor:hover::after {
    width: 100%;
}

.tcs-active .tcs-nav-anchor {
    color: var(--tcs-primary);
}

.tcs-active .tcs-nav-anchor::after {
    width: 100%;
}

.tcs-has-submenu {
    position: relative;
}

.tcs-submenu-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    transform: translateY(10px);
}

.tcs-has-submenu:hover .tcs-submenu-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tcs-submenu-item {
    padding: 12px 20px;
    border-bottom: 1px solid var(--tcs-gray);
}

.tcs-submenu-item:last-child {
    border-bottom: none;
}

.tcs-submenu-link {
    color: var(--tcs-dark);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    transition: all 0.3s ease;
}

.tcs-submenu-link:hover {
    color: var(--tcs-primary);
    padding-left: 5px;
}

.tcs-primary-btn {
    background: linear-gradient(135deg, var(--tcs-primary), var(--tcs-primary-light));
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.tcs-primary-btn:hover {
    background: linear-gradient(135deg, var(--tcs-primary-light), var(--tcs-primary));
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(144, 117, 97, 0.3);
}

.tcs-mobile-toggle {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 1001;
}

.tcs-mobile-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--tcs-dark);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.tcs-mobile-toggle.tcs-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.tcs-mobile-toggle.tcs-active span:nth-child(2) {
    opacity: 0;
}

.tcs-mobile-toggle.tcs-active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .tcs-nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.5s ease;
        overflow-y: auto;
    }
    
    .tcs-nav-list.tcs-active {
        right: 0;
    }
    
    .tcs-nav-element {
        margin: 15px 0;
        width: 100%;
    }
    
    .tcs-nav-anchor {
        padding: 10px 0;
        display: block;
    }
    
    .tcs-submenu-content {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .tcs-has-submenu.tcs-active .tcs-submenu-content {
        max-height: 500px;
        margin-top: 10px;
        padding-left: 15px;
    }
    
    .tcs-submenu-item {
        padding: 10px 0;
        border-bottom: none;
    }
    
    .tcs-mobile-toggle {
        display: block;
    }
    
    .tcs-primary-btn {
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .tcs-nav-wrapper {
        height: 70px;
    }
    
    .tcs-logo-link {
        font-size: 1.5rem;
    }
}