/* Theme: Full */
/* Combined header-full + footer-full styles */
/* Modern & Professional Design */

:root {
    /* ===== FULL THEME COLORS - Provided Palette ===== */
    /* Primary: #e4dcd1 (cream/beige) */
    /* Secondary: #786369 (dusty rose) */
    /* Accent: #e1c178 (gold) */
    /* Dark: #17191e */
    /* Gray: #404040 */
    /* Light: #d7c6cc */
    
    --full-cream: #e4dcd1;
    --full-cream-light: #f5efe7;
    --full-cream-dark: #d4c8bc;
    
    --full-rose: #786369;
    --full-rose-light: #9a8690;
    --full-rose-dark: #5a4b51;
    
    --full-gold: #e1c178;
    --full-gold-light: #edd9a8;
    --full-gold-dark: #c9a555;
    
    --full-dark: #17191e;
    --full-dark-secondary: #252830;
    
    --full-gray: #404040;
    --full-gray-light: #5a5a5a;
    
    --full-pink-light: #d7c6cc;
    --full-pink-light-hover: #e8dde4;
    
    --full-white: #FFFFFF;
    --full-black: #000000;
    
    /* Text colors */
    --full-text-dark: #17191e;
    --full-text-light: #f5efe7;
    --full-text-muted: #786369;
}

/* ===== HEADER STYLES ===== */

body {
    background: var(--full-cream-light);
}

a { 
    color: var(--full-gold);
}

a:hover {
    color: var(--full-rose);
}

/* Header top section */
.header-full .header-top {
    background-color: var(--full-dark);
    color: var(--full-cream);
    padding: 10px 0;
    font-size: 0.9rem;
}

.header-full .header-top,
.header-full .header-top a {
    color: var(--full-cream);
}

.header-full .header-top a:hover {
    color: var(--full-gold);
}

.header-full .header-top .top-nav-menu ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-full .header-top .top-nav-menu ul li a {
    color: rgba(228, 220, 209, 0.85);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    position: relative;
}

.header-full .header-top .top-nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--full-gold);
    transition: width 0.3s ease;
}

.header-full .header-top .top-nav-menu ul li a:hover {
    color: var(--full-cream);
}

.header-full .header-top .top-nav-menu ul li a:hover::after {
    width: 100%;
}

/* Social icons in header top */
.header-full .header-top .social a,
.header-full .header-top .cta-social {
    color: var(--full-cream);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.header-full .header-top .social a:hover,
.header-full .header-top .cta-social:hover {
    color: var(--full-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(225, 193, 120, 0.3);
}

/* Header main section */
.header-full .header-main {
    background-color: var(--full-cream);
    border-bottom: 1px solid var(--full-cream-dark);
    padding: 20px 0;
    box-shadow: 0 2px 20px rgba(23, 25, 30, 0.04);
}

.header-full .header-main .logo img {
    max-width: 200px;
    height: auto;
    transition: transform 0.3s ease;
}

.header-full .header-main .logo img:hover {
    transform: scale(1.02);
}

.header-full .header-main .contact-info {
    display: flex;
    gap: 30px;
    justify-content: flex-end;
}

.header-full .header-main .contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--full-dark);
}

.header-full .header-main .contact-info .contact-item i {
    width: 40px;
    height: 40px;
    background: var(--full-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--full-rose);
    font-size: 16px;
    transition: all 0.3s ease;
}

