/* ========================================
   LAKUM ARTSPACE - PERFECT COMPONENTS
   Complete Redesign - Navigation, Footer, FAB
   ======================================== */

/* ===== UNIVERSAL FONT FAMILY ===== */
* {
    font-family: 'Greta Arabic', 'Greta Text Arabic', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

body {
    font-family: 'Greta Arabic', 'Greta Text Arabic', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

/* ===== HEADER / NAVIGATION ===== */

.lakum-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(246, 246, 235, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(209, 209, 209, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lakum-header__container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.lakum-header__logo {
    flex-shrink: 0;
}

.lakum-logo {
    display: flex;
    align-items: center;
    gap: 0;
    transition: opacity 0.3s ease;
}

.lakum-logo:hover {
    opacity: 0.8;
}

.lakum-logo__left,
.lakum-logo__right {
    height: 50px;
    width: auto;
    display: block;
}

.lakum-logo__left {
    margin-right: -2px;
    /* Remove any gap between parts */
}

.lakum-logo__right {
    margin-left: -2px;
    /* Remove any gap between parts */
}

/* Navigation */

.lakum-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.lakum-nav__list {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 48px);
    list-style: none;
    margin: 0;
    padding: 0;
}

.lakum-nav__item {
    position: relative;
}

.lakum-nav__link {
    font-family: 'Atyp Kido TRIAL', sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #1a1a1a;
    text-decoration: none;
    text-transform: capitalize;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.lakum-nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #1a1a1a;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lakum-nav__link:hover {
    color: #8a7968;
}

.lakum-nav__link:hover::after {
    width: 100%;
}

.lakum-nav__link--active {
    color: #1a1a1a;
    font-weight: 500;
}

.lakum-nav__link--active::after {
    width: 100%;
    background: #1a1a1a;
}

/* Mobile Toggle */

.lakum-header__mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1001;
}

.lakum-header__mobile-icon {
    position: relative;
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

.lakum-header__mobile-icon::before,
.lakum-header__mobile-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

.lakum-header__mobile-icon::before {
    top: -8px;
}

.lakum-header__mobile-icon::after {
    bottom: -8px;
}

.lakum-header__mobile-toggle--active .lakum-header__mobile-icon {
    background: transparent;
}

.lakum-header__mobile-toggle--active .lakum-header__mobile-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.lakum-header__mobile-toggle--active .lakum-header__mobile-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
}

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

.lakum-footer {
    background: #f6f6eb;
    border-top: 1px solid rgba(209, 209, 209, 0.3);
    padding: 80px 0 0;
    margin-top: 120px;
}

.lakum-footer__container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
}

.lakum-footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.lakum-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lakum-footer__logo {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 8px;
}

.lakum-footer__logo-left,
.lakum-footer__logo-right {
    height: 60px;
    width: auto;
    display: block;
}

.lakum-footer__logo-left {
    margin-right: -2px;
}

.lakum-footer__logo-right {
    margin-left: -2px;
}

.lakum-footer__tagline {
    font-family: 'Atyp Kido TRIAL', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #525252;
    line-height: 1.6;
    max-width: 300px;
    text-align: justify;
    text-justify: inter-word;
    margin: 0;
}

.lakum-footer__nav-title {
    font-family: 'Atyp Kido TRIAL', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 0 0 20px 0;
}

.lakum-footer__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lakum-footer__link {
    font-family: 'Atyp Kido TRIAL', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #525252;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.lakum-footer__link:hover {
    color: #1a1a1a;
    transform: translateX(4px);
}

.lakum-footer__social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.lakum-footer__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 26, 0.05);
    border-radius: 50%;
    color: #1a1a1a;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lakum-footer__social-link:hover {
    background: #1a1a1a;
    color: #f6f6eb;
    transform: translateY(-4px);
}

.lakum-footer__bottom {
    border-top: 1px solid rgba(209, 209, 209, 0.3);
    padding: 30px 0;
    text-align: center;
}

.lakum-footer__copyright {
    font-family: 'Atyp Kido TRIAL', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #8a8a8a;
    margin: 0;
}

/* ===== EXPANDABLE FLOATING ACTION BUTTON ===== */

.lakum-contact-fab {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 1050;
}

.lakum-contact-fab__trigger {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.lakum-contact-fab__trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2), 0 6px 12px rgba(0, 0, 0, 0.15);
}

.lakum-contact-fab__icon,
.lakum-contact-fab__close {
    font-size: 24px;
    color: #ffffff;
    transition: all 0.3s ease;
    position: absolute;
}

.lakum-contact-fab__close {
    opacity: 0;
    transform: rotate(-90deg);
}

