/* style.css */

/* --- RESET & BASIC SETUP --- */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: #000;
    color: #aaa;
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.6;
    font-size: 16px;
}

a { text-decoration: none; color: inherit; transition: opacity 0.3s; }
a:hover { opacity: 0.7; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 { text-transform: uppercase; font-weight: 300; }
h2, h3 { line-height: 1.1; font-size: 1.5em; }
.text-gold { color: #ffdd00; margin-bottom: 0.2rem; letter-spacing: 1px; }
.text-white-heading { color: #fff;  margin-bottom: 0.5rem; line-height: 1.33; }
p, ul { margin-bottom: 1.33rem; line-height: 1.5; }
ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}
li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1;
}
li::before {
    content: "\262F";
    position: absolute;
    left: 0;
    top: -2px;
    color: #d4af37;
    font-size: 1.2rem;
    font-weight: 400;
}

/* --- HEADER  --- */
header {
    width: 100%;
    background: linear-gradient(to bottom, #e43f2c 0%, #b33227 100%);
    height: 160px;
    display: flex;
    align-items: stretch;
    padding: 0;
    position: relative;
    overflow: hidden; 
}

header::after {
    content: '';
    position: absolute;
    top: 0; 
    right: 0;
    height: 100%;
    width: 80%;
    background-image: url('images/header-foliage.png'); 
    background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.25;
    mix-blend-mode: multiply; 
    z-index: 0;
    pointer-events: none;
}

/* LEFT: LOGO CONTAINER */
.header-left {
    background-color: #e43f2c; 
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.logo {
    width: 110px;
    height: 110px;
    object-fit: cover;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.3));
}

/* CENTER: TITLE */
.header-center {
    background: transparent;
    flex-grow: 1;
    display: flex;
    align-items: center;
    padding-left: 30px; 
    position: relative;
    z-index: 1;
}
.site-title {
    font-size: 1.4rem;
    line-height: 1.2;
    color: #ffdd00;
    letter-spacing: 3px;
    font-weight: 300;
}

/* RIGHT: LANGUAGE SWITCH */
.header-right {
    background-color: rgba(0, 0, 0, 0.33);
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    
    color: #ffdd00;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    transition: background-color 0.3s;
    border-left: 1px solid rgba(0,0,0,0.1);
}

.header-right:hover {
    background-color: rgba(0, 0, 0, 0.4);
    color: #fff;
}

/* --- MOBILE ADJUSTMENT --- */
@media (max-width: 600px) {
    /* HERO ADJUSTMENTS */
    .hero-text { 
        font-size: 1.5rem; 
        left: 5%; 
        right: 5%; 
        padding: 0 20px;
    }

    /* HEADER ADJUSTMENTS */
    header {
        height: 100px;
        flex-wrap: nowrap; 
    }

    .header-left {
        padding: 0 20px;
    }

    .logo {
        width: 60px;
        height: 60px;
    }

    .header-center {
        padding-left: 20px;
    }

    .site-title {
        font-size: 0.85rem;
        letter-spacing: 1px;
        line-height: 1.2;
    }

    .header-right {
        width: 50px;
        font-size: 0.9rem;
    }
}


/* --- HERO --- */
.hero {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 400px;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center; 
}

.hero-overlay .container {
    padding-top: 0;
    padding-bottom: 0;
    width: 100%;
}

.hero-text {
    color: #fff;
    font-size: 2.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.15;
    max-width: 690px;
    text-shadow: 0px 0px 10px rgba(0,0,0,0.5);
    font-weight: 300;
}

/* Mobile adjustment */
@media (max-width: 600px) {
    .hero-text {
        font-size: 1.5rem;
    }
}

/* --- LAYOUT --- */
.container { max-width: 840px; margin: 0 auto; padding: 60px 20px; }
section { margin-bottom: 60px; }
.map-wrapper { max-width: 640px; border: 2px solid #d4af37; margin-bottom: 40px; margin-top: 40px;}
.map-wrapper img { width: 100%; height: auto; display: block; }
.contact-email { color: #d4af37; }

/* --- MOBILE --- */
@media (max-width: 600px) {
    .hero-text { font-size: 1.5rem; left: 5%; right: 5%; }
    .header-content { padding: 0; }
}

/* --- ACCESSIBILITY --- */

/* Remove default ugly outline for mouse users */
:focus:not(:focus-visible) {
    outline: none;
}

/* Add clear gold outline for keyboard users */
:focus-visible {
    outline: 2px solid #ffdd00;
    outline-offset: 4px;
}
