@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Lora:ital,wght@0,400;0,700;1,400&family=Playfair+Display:wght@700&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    background-color: #faf3e0;
    background-image: url('images/pattern-tet.jpg');
    background-repeat: repeat;
    font-family: 'Lora', serif;
    color: #333333;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.header {
    background-image: linear-gradient(rgba(211, 47, 47, 0.85), rgba(211, 47, 47, 0.85)), url('images/header-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
    margin: 0;
    border-bottom: 5px solid #2e7d32;
}

.header h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 50px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.menu {
    background-color: #2e7d32;
    text-align: center;
}

.menu ul {
    list-style-type: none;
}

.menu ul li {
    display: inline-block;
}

.menu ul li a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 20px;
    font-size: 16px;
}

.menu ul li a:hover {
    background-color: #1b5e20;
    color: #ffeb3b;
}

.content {
    width: 80%;
    margin: 20px auto;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

h2 {
    color: #d32f2f;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 10px;
}

p {
    margin-bottom: 15px;
    text-align: justify;
}

hr {
    border: 1px solid #2e7d32;
    margin: 30px 0;
}

img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 5px;
    border: 2px solid #d32f2f;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border-color: #2e7d32;
}

.content a {
    color: #d32f2f;
    text-decoration: none;
    font-weight: bold;
}

.content a:hover {
    text-decoration: underline;
    color: #2e7d32;
}

td {
    padding: 15px 25px;
}

td p {
    text-align: justify;
    line-height: 1.6;
}

td .caption {
    text-align: center;
}

.banner {
    width: 100%;
}

.banner img {
    width: 100%;
    max-width: none;
    aspect-ratio: 21 / 9;
    object-fit: cover;
    display: block;
}

.quote-container {
    background-color: #fff8e1;
    padding: 40px;
    margin: 40px auto;
    width: 85%;
    border-radius: 20px;
    border-left: 10px solid #d32f2f;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    position: relative;
    transition: all 0.4s ease;
}

.quote-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
    border-left-color: #2e7d32;
}

.quote-text {
    font-size: 24px;
    font-style: italic;
    text-align: center;
    color: #5d4037;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.quote-container::before {
    content: "“";
    font-size: 80px;
    color: #d32f2f;
    position: absolute;
    top: -20px;
    left: 20px;
    opacity: 0.3;
    font-family: serif;
}

footer {
    background-color: #d32f2f;
    color: #ffffff;
    padding: 20px 0;
    border-top: 5px solid #2e7d32;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer p {
    margin: 0;
    text-align: center;
}

.lixi-form {
    background-color: #d32f2f;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 60px 20px 30px 20px;
    border-radius: 5px 5px 20px 20px;
    border: 2px solid #ffeb3b;
    box-shadow: 0 10px 20px rgba(211, 47, 47, 0.3);
    position: relative;
    overflow: hidden;
}

.lixi-form::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -10%;
    width: 120%;
    height: 100px;
    background-color: #b71c1c;
    border-radius: 50%;
    border-bottom: 3px solid #ffeb3b;
    z-index: 1;
}

.lixi-form h3 {
    color: #ffeb3b;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.lixi-form input, 
.lixi-form textarea {
    width: 90%;
    margin: 10px auto;
    padding: 12px;
    border: 1px solid #ffeb3b;
    border-radius: 4px;
    background-color: #fff8e1;
    display: block;
    font-family: 'Lora', serif;
    font-size: 15px;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.lixi-form textarea {
    height: 100px;
    resize: none;
}

.lixi-form button {
    background-color: #ffeb3b;
    color: #d32f2f;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 15px;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.lixi-form button:hover {
    background-color: #fbc02d;
}