/* --- 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;
    display: flex;
    flex-direction: column;
    margin: 0;
}

main {
    flex: 1;
}

footer {
    padding: 20px;
    text-align: center;
    width: 100%;
}

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

header.scrolled {
    background: rgba(150, 150, 150, 0.55);
    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: #000;
    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;
    color: #222;
}

/* --- SIDE MENU --- */
.side-menu {
    position: fixed;
    top: 0; right: -150px;
    width: 150px;
    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: 30px;
    align-items: center;         /* ← NEW: Centers children horizontally */
    text-align: center;    
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

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

.close-menu {
    align-self: center;
    background: none;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    margin-bottom: 20px;
    color: #222;
}

.side-nav-link {
    text-decoration: none;
    color: #222;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: color 0.3s;
    width: 100%;                 /* ← Ensures links take full width for centering */
    display: block;              /* ← Makes them behave like block elements */
}

/* --- 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; }
}

/* --- FOOTER STYLES --- */
footer {
    padding: 20px 20px;
    text-align: center;
    font-size: 1rem;
    color: #ffd700;
    opacity: 0.7;
    width: 100%;
}

/* Home-page specific footer style */
.full-screen-main + footer {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
}