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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    padding: 20px;

}

a {
    color: #222;
}

/* Background Image Setup */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* REPLACE 'your-image-path.jpg' WITH YOUR ACTUAL IMAGE FILE */
    background-image: url('../images/bg.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(8px); /* Adjust blur intensity here */
    transform: scale(1.1); /* Prevents white edges caused by blurring */
    z-index: -2;
}

/* Dark overlay to make text pop regardless of the background image brightness */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Black tint with 40% opacity */
    z-index: -1;
}

/* Navigation */
nav {
    max-width: 800px;
    margin: 0 auto 10px auto;
    text-align:center;
}

.home-link {
    text-decoration: none;
    color: #ffffff;
    opacity:0.6;
    font-weight: bold;
    font-size: 0.9rem;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.home-link:hover {
    color: #03C03C;
    opacity:1;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255,255,255,.8);
    padding: 40px;
    border-top: 10px solid #03C03C; /* Accent Color */
    box-shadow: 0 6px 10px rgba(0,0,0,0.2);
}

/* Header */
header {
    border-bottom: 2px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

h1 {
    font-size: 2.5rem;
    color: #222;
}

.subtitle {
    font-size: 1.2rem;
    color: #03C03C; /* Accent Color */
    font-weight: 600;
}

/* Sections */
.section {
    margin-bottom: 30px;
    border:5px;
}

.section-title {
    font-size: 1.5rem;
    color: #222;
    border-left: 5px solid #03C03C; /* Accent Color */
    padding-left: 15px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content {
    margin-bottom:10px;
    padding:10px;
    border:1px solid;
    border-radius:20px;
    background: rgba(255,255,255,.6);
}

.split {
    display:flex;
    gap:10px;
    width:100%;
}

.centered {
    text-align:center;
}

.content h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.content img {
    margin:10px;
    min-width:100px;
    max-width:150px;
}

.indented {
    margin: 0px 100px 0px 40px
}

/* Lists */
ul {
    list-style-position: inside;
}

li {
    margin-bottom: 8px;
}

.replacement {
    display:none;
}

.jk:hover .original {
    display:none;
}

.jk:hover .replacement {
    display:inline;
}

footer  {
    text-align:center;
    text-decoration:none;

}

.contact {
    padding:5px;
    width:200px;
    border-radius:20px;
    transition: background-color 0.3s ease;
}

.contact:hover {
    background:#03C03C;

}

.contact:hover a{
    color:white;
}

.contact a {
    text-decoration:none;
    color:black;
    transition: color 0.3s ease;
}


/* Responsive Design */
@media (max-width: 600px) {
    .container {
        padding: 20px;
        text-align:center;
    }

    .section-title {
        font-size: 1.5rem;
        color: #222;
        border-bottom: 5px solid #03C03C; /* Accent Color */
        border-left: 0px;
        border-bottom-style: dotted;
    }

    h1 {
        font-size: 2rem;
    }

    h4 {
        font-size: 0.9rem;
    }

    .indented {
        margin: 10px;
    }
}
