/* Reset CSS
 * --------------------------------------- */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

table {
    border-spacing: 0;
}

fieldset,
img {
    border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
    font-weight: normal;
    font-style: normal;
}

strong {
    font-weight: bold;
}

ol,
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

caption,
th {
    text-align: left;

}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    font-size: 100%;
    margin: 0;
    padding: 0;
}

q:before,
q:after {
    content: '';
}

abbr,
acronym {
    border: 0;
}

/* GENERAL CSS
 * --------------------------------------- */

:root {
    --site-width: 1300px;
    --primary: #E19324;
    --dark: #1A1818;
    --accent: #F4CB82;
    --light: #FFF8EA;
    --brown: #3B362E;
    --pale: #FFFCF5;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;

}

html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

img {
    max-width: 100%;
}

/** animated **/

.animated {
    opacity: 0;
}

.animatedParent {
    overflow: hidden;
}

@media (max-width: 590px) {
    .animated {
        /*CSS transitions*/
        -o-transition-property: none !important;
        -moz-transition-property: none !important;
        -ms-transition-property: none !important;
        -webkit-transition-property: none !important;
        transition-property: none !important;
        /*CSS transforms*/
        -o-transform: none !important;
        -moz-transform: none !important;
        -ms-transform: none !important;
        -webkit-transform: none !important;
        transform: none !important;
        /*CSS animations*/
        -webkit-animation: none !important;
        -moz-animation: none !important;
        -o-animation: none !important;
        -ms-animation: none !important;
        animation: none !important;
        opacity: 1;
    }
}

/** no break **/

.nobr,
.nobr-small {
    white-space: nowrap;
}

/* fonts */


@font-face {
    font-family: 'Causten';
    src: url('../fonts/Causten-Regular.otf') format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Causten';
    src: url('../fonts/Causten-Bold.otf') format("opentype");
    font-weight: 600;
    font-style: normal;
}


/* general */

body {
    font-family: Causten, Arial, sans-serif;
    color: var(--dark);
    text-align: center;
    letter-spacing: 0em;
    overflow-x: hidden;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.7rem;
}

/** header **/
header.container-fluid {
    padding: 0;
    transition: all 0.5s ease;
    z-index: 14;
    position: fixed;
}

header.fixed {
    top: 0;
    background: #FFF;
}

header .menu-container {
    min-height: 90px;
}

header.fixed .menu-container {
    min-height: 80px;
}

header .logo-container img {
    max-width: 140px;
    max-height: 100%;
    transition: all 0.5s ease;
}

header.fixed .logo-container img {
    max-width: 110px;
}

header .logo-container a {
    display: inline-block;
    padding: 1%;
    height: 100%;
}

.nav {
    font-weight: 700;
    font-size: 1rem;
}

.nav a {
    letter-spacing: initial;
    text-decoration: none;
}

.nav a.active {
    color: var(--dark) !important;
    border-bottom: 1px solid var(--dark);
}

header .nav-pills .nav-link {
    position: relative;
    margin-right: 10px;
    border-radius: 0px;
    text-transform: none;
}

header .fa-bars {
    font-size: 1.4rem;
}

#mobile-navbar ul li {
    padding: 10px;
    text-align: left;
}

#mobile-navbar ul li a {
    position: relative;
}

#mobile-navbar ul li i {
    float: right;
}

.dropdown-toggle::after {
    content: none;
}

#header-content>div {
    max-height: 100%;
}

/** top nav **/
.top-navigation {
    z-index: 15;
    padding-bottom: 10px;
    min-height: 70px;
}

header.fixed .top-navigation {
    min-height: 60px;
}

.top-navigation .nav-pills .show>.nav-link {
    background-color: inherit;
}

/* standard  */
.site-width {
    max-width: var(--site-width) !important;
    margin: 0 auto;
}

.text-underline {
    text-decoration: underline;
}

.h1 {
    font-size: 4.5rem;
    line-height: 5rem;
}

.h2 {
    font-size: 3rem;
    line-height: 3.5rem;
}

.h3 {
    font-size: 1.5rem;
    line-height: 2rem;
}

.title-font {
    font-family: 'Playfair Display', serif;
}

