/*
Theme Name: My Custom Theme
Author: Your Name
Version: 1.0
*/

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f5f7fa;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar a {
    text-decoration: none;
    color: #333;
    margin-left: 20px;
}

/* HERO */
.hero {
    height: 80vh;
    background: linear-gradient(120deg, #4facfe, #00f2fe);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin: 0;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* CONTENT */
.container {
    padding: 40px;
}
/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
}

.logo {
    font-weight: bold;
}

/* MENU */
.menu-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-list li {
    margin-left: 20px;
}

.menu-list a {
    text-decoration: none;
    color: #333;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
    .menu {
        display: none;
        position: absolute;
        top: 70px;
        right: 20px;
        background: white;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .menu-list {
        flex-direction: column;
    }

    .menu-list li {
        margin: 10px 0;
    }

    .menu-toggle {
        display: block;
    }

    .menu.active {
        display: block;
    }
}
/* BUTTON */
.btn {
    display: inline-block;
    background: #4facfe;
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    margin-top: 20px;
}

/* HERO */
.hero {
    height: 80vh;
    background: linear-gradient(120deg, #4facfe, #00f2fe);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

/* FEATURES */
.features {
    background: white;
    padding: 60px 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature {
    background: #f5f7fa;
    padding: 20px;
    border-radius: 10px;
}

/* ABOUT */
.about {
    padding: 60px 20px;
    background: #eef3f8;
}

/* CTA */
.cta {
    background: #333;
    color: white;
    text-align: center;
    padding: 60px 20px;
}
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2rem;
    }
}