:root {
    --bg-main: #d0d1d2;
    --bg-panel: #0a1f44;
    --text-main: #ffffff;
    --gold: #f5a623;
    --text-muted: #b5b5b5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-size: "poppins", sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    display: flex;
}

/*SIDEBAR DESKTOP*/
.sidebar {
    width: 260px;
    height: 100vh;
    background: var(--bg-panel);
    padding: 40px 25px;
    position: fixed;
    left: 0;
    top: 0;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 22px;
    font-weight: 700;
}
.logo img {
    width: 36px;
    height: auto;
}

/*NATVIGATION*/
.nav a {
    display: block;
    text-decoration: none;
    color: var(--text-main);
    font-size: 16px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.nav a:hover {
    color: var(--gold);
    transform: translateX(6px);
}

/*QUOTE BUTTON*/
.quote-btn {
    text-decoration: none;
    background: var(--gold);
    color: #000;
    padding: 14px;
    text-align: center;
    border-radius: 12px;
    font-weight: 600;
    transition: transform 0.3s ease;
}
.quote-btn:hover {
    transform: scale(1.05);
}

/*MAIN CONTENT*/
.main {
    margin-left: 260px;
    padding: 70px;
    width: calc(100% - 260px);
}

/* Section spacing */
section {
    margin-bottom: 120px;
}

/* HERO SECTION */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    border-radius: 20px;
     /* Background image */
     background: 
     linear-gradient(
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.85)
     ),
     url("../assets/images/hero\ section\ image.jpg");
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
}
.hero h1 {
    font-size: 48px;
    max-width: 700px;
    margin-bottom: 20px;
}
.hero p {
    font-size: 17px;
    color: var(--gold);
    max-width: 600px;
    line-height: 1.7;
}

/* Hero buttons */
.hero-buttons {
    margin-top: 35px;
}

.btn {
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    margin-right: 15px;
    transition: all 0.3s ease;
}
.btn.primary {
    background: var(--gold);
    color: #000;
}
.btn.secondary {
    border: 1px solid var(--gold);
    color: var(--gold);
}
.btn:hover {
    transform: translateY(-4px);
}

/*  SERVICES  */
.services-section h2, 
.portfolio-section h2, 
.contact-section h2 {
    color: var(--bg-panel);
    margin-bottom: 20px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.service-card {
    background: var(--bg-panel);
    padding: 30px;
    border-radius: 14px;
    transition: transform 0.4s ease;
}
.service-card h3 {
    margin-bottom: 10px;
}
.service-card p {
    color: var(--text-muted);
    font-size: 15px;
}
.service-card:hover {
    transform: translateY(-10px);
}

/* PORTFOLIO GRID */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.portfolio-item {
    background: var(--bg-panel);
    border-radius: 16px;
    overflow: hidden;
}
.portfolio-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
/* Hover Zoom */
.portfolio-item:hover img {
    transform: scale(1.08);
}
/* Text Below Image */
.portfolio-text {
    padding: 14px;
}
.portfolio-text h4 {
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 4px;
}
.portfolio-text p {
    font-size: 13px;
    color: var(--text-muted);
}

/* CONTACT */
.contact-box {
    background: var(--bg-panel);
    padding: 40px;
    border-radius: 16px;
    max-width: 600px;
}
.contact-box p {
    margin-bottom: 15px;
    color: var(--text-muted);
}

/* ANIMATION BASE SATES */
.fade-up {
   opacity: 0; 
   transform: translateY(40px);
   transition: all 0.8s ease;
}
.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}
.fade-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease;
}
.fade-scale.show {
    opacity: 1;
    transform: scale(1);
}

/* SIDEBAR ENTRANCE*/
.sidebar {
    animation: slideIn 1s ease forward;
}
@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}
/* MOBILE LAYOUT */
@media (max-width: 900px) {
    .sidebar {
        z-index: 1200;
    }
    .main {
        position: relative;
        z-index: 1;
    }
    body {
        flex-direction: column;
    }
    /* Hamburger menu */
    .menu-togle {
        display: block;
        position: fixed;
        top: 20px;
        left: 20px;
        font-size: 20px;
        color: var(--gold);
        cursor: pointer;
        z-index: 1100;
    }
    /* Sidebar hidden be default */
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.4s ease;
        width: 240px;
    }
    /* Sidebar active */
    .sidebar.active {
        transform: translateX(0);
    }
    /* Main Content */
    .main {
        margin-left: 0;
        width: 100%;
        padding: 90px 25px 40px;
    }
    /* Hero */
    .hero h1 {
        font-size: 25px;
    }
    .hero h2 {
        font-size: 18px;
    }
    .hero p {
        font-size: 15px;
    }
    .hero-buttons {
        
    }
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-item {
        height: 200px;
    }
    /* Contact */
    .contact-box {
        padding: 25px;
    }
} 
/* Hide hamburger on desktop */
.menu-togle {
    display: none;
}