/* Galvenie stili */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

header {
    background: #6200ea;
    color: #fff;
    padding: 1rem;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem;
}

header nav ul li a.active {
    text-decoration: underline;
}

main {
    max-width: 1200px;
    margin: auto;
    padding: 2rem;
}


.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
}

.hero-text {
    max-width: 50%;
}

.hero-text h1 {
    font-size: 2.5rem;
    color: #6200ea;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    background-color: #6200ea;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #3700b3;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}


.features {
    text-align: center;
    margin-bottom: 4rem;
}

.features h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #6200ea;
}

.feature-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1 1 calc(33% - 2rem);
    min-width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.feature-card img {
    max-width: 60px;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #555;
}

/* Kājene */
footer {
    text-align: center;
    background: #6200ea;
    color: white;
    padding: 1rem;
    margin-top: 2rem;
    border-top: 5px solid #3700b3;
}
/* Kalendāra stild */
#calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    max-width: 800px;
    margin: 2rem auto;
    border: 1px solid #ddd;
    padding: 10px;
    background: #fff;
    border-radius: 8px;
}

#calendar div {
    text-align: center;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
}

#calendar div:hover {
    background-color: #f0f0f0;
}


.add-event {
    max-width: 500px;
    margin: 2rem auto;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.add-event form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.add-event form label {
    font-weight: bold;
}

.add-event form input, .add-event form button {
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.add-event form button {
    background-color: #6200ea;
    color: #fff;
    cursor: pointer;
}

.add-event form button:hover {
    background-color: #3700b3;
}
.add-note, .notes-list {
    max-width: 600px;
    margin: 2rem auto;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.add-note h2, .notes-list h2 {
    color: #6200ea;
    text-align: center;
}

textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: none;
}

.note {
    background: #f9f9f9;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.note h3 {
    margin: 0 0 0.5rem;
    color: #333;
}

.note small {
    display: block;
    margin-top: 1rem;
    color: #777;
}

.feature-card-link {
    text-decoration: none;
    color: inherit;
}

/* Pievieno efektu */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}
#calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    max-width: 800px;
    margin: 2rem auto;
    padding: 10px;
    background: #fff;
    border-radius: 8px;
}

.calendar-cell {
    text-align: center;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.calendar-cell:hover {
    background-color: #f0f0f0;
}

.event-cell {
    background-color: #e3f2fd;
    border-color: #64b5f6;
    color: #1e88e5;
    font-weight: bold;
}

.event-cell:hover {
    background-color: #bbdefb;
}
.add-reminder, .reminders-list {
    max-width: 600px;
    margin: 2rem auto;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.add-reminder h2, .reminders-list h2 {
    color: #6200ea;
    text-align: center;
}

textarea, input[type="text"], input[type="date"] {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.reminder {
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.reminder h3 {
    margin: 0 0 0.5rem;
}

.reminder .toggle-status {
    background-color: #6200ea;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.reminder .toggle-status:hover {
    background-color: #3700b3;
}
.add-meeting, .meetings-list {
    max-width: 600px;
    margin: 2rem auto;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.meeting {
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.meeting h3 {
    margin: 0 0 0.5rem;
}
