  /* Base styles */
:root {
    --primary-color: #25d366;
    --accent-color: #ff9900;
    --bg-dark: rgba(0, 0, 0, 0.3);
    --text-light: #fff;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: Arial, sans-serif; }
body { overflow-x: hidden; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    background: var(--bg-dark);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    z-index: 1000;
}
.navbar .logo { flex-shrink: 0; }

/* Company Name - 26px on Desktop + Super Bold */
.navbar .company-name {
    font-size: 26px;
    font-weight: 900;
    color: red;
    text-align: center;
    flex-grow: 1;
}

.navbar .nav-menu {
    display: flex;
    gap: 20px;
    list-style: none;
    flex-shrink: 0;
}
.navbar .nav-menu li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}
.navbar .nav-menu li a:hover {
    color: var(--accent-color);
}

.logo-img {
    height: 50px;
    width: auto;
    background-color: #fff;
    border-radius: 50%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.5s ease;
    opacity: 0;
}
.logo-img[src] { opacity: 1; }
.navbar .logo:hover .logo-img { transform: rotate(360deg); }
.logo-img:not([src]) {
    display: inline-block;
    background-color: #ccc;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    opacity: 1;
}

/* Hamburger Icon */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--text-light);
    z-index: 1100;
}

/* Mobile Menu - Premium Features */
.menu {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100vh;
    background: var(--bg-dark);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: left 0.4s ease;
    z-index: 1100;
}
.menu.active { left: 0; }

.menu .mobile-header {
    text-align: center;
    margin-bottom: 20px;
}

.menu .mobile-logo img {
    height: 65px;
    border-radius: 50%;
    background: white;
    margin-bottom: 12px;
}

.menu .mobile-company-name {
    font-size: 23px;
    font-weight: 900;
    color: red;
    margin-bottom: 18px;
}

/* White Separator Line */
.menu .separator {
    width: 80%;
    height: 2px;
    background: white;
    margin: 0 0 25px;
    opacity: 0.8;
}

/* Menu Links - Bigger, Touch-Friendly with Icons */
.menu a {
    color: var(--text-light);
    font-size: 18px;
    padding: 15px 20px;
    border-radius: 10px;
    text-decoration: none;
    width: 100%;
    text-align: center;
    transition: background 0.3s, color 0.3s, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 12px;
}
.menu a i {
    font-size: 22px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}
.menu a:hover {
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(8px);
}
.menu a:hover i {
    color: var(--accent-color);
}

/* Overlay */
.menu-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 1000;
}
.menu.active + .menu-overlay {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.heroTheCompany {
    background: url("pictures/furniture.webp") center/cover no-repeat;
    height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    width: 100%;
}
.heroTheCompany::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.heroContentTheCompany {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}
.heroContentTheCompany h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    margin-top: 0.5px;
}
.heroContentTheCompany p {
    font-size: 1.2rem;
}

/* Social Share Menu */
.click_menu {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}
.click_menu .toggle {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    text-align: center;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    will-change: transform;
}
.click_menu .toggle:hover { transform: rotate(360deg); }
.click_menu ul {
    list-style: none;
    position: absolute;
    bottom: 60px;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 10px;
}
.click_menu.active ul { display: flex; }
.click_menu ul li {
    background: var(--clr);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.click_menu ul li:hover { transform: scale(1.2); }
.click_menu ul li a { color: var(--text-light); font-size: 20px; }

/* Footer - Enhanced Design */
.footer-section {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #e0e0e0;
    padding: 80px 20px 40px;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #ff9900, #25d366, #ff9900);
    box-shadow: 0 4px 10px rgba(255, 153, 0, 0.4);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    text-align: left;
}

.footer-brand h2 {
    font-size: 2.2rem;
    color: #ff0202;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-brand p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #bbb;
    margin-bottom: 20px;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    font-size: 1.5rem;
    color: #25d366;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    font-weight: 600;
}

.footer-links h3::after,
.footer-contact h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 70px;
    height: 4px;
    background: #ff9900;
    border-radius: 2px;
    box-shadow: 0 2px 6px rgba(255, 153, 0, 0.5);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 14px;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: #25d366;
    padding-left: 10px;
    text-shadow: 0 0 8px rgba(37, 211, 102, 0.4);
}

.footer-contact p {
    margin-bottom: 18px;
    font-size: 1.1rem;
    color: #ccc;
}

.footer-contact a {
    color: #ff9900;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #25d366;
    text-shadow: 0 0 8px rgba(37, 211, 102, 0.4);
}

/* Social Icons */
.footer-social h3 {
    text-align: left;
}

.social-icons {
    display: flex;
    gap: 25px;
    margin-top: 20px;
    justify-content: flex-start;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: #333;
    color: #fff;
    font-size: 1.8rem;
    border-radius: 50%;
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.social-icons a:hover {
    background: #25d366;
    transform: translateY(-8px) scale(1.15);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.5);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 50px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 1rem;
    color: #888;
}

#copyright-year {
    color: #ff9900;
    font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .navbar {
        padding: 10px;
    }
    .navbar .company-name {
        font-size: 22px;
        font-weight: 900;
    }
    .hamburger {
        display: block;
    }
    .navbar .nav-menu {
        display: none;
    }

    .heroTheCompany {
        height: 50vh;
    }
    .heroContentTheCompany h2 {
        font-size: 2rem;
    }
    .heroContentTheCompany p {
        font-size: 1rem;
    }
    .click_menu {
        bottom: 15px;
        right: 15px;
    }
    .click_menu .toggle {
        width: 40px;
        height: 40px;
    }
    .click_menu ul li {
        width: 35px;
        height: 35px;
    }
    .logo-img {
        height: 35px;
    }

    .footer-section {
        padding: 60px 20px 40px;
        margin-top: 80px;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }
    .social-icons {
        justify-content: flex-start;
        gap: 20px;
    }
    .social-icons a {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
    .footer-links ul li a:hover {
        padding-left: 8px;
    }
}

@media (max-width: 480px) {
  .menu {
    width: 220px;
    padding: 8px 5px;
  }

  .menu .mobile-logo img {
    height: 50px;
    margin-bottom: 5px;
  }

  .menu .mobile-company-name {
    font-size: 18px ;
    margin-bottom: 10px;
  }

  .menu a {
    font-size: 15px;
    padding: 8px 12px;
    gap: 8px;
  }

  .menu a i {
    font-size: 17px;
  }
}

@media (min-width: 768px) {
    .hamburger { display: none; }
    .navbar .nav-menu { display: flex; }
}