@charset "UTF-8";

.page-main,
.form-container {
    max-width: 850px;
    margin: 50px auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.03);
}

.page-title {
    text-align: center;
    border-bottom: 2px solid #f2e1e2;
    padding-bottom: 10px;
}

.about-section {
    max-width: 900px;
    margin: 40px auto 50px auto;
    padding: 0px 40px 40px 40px;
    background-color: #ffffff;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-image {
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
    width: 400px;
    height: 500px;
    object-fit: cover;
    object-position: center left;
}

.about-section article {
    overflow: hidden;
    padding-top: 25px;
}

.about-image {
    float: left;
    margin-top: 35px;
    margin-right: 40px;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
    width: 400px;
    height: 450px;
    object-fit: cover;
    object-position: center left;
}

.home-image {
    height: 400px;
    width: 400px;
}

.gallery-grid,
.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px auto;
}

.gallery-grid img,
.promo-card img {
    width: 100%;
    aspect-ratio: 10 / 15;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.gallery-grid img:hover,
.promo-card img:hover {
    transform: translateY(-5px);
    opacity: 0.9;
}

.list-heading {
    margin-bottom: 5px;
    color: #6a5d5d;
    font-weight: bold;
    letter-spacing: 1px;
    margin-top: 25px;
}

ul {
    line-height: 1.8;
}

.promo-card {
    text-align: center;
}

.contact-links {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.social-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    background-color: #fceceb;
    color: #b56a6f;
    padding: 10px 20px;
    border: 1px solid #e0c5c7;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    
}

.social-btn:hover {
    background-color: #b56a6f;
    color: #ffffff;
}

.notice-text {
    margin-top: 50px;
    text-align: center;
}

.welcome-banner {
    background-color: #fceceb;
    border: 2px solid #e0c5c7;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}