﻿:root {
    --header-bg: rgb(37 99 235 / var(--tw-bg-opacity, 1)); /* Background color */
    --title-color: #FFD54F; /* Goldish title color */
    --title-size: 22px; /* Title font size */
    --nav-size: 16px; /* Navigation font size */
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

/* Header container */
.header {
    background-color: var(--header-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
}

/* Title with icon */
.header-title {
    font-family: 'Playfair Display', serif;
    font-size: var(--title-size);
    font-weight: 600;
    color: var(--title-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

    .header-title img {
        width: calc(var(--title-size) * 1.1);
        height: calc(var(--title-size) * 1.1);
    }

/* Navigation */
.header-nav {
    display: flex;
    gap: 25px;
}

    .header-nav a {
        font-family: 'Playfair Display', serif;
        font-size: var(--nav-size);
        text-decoration: none;
        color: white;
        font-weight: 500;
        letter-spacing: 0.5px;
        transition: opacity 0.3s ease, transform 0.2s ease;
    }

        .header-nav a:hover {
            opacity: 0.8;
            transform: translateY(-1px);
        }
