html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to bottom, #f0ce7c, #f7e4b3);
    min-height: 100vh;
    max-width: 760px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.7;
    font-size: 1.1rem;
}

.cta {
    display: inline-block;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 14px 50px;
    background: linear-gradient(135deg, #c4a44a, #d4b96a);
    color: #3b2f1a;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 16px;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 164, 74, 0.5);
    background: linear-gradient(135deg, #d4b96a, #e8d08a);
    color: #3b2f1a;
    text-decoration: none;
}

#contact a:hover {
    color: #e8d08a;
    text-decoration: underline;
}

.award {
    font-size: 1.5rem;
}

/* 1. Paragraph spacing */
main p {
    margin-bottom: 1rem;
}

/* 4. Hero header section */
header {
    text-align: center;
    background: linear-gradient(135deg, #3b2f1a, #5a4225);
    color: #f7e4b3;
    padding: 40px 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

h1 {
    line-height: 2.5rem;
    color: #f7e4b3;
}

header h2 {
    color: #c4a44a;
    font-size: 1.4rem;
    margin-top: 8px;
}

header h3 {
    color: #d4b96a;
    font-weight: normal;
    font-size: 1rem;
    font-style: italic;
    margin-top: 4px;
}



/* 6. Logo shadow */
img {
    border-radius: 8px;
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin: 15px 0;
}

header .bold {
    color: #c4a44a;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    margin-top: 10px;
}

.bold {
    font-weight: bold;
    text-align: center;
    font-size: 1.2em;
}

#meet-shane {
    margin: 50px 0;
    text-align: center;
    padding: 30px;
    background: #3b2f1a;
    border-radius: 12px;
}

#meet-shane h2 {
    color: #f7e4b3;
    margin-bottom: 12px;
}

#meet-shane p {
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 620px;
    margin: 0 auto 20px auto;
    color: #f7e4b3;
    text-align: left;
}

.italics {
    font-style: italic;
    text-align: center;
    font-size: 1.2em;
}

.cta-wrapper {
    text-align: center;
}

/* 5. Style links to match gold palette */
a {
    color: #8b6914;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #5a4225;
    text-decoration: underline;
}

#contact {
    text-align: center;
    font-size: 1.05rem;
    
}

#contact a {
    display: inline-block;
    margin: 4px 8px;
    color: #c4a44a;
}

#last-p {
    text-align: center;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* 2. Styled list */
ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    border-bottom: 1px solid rgba(196, 164, 74, 0.3);
}

ul li:last-child {
    border-bottom: none;
}

ul li::before {
    content: "\266B";
    position: absolute;
    left: 0;
    color: #c4a44a;
    font-size: 1.2rem;
}

/* Meet Shane */
#meet-shane .shane-photo {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Testimonials */
#testimonials {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #c4a44a;
}

#testimonials h2 {
    text-align: center;
    font-size: 1.6rem;
    color: #3b2f1a;
    letter-spacing: 0.03em;
    margin-bottom: 20px;
}

#testimonials blockquote {
    background: rgba(247, 228, 179, 0.5);
    border-left: 4px solid #c4a44a;
    margin: 0 0 16px 0;
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
}

#testimonials blockquote p {
    margin-bottom: 8px;
}

#testimonials cite {
    display: block;
    font-style: normal;
    font-weight: bold;
    color: #8b6914;
    font-size: 0.9rem;
}

/* Testimonials read-more toggle */
.testimonials-toggle {
    display: none;
}

.testimonials-extra {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.testimonials-toggle:checked ~ .testimonials-extra {
    max-height: 800px;
}

.testimonials-toggle-label {
    display: block;
    text-align: center;
    font-weight: bold;
    color: #8b6914;
    cursor: pointer;
    margin-top: 12px;
    font-size: 1rem;
}

.testimonials-toggle-label::after {
    content: "Read more testimonials \25BC";
}

.testimonials-toggle:checked ~ .testimonials-toggle-label::after {
    content: "Show less \25B2";
}

.testimonials-toggle-label:hover {
    color: #5a4225;
    text-decoration: underline;
}

/* 7. Book Now heading stands out */
.contact-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #c4a44a;
}

.contact-section h2 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.6rem;
    color: #3b2f1a;
    letter-spacing: 0.03em;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    flex: 1;
}

.form-field label {
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 4px;
}

.form-field input,
.form-field textarea,
.form-field select {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    padding: 10px;
    border: 1px solid #c4a44a;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
}

/* 8. Form input focus glow */
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: #8b6914;
    box-shadow: 0 0 0 3px rgba(196, 164, 74, 0.25);
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-section button {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    font-weight: bold;
    padding: 14px 40px;
    background: linear-gradient(135deg, #c4a44a, #a8893a);
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-section button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(196, 164, 74, 0.4);
}

/* 3. Styled footer */
footer {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid #c4a44a;
    text-align: center;
    font-size: 0.85rem;
    color: #7a6530;
}

@media (max-width: 500px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    header {
        padding: 25px 15px;
    }
}