/* ==================================================
   LE LOGIS DE LIMALONGES
   ABOUT US
   ================================================== */


/* ==================================================
   BASIC PAGE
   ================================================== */

html,
body {
    margin: 0;
    padding: 0;

    width: 100%;

    background: #10201d;
}

body {
    font-family: Georgia, "Times New Roman", serif;

    color: #e0bd72;
}


/* ==================================================
   MAIN PAGE
   ================================================== */
#about_page {
    width: 100%;

    min-height: 100vh;

    box-sizing: border-box;

    background: #10201d;

    padding-top: 70px;
}


/* ==================================================
   LANDING IMAGE
   ================================================== */

#about_image {
    width: 100%;

    display: flex;

    justify-content: center;
    align-items: center;

    background: #10201d;
}

#about_image picture {
    display: block;

    width: 100%;

    text-align: center;
}

#about_image img {
    display: block;

    width: auto;
    height: auto;

    max-width: 100%;

    margin: 0 auto;
}


/* ==================================================
   ABOUT CONTENT PANEL
   ================================================== */
#about_content {

    width: calc(100% - 60px);

    max-width: 1100px;

 margin-top: clamp(-900px, -65vw, -400px);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;

    position: relative;
    z-index: 5;

    box-sizing: border-box;

    padding: 35px 45px;

    background: rgba(20, 38, 34, 0.96);

    border: 2px solid #c79b45;

    outline: 1px solid rgba(199, 155, 69, 0.35);

    outline-offset: 4px;

    border-radius: 3px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.45),
        inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

/* ==================================================
   HEADINGS
   ================================================== */

#about_content h1 {
    margin: 0 0 30px;

    color: #e0bd72;

    font-size: 30px;

    font-weight: normal;

    text-align: center;

    letter-spacing: 1px;
}

#about_content h2 {
    margin: 35px 0 20px;

    padding-bottom: 8px;

    color: #e0bd72;

    font-size: 25px;

    font-weight: normal;

    border-bottom: 1px solid rgba(199, 155, 69, 0.45);
}

#about_content h3 {
    margin-top: 25px;

    color: #e0bd72;

    font-size: 19px;

    font-weight: normal;
}


/* ==================================================
   PHOTOS
   ================================================== */

.about_images {
    text-align: center;

    margin-bottom: 25px;
}

.about_images p {
    margin: 15px 0;
}

.about_photo {
    display: inline-block;

    width: auto;
    max-width: 100%;

    height: auto;

    margin: 4px;

    vertical-align: middle;
}


/* ==================================================
   TEXT
   ================================================== */

.about_text {
    color: #f0dfb0;

    font-size: 16px;

    line-height: 1.65;
}

.about_text p {
    margin: 0 0 18px;
}

.about_text ul {
    margin: 10px 0 25px;

    padding-left: 25px;
}

.about_text li {
    margin-bottom: 10px;
}

.about_text a {
    color: #e0bd72;

    text-decoration: underline;
}

.about_text a:hover {
    color: #ffffff;
}


/* ==================================================
   MENU HINT
   ================================================== */

#menu_hint {
    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    margin: 15px auto 8px;

    color: #e0bd72;

    font-size: 13px;

    letter-spacing: 2px;

    text-align: center;
}

#menu_hint .menu_arrow {
    display: block;

    margin-top: 3px;

    color: #c79b45;

    font-size: 24px;

    line-height: 1;

    animation: menuPulse 1.5s ease-in-out infinite;
}

@keyframes menuPulse {

    0%,
    100% {
        opacity: 0.35;

        transform: translateY(0);
    }

    50% {
        opacity: 1;

        transform: translateY(6px);
    }
}


/* ==================================================
   HORIZONTAL MENU
   ================================================== */

/* ==================================================
   FIXED TOP MENU
   ================================================== */

#page_menu {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    margin: 0;

    padding: 10px;

    box-sizing: border-box;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 7px;

    background: rgba(20, 38, 34, 0.96);

    border-bottom: 2px solid #c79b45;

    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.4);

    z-index: 1000;
}

#page_menu > a {
    display: block;

    box-sizing: border-box;

    padding: 9px 13px;

    background: transparent;

    border: 1px solid rgba(199, 155, 69, 0.65);

    color: #e0bd72;

    font-size: 14px;

    line-height: 1.2;

    letter-spacing: 0.3px;

    text-align: center;

    text-decoration: none;

    border-radius: 2px;

    white-space: nowrap;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

#page_menu > a::before {
    content: "✦";

    margin-right: 6px;

    color: #c79b45;

    font-size: 9px;
}

#page_menu > a:hover {
    background: rgba(199, 155, 69, 0.92);

    color: #162722;

    border-color: #e0bd72;

    transform: translateY(-2px);
}

#page_menu > a:hover::before {
    color: #162722;
}


/* ==================================================
   ICONS
   ================================================== */

#page_icons {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-left: 5px;

    padding-left: 10px;

    border-left: 1px solid rgba(199, 155, 69, 0.45);
}

#page_icons a {
    display: block;
}

#page_icons img {
    display: block;

    width: auto;

    max-width: 32px;

    height: auto;

    opacity: 0.9;
}


/* ==================================================
   TABLETS
   ================================================== */

@media screen and (max-width: 900px) {

    #about_content {
        width: calc(100% - 40px);

        padding: 30px;
    }

    #page_menu {
        width: calc(100% - 24px);

        padding: 8px;

        gap: 5px;
    }

    #page_menu > a {
        padding: 8px 9px;

        font-size: 13px;
    }
}


/* ==================================================
   MOBILE
   ================================================== */

@media screen and (max-width: 700px) {

    #about_page {
        padding-top: 115px;
    }

    #page_menu {
        padding: 7px;

        gap: 5px;
    }

    #page_menu > a {
        flex: 1 1 calc(50% - 5px);

        padding: 8px 5px;

        font-size: 12px;

        white-space: normal;
    }

    #page_icons {
        flex: 1 1 100%;

        margin: 3px 0 0;

        padding: 7px 0 0;

        border-left: 0;

        border-top: 1px solid rgba(199, 155, 69, 0.45);
    }

}


/* ==================================================
   VERY SMALL PHONES
   ================================================== */

@media screen and (max-width: 400px) {

    #about_content {
        width: calc(100% - 16px);

        padding: 18px 14px;
    }

    #about_content h1 {
        font-size: 22px;
    }

    .about_text {
        font-size: 14px;
    }

    #page_menu {
        width: calc(100% - 14px);

        padding: 6px;
    }

    #page_menu > a {
        padding: 8px 3px;

        font-size: 11px;
    }

    #page_icons img {
        max-width: 28px;
    }

}
#opaque {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    background-color: black;
    filter: alpha(opacity=30);
    opacity: 0.3;
}
* html #opaque {
    position: absolute;
}

.title_black { color:#ffffff;}
.title_black a {
	color:#000000;
}			
.title_black a:visited {
	color:#000000;
}			
.title_black a:hover {
	color:#000000;
	text-decoration:none;
}
.view_photos {
    position: relative;
    z-index: 1000;
    pointer-events: auto;
}