/*
Theme Name: AlKhaleejSolars Clone
Theme URI: https://alkhaleejsolars.com/
Description: A custom WordPress theme cloned from AlKhaleejSolars.
Author: Manus
Version: 1.0.0
Text Domain: alkhaleejsolars
*/

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.btn-orange {
    background: #f37021;
    color: #fff;
}

.btn-yellow {
    background: #ffc107;
    color: #fff;
}

/* Hero Section */
.hero {
    background: url('assets/images/hero-bg.jpg') no-repeat center center/cover;
    padding: 100px 0;
    color: #fff;
    display: flex;
    align-items: center;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 50px 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
