body {

    font-family: 'Poppins', Verdana, sans-serif;

    margin: 0;

    background: linear-gradient(180deg, #fff0f6, #ffe4ef);

    color: #333;

}

/* NAVBAR */

nav {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 15px 40px;

    background: linear-gradient(90deg, #ff4da6, #ff85c1);

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

}

nav h2 {

    color: white;

    letter-spacing: 1px;

}

nav ul {

    display: flex;

    list-style: none;

    gap: 25px;

    margin: 0;

    padding: 0;

}

nav a {

    color: white;

    text-decoration: none;

    font-weight: 600;

    position: relative;

}

/* underline hover efekt */

nav a::after {

    content: "";

    position: absolute;

    width: 0%;

    height: 2px;

    left: 0;

    bottom: -5px;

    background: white;

    transition: 0.3s;

}

nav a:hover::after {

    width: 100%;

}

/* HERO */

.hero {

    min-height: 65vh;

    display: grid;

    place-items: center;

    text-align: center;

    background: linear-gradient(180deg, #ff99cc, #ff66b2);

    color: white;

    padding: 40px 20px;

}

.hero h1 {

    font-size: 2.7rem;

    margin-bottom: 10px;

}

.hero p {

    max-width: 600px;

    line-height: 1.6;

}

.hero button {

    background: white;

    color: #ff4da6;

    border: none;

    border-radius: 25px;

    padding: 12px 30px;

    margin-top: 20px;

    cursor: pointer;

    font-weight: bold;

    transition: all 0.3s ease;

}

/* button hover */

.hero button:hover {

    background: #ff4da6;

    color: white;

    transform: translateY(-2px);

}

/* GRID */

.grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));

    gap: 25px;

    padding: 40px;

}

.card {

    background: linear-gradient(135deg, #ff66b2, #ff85c1);

    padding: 25px;

    border-radius: 15px;

    color: white;

    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);

    transition: all 0.3s ease;

}

.card:hover {

    transform: translateY(-5px) scale(1.03);

}

/* FLEX */

.flex {

    display: flex;

    gap: 20px;

    padding: 30px;

}

.flex div {

    flex: 1;

    background: white;

    padding: 25px;

    border-radius: 12px;

    text-align: center;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);

}

/* CONTAINER */

.container {

    padding: 40px;

    max-width: 1000px;

    margin: auto;

}

/* BUTTON GENERAL (za about stranicu) */

button {

    background: #ff4da6;

    color: white;

    border: none;

    padding: 10px 20px;

    border-radius: 20px;

    cursor: pointer;

    transition: 0.3s;

}

button:hover {

    background: #e60073;

}

/* RESPONSIVE */

@media (max-width: 600px) {

    nav {

        flex-direction: column;

        gap: 10px;

    }

    .flex {

        flex-direction: column;

    }

    .hero h1 {

        font-size: 2rem;

    }

}

/* PRINT */

@media print {

    nav,

    button {

        display: none;

    }

    body {

        background: white;

    }

}