/* =========================
   ESSAMS STORE - MAIN STYLES
   Theme: Blue • Green • White
========================= */

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

:root {
    --primary-blue: #0077b6;
    --primary-green: #00b894;
    --dark-blue: #023e8a;
    --light-bg: #f4fbff;
    --white: #ffffff;
    --text-dark: #1f2d3d;
}

/* BODY */
body {
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
}

/* ================= HEADER ================= */

header {
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    padding: 15px 0;
}

.header-container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    color: var(--white);
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: #e0f7fa;
}

nav a.active {
    border-bottom: 3px solid white;
    padding-bottom: 5px;
}

/* DROPDOWN */

.dropdown {
    position: relative;
    margin-left: 25px;
}

.dropbtn {
    background: transparent;
    color: white;
    border: none;
    font-weight: 500;
    cursor: pointer;
    font-size: 16px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 180px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    border-radius: 6px;
    overflow: hidden;
    top: 35px;
}

.dropdown-content a {
    color: var(--text-dark);
    padding: 12px 15px;
    display: block;
    text-decoration: none;
    transition: 0.3s;
}

.dropdown-content a:hover {
    background-color: var(--light-bg);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* ================= HERO ================= */

.about-hero {
    height: 300px;
    background: linear-gradient(rgba(0,119,182,0.8), rgba(0,184,148,0.8)),
                url("../Images/1.jpg") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.about-hero-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.about-hero-content p {
    font-size: 18px;
}

/* ================= ABOUT CONTENT ================= */

.about-content {
    width: 85%;
    margin: 70px auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 28px;
}

.about-text p {
    margin-bottom: 15px;
}

.about-image img {
    width: 400px;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.15);
}

/* ================= WHAT WE OFFER ================= */

.about-focus {
    background-color: white;
    padding: 70px 0;
    text-align: center;
}

.about-focus h2 {
    color: var(--primary-blue);
    margin-bottom: 40px;
    font-size: 30px;
}

.focus-cards {
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.focus-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 12px;
    width: 280px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.focus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.focus-card i {
    font-size: 40px;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.focus-card h3 {
    margin-bottom: 10px;
}

/* ================= FOOTER ================= */

footer {
    background: var(--dark-blue);
    color: white;
    padding-top: 50px;
}

.footer-container {
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-section h3 {
    margin-bottom: 15px;
    color: var(--primary-green);
}

.footer-section p,
.footer-section a {
    color: white;
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--primary-green);
}

.social-links a {
    margin-right: 12px;
    font-size: 18px;
    color: white;
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    background: #012a5c;
    font-size: 14px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        width: 100%;
        max-width: 400px;
    }

    nav {
        flex-wrap: wrap;
    }
}