html, body {    height: 100%;    margin: 0;}body {    background: #FFF7EC url('bg.jpg') repeat;    font-family: 'Playfair Display', serif;    font-weight: 400;    font-size: 18px;    line-height: 1.9;    color: #3B2A1F;    overflow-x: hidden;}body::before {    content: "";    position: fixed;    inset: 0;    background: radial-gradient(circle at 30% 20%, rgba(255, 214, 170, 0.25), transparent 60%),                radial-gradient(circle at 70% 80%, rgba(255, 183, 120, 0.18), transparent 55%);    pointer-events: none;}#container {    max-width: 1200px;    margin: 0px auto;    padding: 0 22px;}#navigation {    display: flex;    justify-content: center;    flex-wrap: wrap;    gap: 14px;    padding: 22px 0;    font-family: 'Libre Baskerville', serif;    font-weight: 700;}#navigation a {    padding: 10px 18px;    font-size: 12px;    text-transform: uppercase;    letter-spacing: 1.4px;    color: #4A3426;    background: rgba(255, 255, 255, 0.4);    border: 1px solid rgba(255, 210, 160, 0.6);    border-radius: 14px;    backdrop-filter: blur(3px);    transition: 0.25s ease;}#navigation a:hover {    color: #FFF7EC;    background: linear-gradient(135deg, #F4A261, #E76F51);    box-shadow: 0 10px 25px rgba(231, 111, 81, 0.25);    transform: translateY(-2px);}#header {    background:        url('head.jpg') no-repeat center,        url('bg.jpg') repeat;    height: 870px;    position: relative;    border-bottom: 2px solid rgba(244, 162, 97, 0.4);}.contentcontainer {    margin-bottom: 50px;    font: 500 17px 'Libre Baskerville', serif;    line-height: 2;    letter-spacing: 0.4px;    text-align: justify;}a {    text-decoration: none;    color: #E76F51;    font-weight: 600;    position: relative;    transition: all 0.25s ease;    padding: 0 2px;}a::after {    content: "";    position: absolute;    left: 0;    bottom: -2px;    width: 100%;    height: 1px;    background: linear-gradient(90deg, transparent, #F4A261, transparent);    opacity: 0.6;    transform: scaleX(0);    transform-origin: center;    transition: transform 0.25s ease;}a:hover {    color: #F4A261;}a:hover::after {    transform: scaleX(1);}a:active {    color: #C84E2F;}i {    font-style: italic;    color: #5A3E2E;    background: linear-gradient(        90deg,        rgba(255, 220, 170, 0.35),        rgba(255, 240, 210, 0.6)    );    padding: 2px 6px;    border-radius: 8px;    border: 1px dashed rgba(244, 162, 97, 0.35);    box-decoration-break: clone;}b {    font-weight: 600;    color: #3B2A1F;    position: relative;    letter-spacing: 0.2px;}b::after {    content: "";    position: absolute;    left: 0;    bottom: -2px;    width: 100%;    height: 2px;    background: linear-gradient(90deg, #E76F51, #F4A261);    opacity: 0.35;    border-radius: 2px;}h1 {    margin: 40px auto 20px;    padding: 14px 22px;    font: 18px 'Macondo', cursive;    text-align: center;    text-transform: uppercase;    letter-spacing: 2px;    color: #6B3E2E;    background: linear-gradient(90deg, transparent, rgba(244, 162, 97, 0.25), transparent);    border-top: 2px solid rgba(244, 162, 97, 0.5);    border-bottom: 2px solid rgba(244, 162, 97, 0.5);    border-radius: 12px;    max-width: 70%;}blockquote {    margin: 60px 0;    padding: 38px 44px;    position: relative;    background: linear-gradient(145deg, #FFF7EC, #FFE8CC);    border: 1px solid rgba(244, 162, 97, 0.35);    border-radius: 20px;    font-style: italic;    line-height: 2.1;    letter-spacing: 0.4px;    color: #3B2A1F;    box-shadow: 0 20px 50px rgba(60, 40, 25, 0.12);}blockquote::before {    content: "🦊";    position: absolute;    top: -22px;    left: 18px;    font-size: 40px;    opacity: 0.35;}blockquote em {    color: #E76F51;    border-bottom: 1px dashed rgba(231, 111, 81, 0.4);}blockquote strong {    color: #4A3426;}.contentcontainer input,.contentcontainer textarea,.contentcontainer select {    width: 40%;    background: #FFF1DE;    border: 2px solid rgba(244, 162, 97, 0.6);    padding: 10px;    border-radius: 12px;    color: #3B2A1F;    font-size: 16px;    box-shadow: inset 0 2px 8px rgba(0,0,0,0.05);}#footer {    margin-top: 70px;    padding: 50px 20px 40px;    text-align: center;    font-family: 'Libre Baskerville', serif;}.footer-inner {    display: inline-flex;    flex-wrap: wrap;    gap: 14px;    padding: 12px 18px;    border-radius: 20px;    border: 1px solid rgba(244, 162, 97, 0.35);    background: rgba(255, 247, 236, 0.7);    backdrop-filter: blur(4px);}#footer a {    color: #E76F51;    font-size: 13px;    letter-spacing: 1.2px;    text-transform: uppercase;    position: relative;    transition: 0.25s ease;}#footer a:hover {    color: #F4A261;}#footer a::after {    content: "";    position: absolute;    left: 50%;    bottom: -3px;    width: 0%;    height: 1px;    background: #E76F51;    transition: 0.3s ease;    transform: translateX(-50%);}#footer a:hover::after {    width: 100%;}.dot {    color: #5A3E2E;    opacity: 0.5;}.copyright {    color: #6B3E2E;    font-size: 13px;    letter-spacing: 1px;}@media (max-width: 600px) {    #navigation {        flex-direction: column;        align-items: center;    }    #navigation a {        width: 100%;        text-align: center;    }    #header {        height: 220px;    }    body {        font-size: 19px;    }}