@import url('https://fonts.googleapis.com/css2?family=Barrio&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@import url("https://use.typekit.net/tfs8jxm.css");

* {
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    color: rgb(37, 16, 9);
    box-sizing: border-box;
}

.container {
    max-width: 1024px;
    margin: 15px auto;
    border: 2px solid brown;
    background-color: rgb(223, 223, 185);
    box-shadow: 0 5px 5px 4px hsla(0 0% 0% / 0.65);
}

body {
    background-image: url(images/leaves.webp);
}

header img {
    width: 1024px;
    max-width: 100%;
    height: auto;
}

a:link,
a:visited {
    color: rgb(55, 171, 40);
}

a:hover,
a:focus {
    color: brown;
}

nav {
    background-color: brown;
    padding: 5px;
    margin-top: -5px;
}

nav ul li {
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline-block;
    margin-right: 10px;
}

nav a:link,
nav a:visited {
    color: lightgreen;
    text-decoration: none;
}

nav a:hover,
nav a:focus {
    color: darkgreen;
    cursor: pointer;
}

.faq-list {
    list-style-image: url(images/leaf-1-24.png);
}

main {
    padding: 15px;
}

main p {
    font-size: 1.125em;
    line-height: 1.5625;
}

h1 {
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1px;
    color: hsl(60 66.2% 56.3%);
    background-color: hsl(115 80.4% 18%);
}

h1,
h2,
h3 {
    font-family: "Barrio", Arial, Helvetica, sans-serif;
    font-weight: 400;
}

h3,
h4 {
    border-top: 2px brown solid;
    padding-top: 5px;
}

.intro::first-letter {
    color: brown;
    font-size: 24px;
    font-weight: bold;
}

footer {
    padding: 15px;
    background-color: brown;
    color: beige;
}

footer p {
    color: inherit;
}

.columns {
    column-count: 3;
    column-gap: 40px;
    column-rule: 2px dotted red;
}

.columns h2 {}

img.right {
    float: right;
    margin-left: 15px;
    border: 5px solid brown;
}

img.left {
    float: left;
    margin-right: 15px;
    border: 5px solid brown;
}

.left.list-spacer {
    margin-right: 30px;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.video {
    clear: both;
    padding-top: 15px;
}

/* Gallery */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Helvetica", Arial, sans-serif;
}

#container {
    background-color: lightgray;
    padding: 0.5em;
    max-width: 1200px;
    margin: 1.1em auto;

}

header {
    text-align: center;
    padding: 25px;
}

.row {
    display: flex;
    justify-content: center;
    border: 2px solid black;
    flex-direction: column;
}

figure {
    background-color: white;
    border: 1px solid black;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 3px 3px 5px hsl(0 0% 0% / 0.6%);
    margin-left: 10px;
    margin-right: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

figure img {
    border-radius: 10px;
    margin-bottom: 5px;
}

img,
video {
    max-width: 100%;
    height: auto;
}

figcaption {
    text-align: center;
    font-style: italic;
}

/* Media Query */
@media screen and (min-width: 760px) {
    .row {
        flex-direction: row;
    }
}

/* Contact */
* {
    box-sizing: border-box;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

body {
    background-color: beige;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    background-color: beige;
    border-radius: 10px;
    border: 2px solid brown;
    padding: 30px;
    margin: 30px auto;
    max-width: 1024px;
    color: rgb(55, 55, 55);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

h2 {
    margin: 0 0 20px 0;
    font-size: 28px;
    font-weight: 600;
    border-bottom: 1px dotted rgb(55, 55, 55);
    padding-bottom: 12px;
    color: #5D4037;
}

.intro {
    margin: 15px 0 30px 0;
    font-size: 16px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #5D4037;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #8B4513;
    border-radius: 8px;
    font-size: 16px;
    background-color: #fffdf0;
    transition: all 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #5D4037;
    box-shadow: 0 0 8px rgba(139, 69, 19, 0.3);
}

textarea {
    min-height: 160px;
    resize: vertical;
    font-size: 16px !important;
}

.btn {
    background-color: #5D4037;
    color: white;
    border: none;
    border-radius: 15px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn:hover {
    background-color: #3e2723;
    transform: translateY(-2px);
}

.btn-submit {
    background-color: #8B4513;
}

.btn-submit:hover {
    background-color: #6d3510;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

/* Mobile View */
@media (max-width: 600px) {
    .container {
        margin: 15px;
        padding: 20px;
    }

    .button-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}
