/* ===== DROPDOWN MENUS ===== */
.nav-item {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: #FFFFFF;
    box-shadow: var(--shadow-lg);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    border-top: 3px solid var(--gold-primary);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: var(--text-medium);
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    text-decoration: none;
}

.dropdown-item:hover {
    background-color: var(--bg-cream-light);
    color: var(--gold-primary);
    padding-left: 25px;
}

/* ===== SIDE CANVAS ===== */
.side-canvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(3px);
}

.side-canvas-overlay.open {
    opacity: 1;
    visibility: visible;
}

.side-canvas {
    position: fixed;
    top: 0;
    right: -450px;
    /* Hidden by default */
    width: 400px;
    height: 100%;
    background: #FFFFFF;
    z-index: 1002;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.side-canvas.open {
    right: 0;
}

.canvas-header {
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.canvas-close-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.canvas-close-btn:hover {
    background: var(--gold-primary);
    color: #FFF;
    transform: rotate(90deg);
}

.canvas-content {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.canvas-about-text {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-top: 20px;
}

.canvas-section-title {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.canvas-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold-primary);
}

.canvas-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.canvas-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--text-medium);
    font-size: 14px;
}

.canvas-contact-item i {
    color: var(--gold-primary);
    margin-top: 5px;
}

.canvas-social {
    display: flex;
    gap: 15px;
}

.canvas-social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.canvas-social-link:hover {
    background: var(--gold-primary);
    color: #FFF;
    border-color: var(--gold-primary);
}

@media (max-width: 576px) {
    .side-canvas {
        width: 100%;
        right: -100%;
    }
}

/* ===== MODERN FOOTER 2 ===== */
.footer-modern-2 {
    background-color: #EFE7D1;
    /* Light beige/cream color from image */
    padding: 80px 0 40px;
    color: #3f3b37;
    /* Dark brown text */
    font-family: var(--font-primary);
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
    min-width: 160px;
}

.logo-col {
    flex: 1.5;
    /* Logo column slightly wider */
}

.footer-logo-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    color: #3f3b37;
    text-decoration: none;
    width: 260px;
        max-width: 100%;
}

.footer-logo-link img {
    width: 100%;
    height: auto;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: #755429;
    /* Gold/Brown for headers */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.footer-address,
.footer-email,
.footer-phone {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #3f3b37;
    font-family: 'Effra', sans-serif;
    font-weight: 400;
}

.footer-links-list {
    list-style: none;
    padding: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    font-size: 14px;
    color: #3f3b37;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Effra', sans-serif;
    font-weight: 400;
}

.footer-links-list a:hover {
    color: #755429;
}

.footer-bottom-row {
    border-top: 1px solid rgba(74, 60, 42, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-text {
    font-size: 12px;
    color: #6B5A45;
    font-weight: 500;
}

.footer-social-links {
    display: flex;
    gap: 40px;
}

.footer-social-links a {
    font-size: 12px;
    color: #6B5A45;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-social-links a:hover {
    color: #755429;
}

@media (max-width: 992px) {
    .footer-top-row {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-top-row {
        flex-direction: column;
    }

    .footer-col {
        width: 100%;
    }

    .footer-bottom-row {
        flex-direction: column;
        text-align: center;
    }
    .footer-social-links {
    flex-wrap: wrap;
    gap: 10px;
}
}

/* Mobile Navigation in Side Canvas */
.mobile-only-nav {
    display: none;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 20px;
}

@media (max-width: 992px) {
    .mobile-only-nav {
        display: block;
    }
}

.canvas-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.canvas-nav-item {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    padding: 5px 0;
}

.canvas-nav-item.has-dropdown {
    display: flex;
    flex-direction: column;
}

.canvas-nav-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.canvas-dropdown-menu {
    display: none;
    /* Hidden by default */
    flex-direction: column;
    padding-left: 20px;
    margin-top: 10px;
    gap: 10px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.canvas-dropdown-menu.open {
    display: flex;
}

.canvas-dropdown-menu a {
    font-size: 14px;
    color: var(--text-medium);
    text-decoration: none;
    text-transform: capitalize;
    padding: 5px 0;
    display: block;
}