/* Williams Garden Styles */

.williams-section {
    padding: 100px 10% 120px;
    /* Increased padding */
    background-color: #fbf9f5;
    background-image: url('../images/bg_texture.png');
    /* If there's a texture? Assuming plain or reuse similar */
    /* Or just plain color from other pages */
}

.williams-title {
    font-family: "Zen Old Mincho", serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
    position: relative;
    width: 100%;
    color: #222;
    /* Ensure black */
}

/* Image */
.williams-image {
    width: 100%;
    margin-bottom: 80px;
}

.williams-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Content */
.williams-content {
    max-width: 900px;
    /* Slightly wider to balance padding? */
    margin: 0 auto;
    text-align: center;
}

.williams-subtitle {
    font-size: 1.6rem;
    font-family: "Zen Old Mincho", serif;
    margin-bottom: 50px;
    line-height: 1.8;
}

.williams-text {
    text-align: left;
    font-size: 1rem;
    line-height: 2.2;
    margin-bottom: 60px;
}

/* Button */
.btn-gold-outline {
    display: inline-block;
    padding: 18px 80px;
    border: 1px solid #a08e2e;
    background-color: #fff;
    color: #a08e2e;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
    position: relative;
    padding-right: 100px;
    text-align: center;
    /* 3D Effect Lines */
    box-shadow: 4px 4px 0 #d9ceaa;
}

.btn-gold-outline::after {
    content: "▶";
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8em;
}

.btn-gold-outline:hover {
    background-color: #a08e2e;
    color: #fff;
    box-shadow: none;
    transform: translate(2px, 2px);
}

@media (max-width: 768px) {
    .williams-section {
        padding: 60px 5%;
    }

    .williams-title {
        font-size: 1.5rem;
    }

    .williams-subtitle {
        font-size: 1.2rem;
    }
}