/* Reset */
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* Body */
body{
    background-image: url('img/bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
}

/* Wrapper */
#wrapper{
    max-width: 960px;
    margin: 0 auto;
    background-color: #fffbe6;
    border: 5px solid red;
}

/* Header */
#header{
    background-color: #131921;
    padding: 15px;
}

/* Menu */
#menu{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#menu a{
    text-decoration: none;
    padding: 15px 20px;
    color: #fff;
    transition: all 0.3s ease;
}

#menu a:hover{
    background-color: yellow;
    color: #131921;
}

/* Content */
#content{
    padding: 10px;
}

.intro{
    text-align: center;
    padding: 10px;
}

#content p{
    font-size: 18px;
    padding: 15px;
    line-height: 1.6;
}

#content h3{
    padding: 15px;
    text-align: center;
}

/* Images */
#content img{
    display: block;
    max-width: 600px;
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin: 10px auto;
    border-radius: 15px;
    border: yellow solid 4px;
    transition: all 0.3s ease;
}

#content img:hover{
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Links */
#content a{
    color: blue;
    display: block;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    text-decoration: none;
}

/* Quote */
.quote{
    text-align: center;
    font-style: italic;
    font-size: 18px;
    margin-top: 40px;
    padding: 15px;
    border-top: 5px solid #131921;
    border-bottom: 5px solid #131921;
    background: #fff0f0;
}

/* Footer */
#footer{
    padding: 20px;
    background-color: white;
    text-align: center;
}

/* Contact form */
.contact-form{
    max-width: 600px;
    margin: 0px auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.contact-form label{
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea{
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.contact-form textarea{
    resize: none;
}

.contact-form button{
    margin-top: 20px;
    padding: 12px;
    width: 100%;
    background: #131921;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}

.contact-form button:hover{
    background: #f1c40f;
    color: #131921;
}

