/* --- SHARED STYLES (style.css) --- */
@font-face {
    font-family: 'GFS Neohellenic';
    src: url('GFSNeohellenic-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'GFS Neohellenic', sans-serif;
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    color: #222;
}

/* --- HEADER --- */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    padding: 10px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #222;
}

.header-logo-img { height: 60px; width: auto; }
.name-brand { display: flex; align-items: center; gap: 15px; font-size: 2rem; }
.separator { width: 2px; height: 35px; background-color: #ffd700; }
.photography-text { color: #ffd700; }

.nav-links { display: flex; gap: 30px; }
.nav-link {
    color: #222;
    text-decoration: none;
    font-size: 1.6rem;
    transition: color 0.3s;
}
.nav-link:hover, .nav-link.active { color: #ffd700; }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* --- SIDE MENU --- */
.side-menu {
    position: fixed;
    top: 0; right: -300px;
    width: 300px;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.77,0,0.175,1);
    display: flex;
    flex-direction: column;
    padding: 40px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

.side-menu.open { right: 0; }

.close-menu {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    margin-bottom: 40px;
}

.side-nav-link {
    text-decoration: none;
    color: #222;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: color 0.3s;
}

/* --- MOBILE SHARED --- */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    header { padding: 10px 20px; }
    .name-brand { font-size: 1.4rem; gap: 8px; }
    .header-logo-img { height: 40px; }
}