/* buttons */
.btn {
    border-radius: 25px;
    padding: 5px 20px;
    text-transform: uppercase;
    font-size: 1rem !important;
    font-weight: 600;
    border-width: 2px;
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    background-color: var(--light) !important;
}

.btn-primary,
.btn-outline-primary:hover,
.btn-outline-primary:active,
.btn-outline-primary:focus {
    box-shadow: none !important;
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #FFF;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    box-shadow: none !important;
    background-color: var(--pale) !important;
    color: var(--primary);
}

/* banners */

.full-banner {
    height: 90vh;
    min-height: 800px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#home-banner {
    background-image: url("../images/banners/Home.png");
}

#about-banner {
    background-image: url("../images/banners/about.png");
}

#living-banner {
    background-image: url("../images/banners/Living\ Option.png");
}

#services-banner {
    background-image: url("../images/banners/Services.png");
}

#activities-banner {
    background-image: url("../images/banners/Activities.png");
}

#careers-banner {
    background-image: url("../images/banners/Career.png");
}

#contact-banner {
    background-image: url("../images/banners/Contact.png");
}


#experience-the-difference {
    background-image: url("../images/banners/Plan\ your\ visit.png");
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
}

/* backgrounds */

.bg-light {
    background-color: var(--light) !important;
}

.bg-pale {
    background-color: var(--pale) !important;
}


.bg-accent {
    background-color: var(--accent) !important;
}

.bg-brown {
    background-color: var(--brown) !important;
}

/* text */
.text-light {
    color: var(--light) !important;
}

.text-primary {
    color: var(--primary) !important;
}


/* random utils */

.rounded-border {
    border: 1px solid var(--primary);
    border-radius: 15px;
    padding: 5px 20px;

}

p.rounded-border,
h4.rounded-border{
    border-radius: 50px;
}

.icon {
    max-height: 90px;
}

/* sections */
.icon-box {
    position: relative;
    padding-top: 20px;
}

.icon-box-icon {
    background: white;
    border-radius: 50%;
    height: 150px;
    width: 150px;
    position: absolute;
    top: -70px;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid var(--light);
}

.icon-box-box {
    padding-top: 50px;
}

.icon-box-icon-img {
    height: 80px;
}

.row-with-stretch .rounded-border {
    position: relative;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    width: 150%;
}

.row-with-stretch .rounded-border .row-with-stretch-text {
    width: 75%;
}

.activities-section {
    position: relative;
}

.activities-section::before {
    content: '';
    width: 100vw;
    right: 0;
    border-top: 2px solid var(--dark);
    border-bottom: 2px solid var(--dark);
    border-right: 2px solid var(--dark);
    border-top-right-radius: 150px;
    border-bottom-right-radius: 150px;
    top: 0;
    height: 100%;
    position: absolute;
    background-color: var(--pale);
}

.list-style-open-dot li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 18px;
    font-size: 1.1rem;
    line-height: 1.5;
}

.list-style-open-dot li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 8px;
    height: 8px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    background: transparent;
}

.activities-image-wrap {
    width: 300px;
    height: 300px;
    overflow: hidden;
    padding: 6px;
}

.activities-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

#careers-box{
    margin-top: 15%;
    position: relative;
}
#careers-box::before{
    content: '';
    width: 50%;
    left: 0;
    bottom: 0;
    height: 130%;
    position: absolute;
    background-image: url("../images/images/Carrer-1.png");
    background-position: bottom left;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
}
#careers-box::after{
    content: '';
    width: 80px;
    right: -45px;
    bottom: -45px;
    height: 80px;
    position: absolute;
    background-image: url("../images/icons/Careericon-2.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}

#footer-logo-container{
    border-right: 1px solid var(--primary)
}

.short-line{
    border-bottom: 2px solid var(--primary);
    width: 50%;
    max-width: 200px;
}

#services .icon-box-box{
    min-height: 350px;
}

.form-control{
    border: none;
    border-bottom: 1px solid var(--dark);
    border-radius: 0;
}

textarea.form-control{
    resize: none;
}

.form-control-label{
    font-size: 1rem;
    display: flex;
    align-items: center;
}




.status-message {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    padding: 40px;
}

/* Job Board Layout */
#job-board {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

/* Individual Job Card */
.job-card {
    background: #FFF;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: left;
}

.job-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.job-title {
    margin: 0 0 15px 0;
    font-size: 1.5rem;
}

