/* -- projects.css -- */

/* 🍊 Enhanced Nature-Orange Theme ------------------------------
Dark Brown (BG):       #2e2118
Light Orange (Box):    #fcebd4
Title Orange:          #fca55d
Link:                  #cc6600
Link Hover:            #ff9933
Button BG:             #cc6600
Button Hover:          #ff9933
Text Light:            antiquewhite
Text Dark:             #2e2118
--------------------------------------------------------------- */

body {
    font-family: Lato, sans-serif;
    line-height: 1.6;
    margin: 20px 10px;
    padding: 0;
    background-color: #2e2118;
    color: antiquewhite;
    transition: background-color 0.3s ease;
}

.section {
    padding: 20px;
    margin: 20px auto;
    background-color: #fcebd4;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    max-width: 900px;
    color: #2e2118;
    border: 1px solid #e6c29f;
    transition: box-shadow 0.3s ease;
}
.section:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

header {
    font-size: 48px;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #fca55d;
    text-align: center;
}

h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

p, ul {
    margin-bottom: 20px;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

a {
    text-decoration: none;
    color: #cc6600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

a:hover {
    color: #ff9933;
    border-bottom: 2px solid #ff9933;
}

footer {
    font-size: 12px;
    margin-top: 10px;
    margin-bottom: 10px;
    color: antiquewhite;
    text-align: center;
}

a.footer {
    color: antiquewhite;
}

.totop {
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 10px;
    color: antiquewhite;
    text-align: center;
}

/* Buttons */
button {
    background-color: #cc6600;
    color: #fcebd4;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #ff9933;
    color: #2e2118;
}

.image-bottom {
  display: flex;
  justify-content: center;
  margin: 40px auto;
  max-width: 880px;
}
.image-bottom img {
  width: 100%;
  max-width: 880px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
