:root {
    --primary-dark-blue: #003B4E;
    --primary-light-beige: #EAE3D9;
    --text-dark: #333;
    --text-light: #fff;
    --text-body: #555;
    --sale-red: #C00;
    --font-heading: 'Lora', serif;
    --font-body: 'Montserrat', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    line-height: 1.6;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {

    color: var(--text-dark);
    line-height: 1.2;
}

a {
    color: var(--text-dark);
    text-decoration: none;
}

/* Announcement Bar */
.announcement-bar {
    background-color: #003B5C;
    color: var(--text-light);
    text-align: center;
    padding: 8px 0;
    font-size: 0.9rem;
}
.announcement-bar p {
    margin: 0;
}

/* Header */
.main-header {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    background-color: #fff;
}
.logo {
    height: 80px;
}

/* Remove padding from nested navbar */
.main-header .navbar {
    padding: 0;
}

.navbar-nav {
    gap: 15px;
}
.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    padding-bottom: 5px !important;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}
.nav-link:hover {
    border-color: var(--primary-dark-blue);
}
.nav-link.sale {
    color: var(--sale-red) !important;
}

.header-contact {
    gap: 20px;
    font-size: 0.8rem;
}
.header-contact span {
    display: flex;
    align-items: center;
    gap: 5px;
}
.header-contact svg {
    color: var(--primary-dark-blue);
}



/* Intro Section */
.intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.intro h3 {
    font-size: 1.8rem;
    margin-top: 2rem;
}

/* Category Grid */
.category-item {
    position: relative;
    height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
}

.category-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s;
}

.category-item:hover::before {
    background-color: rgba(0, 0, 0, 0.2);
}

.category-item h2 {
    position: relative;
    z-index: 1;
    color: var(--text-light);
    font-size: 2.5rem;
    font-weight: 400;
}


/* Design Studio */
.design-studio-content h4 {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.design-studio h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.design-studio p {
    margin-bottom: 2rem;
}


/* Store Info */
.store-info-content {
    padding: 40px;
    color: var(--text-light);
}


/* Custom Buttons */
.btn {
    padding: 12px 30px;
    font-family: var(--font-body);
    font-weight: 500;
    border-radius: 30px;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-light-beige);
    color: var(--text-dark);
    border-color: var(--primary-light-beige);
}
.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-light-beige);
    border-color: var(--primary-light-beige);
}

.btn-secondary {
    background-color: var(--primary-dark-blue);
    color: var(--text-light);
    border-color: var(--primary-dark-blue);
}
.btn-secondary:hover {
    background-color: #002a38;
    border-color: #002a38;
    color: var(--text-light);
}


/* Footer */
.main-footer {
    color: #555;
    font-size: 0.9rem;
    background-color: #fff;
}
.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}
.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.footer-contact a {
    color: #555;
}
.footer-contact svg {
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}
.footer-nav-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.footer-nav {
    min-width: 150px;
}
.footer-nav strong {
    display: block;
    margin-bottom: 10px;
    color: var(--text-dark);
}
.footer-nav strong a {
     color: var(--text-dark);
}
.footer-nav ul {
    list-style: none;
    padding-left: 0;
}
.footer-nav li {
    margin-bottom: 8px;
}
.footer-nav a {
    color: #555;
}
.footer-nav a.sale {
    color: var(--sale-red);
}

.footer-social strong {
    display: block;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.social-icons a {
    color: var(--text-dark);
    font-size: 1.5rem;
}
.store-hours {
    background-color: var(--primary-light-beige);
    padding: 10px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-dark);
}

/* Dropdown Menu Styling */
.dropdown-menu {
    border: 1px solid #eee;
    border-radius: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}
.dropdown-item {
    padding: 8px 15px;
    font-family: var(--font-body);
    transition: background-color 0.2s, color 0.2s;
}
.dropdown-item:hover, .dropdown-item:focus {
    background-color: var(--primary-light-beige);
    color: var(--text-dark);
}


/* Responsive Adjustments */
@media (min-width: 992px) {
    /* Enable hover for dropdowns on desktop */
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .hero { flex-direction: column; }
    .hero-image { min-height: 300px; }
    .hero-content { text-align: center; }
    .hero-content h1 { font-size: 2.5rem; }
    .category-item { height: 250px; }
}