/*
Theme Name: MyLifeStory
Theme URI: https://mylifestory.com
Author: MyLifeStory
Description: Responsive modern WordPress business theme.
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #1e1e1e;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #0066FF;
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #1e1e1e;
    font-weight: 500;
}

.hero {
    padding: 100px 0;
    background: linear-gradient(to right, #0066FF, #4D94FF);
    color: white;
}

.hero-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

.hero h1 {
    font-size: 52px;
}

.btn-primary {
    background: white;
    color: #0066FF;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin-top: 30px;
    font-weight: 600;
}

.services {
    padding: 80px 0;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.footer {
    background: #0066FF;
    color: white;
    padding: 60px 0;
    text-align: center;
}

@media(max-width: 768px) {
.hero-content {
    grid-template-columns: 1fr;
}

.cards {
    grid-template-columns: 1fr;
}

.hero h1 {
    font-size: 36px;
}

.nav-links {
    display: none;
}
}