.header-full .header-main .contact-item a {
    color: var(--full-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header-full .header-main .contact-item a:hover {
    color: var(--full-rose);
}

.header-full .header-main .contact-item a:hover i {
    background: var(--full-rose);
    color: var(--full-white);
    transform: translateY(-2px);
}

/* Header nav section */
.header-full .header-nav {
    background-color: var(--full-white);
    border-top: 1px solid var(--full-cream-dark);
    padding: 0;
}


.header-full .header-nav .main-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.header-full .header-nav .main-nav li a {
    display: block;
    padding: 15px 10px;
    color: var(--full-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
    position: relative;
}

.header-full .header-nav .main-nav li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--full-rose);
    transition: width 0.3s ease;
}

.header-full .header-nav .main-nav li a:hover,
.header-full .header-nav .main-nav li.current-menu-item > a {
    color: var(--full-rose);
    background: rgba(120, 99, 105, 0.08);
}

.header-full .header-nav .main-nav li a:hover::after {
    width: 100%;
}

.header-full .header-nav .offcanvas-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--full-dark);
    padding: 15px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.header-full .header-nav .offcanvas-toggle:hover {
    color: var(--full-rose);
    background: rgba(120, 99, 105, 0.1);
}

.header-full .header-nav .offcanvas-toggle i {
    transition: transform 0.3s ease;
}

.header-full .header-nav .offcanvas-toggle .fa-xmark {
    font-size: 1.2rem;
}

