@font-face {
    font-family: 'QuicksandBold';
    src: url('../fonts/Quicksand_Bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
:root {
    --logo-font: 'QuicksandBold', Arial, sans-serif;
    --text-font: 'Nunito', Arial, sans-serif;
}
html {
    height: 100%;
}

body {
    font-family: var(--text-font);
    margin: 0;
    padding: 0;
    height: 100%;
}

header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    padding: 0 30px;
    display: flex;
    align-items: center;
    height: 60px;
    position: sticky;
    top: 0;
    z-index: 100;
    justify-content: space-between;
}
.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.container {
    min-height: 100vh;
}
.logo {
    font-size: 24px;
    font-weight: bold;
    margin-right: 40px;
    font-family: var(--logo-font);
}

nav {
    display: flex;
    gap: 50px;
    flex: 1;
    justify-content: center;
}
.main-content {
    flex: 1;
}
nav a {
    text-decoration: none;
    color: #222;
    font-size: 18px;
    padding-bottom: 2px;
    position: relative;
    border-bottom: 2px solid transparent;
    transition: color 0.3s, border-bottom 0.3s;
}
nav a:hover {
    border-bottom: 2px solid #7371FC;
}

nav a.active {
    font-weight: bold;
    border-bottom: 2px solid #7371FC;
}


.header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

.header-icon {
    width: 36px;
    height: 36px;
    background: #B8B8FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    position: relative;
    line-height: 1;
    user-select: none;
}

.header-icon.bell {
    background: #B8B8FF;
}

.burger-icon {
    font-size: 24px;
    width: 36px;
    height: 36px;
    background: #B8B8FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    line-height: normal;
}

.burger-icon span {
    position: relative;
    top: 2px;
    display: inline-block;
}

.burger-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 260px;
    height: 100%;
    background: white;
    box-shadow: -2px 0 10px rgba(0,0,0,0.15);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s ease;

}

.burger-menu.open {
    right: 0;
    transform: translateX(0);
}

.burger-menu a {
    text-decoration: none;
    color: #222;
    font-size: 18px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    align-self: flex-end;
    cursor: pointer;
    background-color: #a195df;
}

.burger-menu a.responsive-only {
    display: none;
}

@media (max-width: 750px) {
    .burger-menu a.responsive-only {
        display: block;
    }
    .nav-links {
        display: none;
    }

}

footer {
    background: #f8f8f8;
    text-align: center;
    padding: 10px 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 24px;
}

.footer-brand {
    font-size: 1.15em;
    margin-bottom: 0.3em;
}

.footer-emoji {
    font-size: 1.2em;
    vertical-align: middle;
}

.footer-logo {
    font-family: var(--logo-font);
    color: #7371FC;
    vertical-align: middle;
    margin-left: 4px;
}

.footer-links {
    color: #000000;
    font-size: 0.98em;
}

.footer-links a {
    color: #a195df;
    text-decoration: underline;
    margin: 0 6px;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #7371FC;
}

button {
    background-color: #a195df;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
}

button:hover {
    background-color: #8b7ae0;
    box-shadow: 0 4px 10px rgba(139, 122, 224, 0.6);
}
.modal {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(0, 0, 0, 0.5);
}
.modal.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    margin: 10% auto;
    padding: 30px 20px 20px 20px;
    border-radius: 10px;
    width: 320px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    position: relative;
    text-align: center;
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.modal.open .modal-content {
    transform: scale(1);
    opacity: 1;
}

.close {
    color: #333;
    position: absolute;
    right: 16px;
    top: 8px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #000;
}

.modal-content input[type="text"],
.modal-content input[type="email"],
.modal-content input[type="password"] {
    width: 90%;
    padding: 8px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.modal-content button[type="submit"] {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 16px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.modal-content button[type="submit"]:hover {
    background: #555;
}
