/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;700&family=Quicksand:wght@400;600&display=swap');

/* General */
body {
    font-family: 'EB Garamond', serif;
    background: linear-gradient(135deg, #FAE6D0, #F8D7AF);
    color: #29221e;
    margin: 0;
    line-height: 1.7;
    transition: background-color 0.5s ease, color 0.5s ease;
}

p {
    margin: 15px;
    font-size: 18px;
}

section {
    margin-top: 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Quicksand', sans-serif;
    color: #FAE6D0;
    margin: 10px;
}

h1 {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-align: center;
}

h2 {
    font-size: 30px;
    font-weight: 600;
    color: #5A3E2B;
    text-align: left;
}

h3 {
    font-size: 22px;
    font-weight: 500;
    padding-top: 5px;
    margin-left: 20px;
    color: #5A3E2B;
}

p, li {
    font-size: 18px;
    color: #29221e;
}

/* Lists */
ul, ol {
    background: #FAE6D0;
    padding: 15px 25px;
    margin: 15px;
    border-radius: 8px;
    border-left: 4px solid #D2691E;
}

/* Layout */
header {
    background: linear-gradient(90deg, #C47B47, #9E5A32);
    text-align: center;
    padding: 25px 10px;
    font-size: 36px;
    font-weight: 700;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

footer {
    background: linear-gradient(90deg, #E8D0B2, #C47B47);
    color: #5A3E2B;
    text-align: center;
    padding: 15px;
    font-size: 16px;
}

/* Images */
.img-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px auto;
}

img {
    max-width: 400px;
    vertical-align: middle;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Links */
a {
    color: #9E5A32;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
    color: #C47B47;
    text-shadow: 0 2px 8px rgba(196, 123, 71, 0.4);
}

/* Buttons */
button {
    background-color: #C47B47;
    color: #FAE6D0;
    border: none;
    padding: 12px 24px;
    font-size: 18px;
    font-family: 'Quicksand', sans-serif;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
    background-color: #9E5A32;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