/* Details / Badges Row */
.job-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.badge {
    background-color: var(--primary);
    color: var(--pale);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge.salary {
    background-color: var(--dark);
    color: #FFF;
}

/* Preserve spacing and line breaks from original Excel sheet */
.job-description {
    font-size: 1rem;
    line-height: 1.6;
    white-space: pre-line; 
    margin: 0;
}



@media(min-width: 1600px) {
    .h1{
        font-size: 6rem;
        line-height: 6.5rem;
    }

    #home-banner .h1{
        font-size: 5rem;
        line-height: 5.5rem;
    }
}

@media(max-width: 992px) {
    .h1 {
        font-size: 3rem;
        line-height: 3.5rem;
    }

    .h2 {
        font-size: 2.5rem;
        line-height: 3rem;
    }
    #careers-box::before{
        width: 40%;
        height: 120%;
    }
    

    #careers-box .h2{
        font-size: 2rem;
        line-height: 2.5rem;
    }
    .h3 {
        font-size: 1.3rem;
        line-height: 1.6rem;
    }

    .logo {
        max-width: 200px;
    }

    .icon-box {
        padding-top: 60px;
    }

    .icon-box-icon {
        height: 120px;
        width: 120px;
        top: -20px;
    }

    .icon-box-icon-img {
        height: 60px;
    }

    .full-banner {
        height: 50vh;
        min-height: 500px;
    }

    .icon {
        height: 80px;
    }


    .activities-section::before {
        right: unset;
        left: 0;
    }
    #services .icon-box-box{
        min-height: 300px;
    }

    #services .icon-box-box{
        padding-top: 30px !important;
    }

    #careers-box::after{
        width: 50px;
        right: -25px;
        bottom: -35px;
        height: 50px;
    }

}

@media(max-width: 768px) {
    body {
        font-size: 1rem;
        line-height: 1.4rem;
    }

    .h1 {
        font-size: 2.5rem;
        line-height: 3rem;
    }

    .h2 {
        font-size: 2rem;
        line-height: 2.5rem;
    }
    #careers-box .h2{
        font-size: 1.5rem;
        line-height: 2rem;

    }
    #careers-box::after{
        width: 40px;
        right: -15px;
        bottom: -25px;
        height: 40px;
    }

    .h3 {
        font-size: 1.1rem;
        line-height: 1.5rem;
    }

    .logo {
        width: 70%;
    }

    .full-banner {
        height: 90vh;
        min-height: 400px;
        position: relative;
    }

    .full-banner::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        height: 90%;
        background-image: linear-gradient(0deg, var(--light), transparent);
        width: 100%;
    }

    #home-banner {
        background-image: url("../images/mobile/home.png");
    }

    #about-banner {
        background-image: url("../images/mobile/about.png");
    }

    #living-banner {
        background-image: url("../images/mobile/living.png");
    }

    #services-banner {
        background-image: url("../images/mobile/services.png");
    }

    #activities-banner {
        background-image: url("../images/mobile/activities.png");
    }

    #careers-banner {
        background-image: url("../images/mobile/careers.png");
    }

    #contact-banner {
        background-image: url("../images/mobile/contact.png");
    }

    #experience-the-difference {
        background-image: none;
    }

    .icon {
        height: 70px;
    }

    .icon-box {
        height: 210px;
        padding-top: 60px;
    }

    .icon-box-icon {
        height: 100px;
        width: 100px;
        top: 0;
    }

    .icon-box-icon-img {
        height: 50px;
    }
    .icon-box-box {
        padding-top: 30px;
    }
    #services .icon-box{
        height: unset;
        margin-top: 20px;
    }

    #services .icon-box-box{
        min-height: unset;
        padding-top: 30px !important;
    }

    .row-with-stretch .rounded-border {
        border-top-right-radius: 15px;
        border-bottom-right-radius: 15px;
        width: 100%;
    }

    .row-with-stretch .rounded-border .row-with-stretch-text {
        width: 100%;
    }

    .activities-section::before {
        border-top-right-radius: 15px;
        border-bottom-right-radius: 15px;
    }
    #footer-logo-container{
        border-right: none;
    }

    .img-box img{
        width: 60%;
        margin: 0 auto;
        max-width: 300px;
    }

}