.lakum-contact-fab--active .lakum-contact-fab__icon {
    opacity: 0;
    transform: rotate(90deg);
}

.lakum-contact-fab--active .lakum-contact-fab__close {
    opacity: 1;
    transform: rotate(0deg);
}

.lakum-contact-fab__menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lakum-contact-fab--active .lakum-contact-fab__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lakum-contact-fab__item {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #f6f6eb;
    border: 1px solid rgba(26, 26, 26, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.lakum-contact-fab__item:hover {
    background: #1a1a1a;
    color: #f6f6eb;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.lakum-contact-fab__item::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    background: #1a1a1a;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 6px;
    font-family: 'Atyp Kido TRIAL', sans-serif;
    font-size: 13px;
    font-weight: 400;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.lakum-contact-fab__item:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Pulse animation */

.lakum-contact-fab__trigger::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.2);
    animation: fabPulse 2s ease-out infinite;
    z-index: -1;
}

@keyframes fabPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

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

/* Tablet */

@media (max-width: 1024px) {
    .lakum-header__container {
        height: 70px;
        padding: 0 30px;
    }
    .lakum-logo__left,
    .lakum-logo__right {
        height: 45px;
    }
    .lakum-nav__list {
        gap: 32px;
    }
    .lakum-nav__link {
        font-size: 14px;
    }
    .lakum-footer__content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .lakum-footer__brand {
        grid-column: 1 / -1;
    }
}

/* Mobile */

@media (max-width: 768px) {
    .lakum-header__container {
        height: 70px;
        padding: 0 20px;
        display: grid;
        grid-template-columns: auto 1fr auto auto;
        gap: 12px;
        align-items: center;
    }
    .lakum-header__mobile-toggle {
        display: flex;
        order: 1;
        margin: 0;
    }
    .lakum-header__logo {
        order: 2;
        justify-self: center;
    }
    .lakum-logo__left,
    .lakum-logo__right {
        height: 40px;
    }
    .lakum-language-switcher {
        order: 3;
        margin: 0;
    }
    .lakum-lang-link {
        padding: 8px 12px;
        font-size: 14px;
    }
    .lakum-lang-text {
        font-size: 13px;
    }
    .lakum-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: #f6f6eb;
        padding: 100px 40px 40px;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        order: 4;
    }
    .lakum-nav--active {
        transform: translateX(0);
    }
    .lakum-nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    .lakum-nav__item {
        width: 100%;
        border-bottom: 1px solid rgba(209, 209, 209, 0.2);
    }
    .lakum-nav__link {
        display: block;
        padding: 20px 0;
        font-size: 18px;
    }
    .lakum-footer {
        padding: 60px 0 0;
        margin-top: 80px;
    }
    .lakum-footer__content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }
    .lakum-footer__brand {
        grid-column: 1;
    }
    .lakum-contact-fab {
        bottom: 24px;
        right: 24px;
    }
    .lakum-contact-fab__trigger {
        width: 56px;
        height: 56px;
    }
    .lakum-contact-fab__icon,
    .lakum-contact-fab__close {
        font-size: 22px;
    }
    .lakum-contact-fab__item {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    .lakum-contact-fab__menu {
        bottom: 70px;
    }
}

/* Small Mobile */

@media (max-width: 480px) {
    .lakum-header__container {
        height: 60px;
        padding: 0 20px;
    }
    .lakum-logo__left,
    .lakum-logo__right {
        height: 40px;
    }
    .lakum-nav {
        max-width: 100%;
        padding: 80px 30px 30px;
    }
    .lakum-footer {
        padding: 50px 0 0;
        margin-top: 60px;
    }
    .lakum-footer__content {
        gap: 30px;
        padding-bottom: 30px;
    }
    .lakum-contact-fab {
        bottom: 20px;
        right: 20px;
    }
    .lakum-contact-fab__trigger {
        width: 52px;
        height: 52px;
    }
    .lakum-contact-fab__icon,
    .lakum-contact-fab__close {
        font-size: 20px;
    }
    .lakum-contact-fab__item {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    .lakum-contact-fab__item::before {
        display: none;
        /* Hide tooltips on very small screens */
    }
}

/* ===== FOOTER LEGAL LINKS ===== */

.lakum-footer__legal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.lakum-footer__legal-link {
    font-size: 0.85rem;
    font-weight: 300;
    color: #8a8a8a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.lakum-footer__legal-link:hover {
    color: #1a1a1a;
}

.lakum-footer__legal-divider {
    color: #d1d1d1;
    font-size: 0.85rem;
}