.header-full .header-nav .btn-cta {
    background-color: var(--full-gold);
    color: var(--full-dark);
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-full .header-nav .btn-cta:hover {
    background-color: var(--full-rose);
    color: var(--full-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(120, 99, 105, 0.3);
}

/* Offcanvas styles */
.header-full .offcanvas {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: var(--full-cream);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    z-index: 10001;
    transition: left 0.4s cubic-bezier(0.4, 0.2, 0.2, 1), opacity 0.4s ease;
    overflow-y: auto;
}

.header-full .offcanvas.open,
.header-full .offcanvas.active {
    left: 0;
}

.header-full .offcanvas-content {
    padding: 30px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.header-full .offcanvas-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--full-dark);
    line-height: 1;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.header-full .offcanvas-close:hover {
    background: var(--full-cream);
    color: var(--full-rose);
}

.header-full .offcanvas .logo {
    margin-bottom: 20px;
}

.header-full .offcanvas .logo img {
    max-width: 100%;
    height: auto;
}

.header-full .offcanvas-nav {
    flex: 1;
    padding-top: 10px;
}

.header-full .offcanvas-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-full .offcanvas-nav ul li {
    border-bottom: 1px solid var(--full-cream-dark);
}

.header-full .offcanvas-nav ul li a {
    display: block;
    padding: 16px 0;
    color: var(--full-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.header-full .offcanvas-nav ul li a:hover {
    color: var(--full-rose);
    padding-left: 10px;
}

.header-full .offcanvas-nav ul li.current-menu-item > a {
    color: var(--full-rose);
    font-weight: 600;
}

.header-full .offcanvas-contact {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--full-cream-dark);
}

.header-full .offcanvas-contact .coords {
    color: var(--full-dark);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.header-full .offcanvas-contact .coords i {
    background: var(--full-white);
    color: var(--full-rose);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.header-full .offcanvas-contact .address,
.header-full .offcanvas-contact .phone,
.header-full .offcanvas-contact .email {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.header-full .offcanvas-contact .address i,
.header-full .offcanvas-contact .phone i,
.header-full .offcanvas-contact .email i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--full-white);
    color: var(--full-rose);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin: 0;
}

.header-full .offcanvas-contact .coords a {
    color: var(--full-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-full .offcanvas-contact .address,
.header-full .offcanvas-contact .phone a,
.header-full .offcanvas-contact .email a {
    color: var(--full-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.header-full .offcanvas-contact .coords a:hover {
    color: var(--full-rose);
}

.header-full .offcanvas-contact .phone a:hover,
.header-full .offcanvas-contact .email a:hover {
    color: var(--full-rose);
}

.header-full .offcanvas-contact .coords a:hover i {
    background: var(--full-rose);
    color: var(--full-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(120, 99, 105, 0.3);
}

.header-full .offcanvas-contact .phone a:hover i,
.header-full .offcanvas-contact .email a:hover i {
    background: var(--full-rose);
    color: var(--full-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(120, 99, 105, 0.3);
}

.header-full .offcanvas-social {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--full-cream-dark);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.header-full .offcanvas-social p{
    max-width: 100%;
    width: 100%;
}

.header-full .offcanvas-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--full-white);
    color: var(--full-rose);
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-full .offcanvas-social a:hover {
    background: var(--full-rose);
    color: var(--full-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(120, 99, 105, 0.3);
}

/* Offcanvas Overlay - z-index lower than offcanvas */
.header-full ~ .offcanvas-overlay,
body .offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 888;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

body .offcanvas-overlay.active,
body .offcanvas-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ===== FOOTER STYLES ===== */

/* Footer main container */
.footer-full {
    background-color: var(--full-dark);
    color: var(--full-cream);
    position: relative;
}

.footer-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--full-rose), var(--full-gold), var(--full-rose-light));
}

/* Footer top section */
.footer-full .footer-top {
    padding: 70px 0 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Footer column titles */
.footer-full .title-foot {
    color: var(--full-white);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 14px;
}

.footer-full .title-foot::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--full-gold);
}

/* Footer links */
.footer-full .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-full .footer-links ul li {
    margin-bottom: 12px;
}

.footer-full .footer-links ul li a {
    color: var(--full-pink-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 16px;
}

.footer-full .footer-links ul li a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--full-gold);
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.footer-full .footer-links ul li a:hover {
    color: var(--full-white);
    padding-left: 20px;
}

.footer-full .footer-links ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Footer contact info */
.footer-full .footer-coords .coords .address i,
.footer-full .footer-coords .coords .phone i,
.footer-full .footer-coords .coords .email i {
    color: var(--full-gold);
    font-size: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.footer-full .footer-coords .coords .address span,
.footer-full .footer-coords .coords .phone span,
.footer-full .footer-coords .coords .email {
    color: var(--full-pink-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-full .footer-coords .coords .phone a {
    color: var(--full-pink-light);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-full .footer-coords .coords .email a {
    color: var(--full-pink-light);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-full .footer-coords .coords .phone a:hover,
.footer-full .footer-coords .coords .email a:hover {
    color: var(--full-white);
}

.footer-full .footer-coords .coords .phone a:hover i,
.footer-full .footer-coords .coords .email a:hover i {
    background: var(--full-gold);
    color: var(--full-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(225, 193, 120, 0.3);
}

/* Hours */
.footer-full .footer-coords .coords .hours {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-full .footer-coords .coords .hours i {
    color: var(--full-gold);
    font-size: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-full .footer-coords .coords .hours ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-full .footer-coords .coords .hours ul li {
    color: var(--full-pink-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 4px;
}

.footer-full .footer-coords .coords .hours ul li:last-child {
    margin-bottom: 0;
}

/* Footer social links */
.footer-full .social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-full .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--full-cream);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-full .social a:hover {
    background: var(--full-gold);
    color: var(--full-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 193, 120, 0.35);
}

/* Footer bottom section */
.footer-full .footer-bottom {
    padding: 25px 0;
    background: var(--full-dark-secondary);
}

.footer-full .copyright-text {
    color: var(--full-pink-light);
    font-size: 0.9rem;
}

.footer-full .copyright-figure img{
    max-height: 90px;
    width: auto;
}

/* Footer logo */
.footer-full .footer-logo img {
    max-height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-full .footer-logo img:hover {
    opacity: 1;
}

/* Footer about text */
.footer-full .footer-about {
    color: var(--full-pink-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 15px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 991px) {
    .footer-full .footer-top {
        padding: 50px 0 40px;
    }
    
    .footer-full .footer-title {
        margin-bottom: 18px;
    }
    
    .footer-full .footer-column {
        margin-bottom: 35px;
    }
    
    .header-full .header-main .contact-info {
        display: none;
    }
    
    .header-full .header-nav .main-nav {
        display: none;
    }
}

@media (max-width: 767px) {
    .footer-full .footer-social {
        justify-content: flex-start;
    }
    
    .footer-full .footer-top {
        padding: 40px 0 30px;
    }
    
    .header-full .header-top .top-nav-menu {
        display: none;
    }
    
    .copyright-text {
        text-align: center !important;
    }
}

/* ===== STICKY HEADER ===== */

.header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--full-cream);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-sticky.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.header-sticky .container {
    padding: 12px 0;
}

.header-sticky .logo-sticky img {
    max-height: 50px;
    width: auto;
}

.header-sticky .main-nav-menu-sticky {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.header-sticky .main-nav-menu-sticky li a {
    display: block;
    padding: 12px 18px;
    color: var(--full-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
    position: relative;
}

.header-sticky .main-nav-menu-sticky li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--full-rose);
    transition: width 0.3s ease;
}

.header-sticky .main-nav-menu-sticky li a:hover {
    color: var(--full-rose);
    background: rgba(120, 99, 105, 0.08);
}

.header-sticky .main-nav-menu-sticky li a:hover::after {
    width: 100%;
}

.header-sticky .nav-offcanvas-sticky .offcanvas-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    color: var(--full-dark);
    transition: all 0.3s ease;
}

.header-sticky .nav-offcanvas-sticky .offcanvas-toggle:hover {
    color: var(--full-rose);
    background: rgba(120, 99, 105, 0.1);
}

.header-sticky .btn-cta-sticky {
    background-color: var(--full-gold);
    color: var(--full-dark);
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-sticky .btn-cta-sticky:hover {
    background-color: var(--full-rose);
    color: var(--full-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(120, 99, 105, 0.3);
}

/* Sticky header - hide on mobile, show toggle */
@media (max-width: 991px) {
    .header-sticky .main-nav-menu-sticky {
        display: none;
    }
    
    .header-sticky .nav-offcanvas-sticky {
        display: block;
    }
}

@media (min-width: 992px) {
    .header-sticky .nav-offcanvas-sticky {
        display: none;
    }
}

/* ===== PHONE CALL CTA ===== */

.pxl-phone-call {
    display: flex;
    align-items: center;
	min-width:170px;
}

.pxl-phone-call .pxl-item--inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pxl-phone-call .pxl-item--icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--full-gold);
    border-radius: 50%;
    color: var(--full-dark);
    transition: all 0.3s ease;
}

.pxl-phone-call .pxl-item--icon svg {
    width: 24px;
    height: 24px;
}

.pxl-phone-call .pxl-item--content {
    display: flex;
    flex-direction: column;
}

.pxl-phone-call .pxl-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--full-gray);
    margin-bottom: 2px;
}

.pxl-phone-call .pxl-item--phone a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--full-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.pxl-phone-call:hover .pxl-item--icon {
    background: var(--full-rose);
    color: var(--full-white);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(120, 99, 105, 0.3);
}

.pxl-phone-call:hover .pxl-item--phone a {
    color: var(--full-rose);
}

/* Sticky header phone CTA - smaller version */
.header-sticky .pxl-phone-call.sticky-cta .pxl-item--inner {
    gap: 8px;
}

.header-sticky .pxl-phone-call.sticky-cta .pxl-item--icon {
    width: 40px;
    height: 40px;
}

.header-sticky .pxl-phone-call.sticky-cta .pxl-item--icon svg {
    width: 18px;
    height: 18px;
}

.header-sticky .pxl-phone-call.sticky-cta .pxl-label {
    display: none;
}

.header-sticky .pxl-phone-call.sticky-cta .pxl-item--phone a {
    font-size: 0.9rem;
}

/* Mobile responsive */
@media (max-width: 576px) {
    .pxl-phone-call .pxl-item--icon {
        width: 40px;
        height: 40px;
    }
    
    .pxl-phone-call .pxl-item--icon svg {
        width: 18px;
        height: 18px;
    }
    
    .pxl-phone-call .pxl-label {
        display: none;
    }
    
    .pxl-phone-call .pxl-item--phone a {
        font-size: 0.9rem;
    }
}
