/*
Theme Name: Al-Amer Premium Theme
Theme URI: http://alamerco.net/
Author: Al-Amer Team
Description: Premium Luxury B2B Industrial Theme for Al-Amer Import & Export.
Version: 1.4.0
License: GNU General Public License v2 or later
Text Domain: alamer
*/

/* -------------------------------------------------------------------------
   1. RESET & CORE
   ------------------------------------------------------------------------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Tajawal', 'Cairo', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* -------------------------------------------------------------------------
   2. HEADER (CINEMATIC & STICKY)
   ------------------------------------------------------------------------- */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.site-header.sticky {
    position: fixed;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    max-height: 60px;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: #C8963E;
}

.nav-cta .btn {
    background: #C8963E;
    color: #0D0D0D;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
}

.nav-cta .btn:hover {
    background: #fff;
    transform: translateY(-2px);
}

/* -------------------------------------------------------------------------
   3. TYPOGRAPHY & BUTTONS
   ------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    border: none;
}

.btn-primary {
    background: #C8963E;
    color: #0D0D0D;
}

.btn-outline {
    background: transparent;
    border: 2px solid #C8963E;
    color: #C8963E;
}

.btn-lg {
    padding: 18px 45px;
    font-size: 18px;
}

/* -------------------------------------------------------------------------
   4. FOOTER (PREMIUM DARK)
   ------------------------------------------------------------------------- */
.site-footer {
    background: #0D0D0D;
    color: #999;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-title {
    color: #fff;
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: #C8963E;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #888;
}

.footer-menu a:hover {
    color: #C8963E;
    padding-right: 5px;
}

.footer-contact-list {
    list-style: none;
}

.footer-contact-list li {
    margin-bottom: 15px;
    display: flex;
    gap: 12px;
}

.footer-contact-list i {
    color: #C8963E;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #1A1A1A;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
}

.social-links a:hover {
    background: #C8963E;
    color: #0D0D0D;
}

/* -------------------------------------------------------------------------
   5. MOBILE RESPONSIVENESS
   ------------------------------------------------------------------------- */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
