/* ===== GLOBAL ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background-color: #f6f1ea;
    color: #4a4036;
    line-height: 1.8;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* ===== NAVBAR ===== */

nav {
    width: 100%;
    padding: 25px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.3rem;
    letter-spacing: 3px;
    font-weight: bold;
    text-transform: uppercase;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav a {
    text-decoration: none;
    color: #4a4036;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: 1s ease;
}

nav a:hover {
    color: #b79b7d;
}

.current-page {
    display: none;
}

/* ===== FOOTER ===== */

footer {
    background-color: #e8ddd0;
    padding: 50px 30px;
    text-align: center;
}

footer p {
    font-family: 'Times New Roman', Times, serif;
    font-size: small;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: bold;
    color: #5f5448;
}

.email-link {
    background: none;
    appearance: none;
    -webkit-appearance: none;
    font-family: inherit;
    color: inherit;
    text-transform: inherit;
    letter-spacing: inherit;
    cursor: pointer;
    border: 1px solid #5f5448;
    padding: 8px 16px;
    margin-top: 8px;
    border-radius: 4px;
    transition: background-color 1s ease;
}

.email-link:hover {
    background-color: #5f5448;
    color: #e8ddd0;
}

