/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Faustina', serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: #4d5153;
}

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

/* Top Bar */
.westcotts-top-bar {
    background-color: #4d5153;
    color: #ecebe9;
    padding: 12px 0;
    font-size: 16px;
}

.westcotts-contact-info {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.westcotts-contact-info a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ecebe9;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.westcotts-contact-info a:hover {
    opacity: 0.8;
}

.westcotts-contact-info i {
    font-size: 14px;
}

/* Navigation */
.westcotts-nav {
    background-color: #ecebe9;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.westcotts-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.westcotts-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.westcotts-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.westcotts-logo img {
    height: 65px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.westcotts-logo a:hover img {
    transform: scale(1.05);
}

.westcotts-nav-items {
    display: flex;
    align-items: center;
    gap: 40px;
}

.westcotts-nav-link {
    text-decoration: none;
    color: #4d5153;
    font-weight: 500;
    font-size: 18px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.westcotts-nav-link:hover {
    color: #af8c59;
}

.westcotts-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #af8c59;
    transition: width 0.3s ease;
}

.westcotts-nav-link:hover::after {
    width: 100%;
}

.westcotts-contact-btn {
    background-color: #af8c59;
    color: #ecebe9;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    line-height: 1;
    box-shadow: 0 2px 5px rgba(175, 140, 89, 0.3);
    transition: all 0.3s ease;
}

.westcotts-contact-btn:hover {
    background-color: #c4a470;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(175, 140, 89, 0.4);
}

.westcotts-contact-btn:active {
    transform: translateY(0);
}

/* Mobile Menu Toggle (hidden on desktop/tablet) */
.westcotts-mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #4d5153;
    cursor: pointer;
    padding: 5px;
}

/* Mobile Navigation (hidden on desktop/tablet) */
.westcotts-mobile-nav {
    display: none;
}

/* Hide top bar on mobile */
@media (max-width: 768px) {
    .westcotts-top-bar {
        display: none;
    }
}

/* Tablet Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .westcotts-container {
        padding: 0 16px;
    }
    
    .westcotts-top-bar {
        font-size: 15px;
    }
    
    .westcotts-contact-info i {
        font-size: 13px;
    }
    
    .westcotts-logo img {
        height: 60px;
    }
    
    .westcotts-nav-items {
        gap: 35px;
    }
    
    .westcotts-nav-link {
        font-size: 17px;
    }
    
    .westcotts-contact-btn {
        padding: 10px 20px;
        font-size: 17px;
    }
}