/* BASE */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: rgb(103, 103, 103);
    background: white;
}

/* HEADER */
.header {
    background: #ffffff;
    border-bottom: 1px solid #eee;
}

.header-inner {
    max-width: 1400px;
    margin: auto;
    padding: 20px 40px;
    display: flex;
    align-items: center;
}

.logo img {

}

.nav {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 38px;
}

.nav a {
    text-decoration: none;
    color: #9c9c9c;
    font-size: 13px;
    letter-spacing: 1px;
}

.nav a.active {
    color: #c6a96b;
}

/* HERO */
.hero {
    background: #ffffff;
    text-align: center;
}

.hero img {
    max-width: 900px;
    width: 100%;
}

.hero1 {
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero1-svg {
    display: block;

    max-height: 100vh;
    width: auto;
    max-width: 100%;
}

/* TITLE */
.title-block {
    text-align: center;
    padding: 40px 20px 0px 0px;
}

.title-block h1 {
    font-family: 'Roboto', serif;
    font-size: 35px;
    font-weight: 100;
    color: rgb(197, 146, 12);
    margin: 0;
}

.subtitle {
    font-size: 12px;
    letter-spacing: 2px;
    color: #777;
    margin-top: 10px;
}

/* CONTENT */
.content {
    max-width: 800px;
    margin: 0px auto;
    padding: 0 20px;
}

.content a {
    color: rgb(197, 146, 12);
    text-decoration: none;
}

.content a:hover {
    text-decoration: underline;
}

/* LEAD TEXT */
.leadtext {
    font-size: 16px;
    line-height: 1.9;
}

.content .lead {
    max-width: 420px;

    /* move to right like screenshot */
    margin: 25px 0px 40px auto;

    /* use existing site font */
    font-family: 'Inter', sans-serif;

    font-size: 19px;
    font-weight: 800;

    line-height: 1.3;

    text-align: left;

    text-transform: none;
}

/* ALL LINES */
.content .lead span {
    display: block;
}

/* DARK RED */
.content .lead .line1 {
    color: #c32500;
    margin-bottom: 2px;
}

/* ORANGE-RED */
.content .lead .line2 {
    color: #e75a00;
    margin-bottom: 2px;
}

/* GOLD */
.content .lead .line3 {
    color: #ff9800;
}

/* PARAGRAPHS */
p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 18px;
}

.dates {
    font-size: 16px;
    color: rgb(197, 146, 12);
    font-weight: 600;
}

/* GOLD TITLE */
.gold {
    font-family: 'Roboto';
    font-size: 25px;
    color: rgb(197, 146, 12);
    font-weight: 100;
    margin-top: 40px;
}

/* QUESTIONS */
.questions {
    margin-top: 40px;
    margin-bottom: 20px;
}

.questions p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;          /* slightly larger than body */
    line-height: 1.65;        /* tighter than normal text */
    font-weight: 600;         /* subtle emphasis */
    color: rgb(103, 103, 103);           /* slightly darker than body */
    margin: 0 0 8px;          /* tight grouping */
}

.accommodation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.acc-item {
    text-align: center;
}

.acc-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.acc-item img:hover {
    transform: scale(1.03);
}

.acc-item p {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}

.content ul {
    margin: 0 0 32px 0;
    padding-left: 1.2em;
}

.content li {
    margin: 0 0 12px;
}

.content blockquote {
    margin: 0 0 32px;
    border-left: 1px solid rgba(255,255,255,0.35);
}

.main-areas-title {
    margin: 0 0 24px;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    color: #5f5f5f;
    letter-spacing: -0.03em;
}
.main-areas-list {
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 1.3em;
}

.main-areas-list li {
    position: relative;
    margin: 0 0 12px 0;
    padding-left: 28px;
}

.main-areas-list li::before {
    content: "–";
    position: absolute;
    left: 0;
    top: 0;
    color: #6a6a6a;
    font-weight: 400;
}

.pricing-section {
    max-width: 1000px;
    margin: 40px auto;
    font-family: serif;
}

.pricing-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th {
    background: #0f6f63;
    color: white;
    padding: 15px;
    font-size: 16px;
    text-align: center;
}

.pricing-table td {
    border: 2px solid #222;
    padding: 12px;
    font-size: 15px;
}

.pricing-table td:first-child {
    width: 40%;
}

.highlight {
    color: #1b7f3a;
    font-weight: bold;
}

.total-row td {
    font-weight: bold;
    font-size: 18px;
}


/* LANGUAGE SWITCH */
.lang-switch {
    position: fixed;
    top: 24px;
    right: 28px;
    z-index: 1000;

    font-family: 'Inter', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 600;

    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-switch a {
    text-decoration: none;
    color: #9c9c9c;
    transition: color 0.25s ease;
}

.lang-switch a:hover {
    color: #c32500;
}

.lang-switch span {
    color: #c5920c;
}

/* RETREAT ACTIONS */
.retreat-actions {
    margin: 30px 0 0px;
    text-align: center;
}

.register-button {
    display: inline-block;
    padding: 16px 42px;

    background: #c5920c;
    color: white !important;

    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;

    border-radius: 2px;
    text-decoration: none;

    transition: all 0.25s ease;
}

.register-button:hover {
    background: #b07f00;
    text-decoration: none !important;
    transform: translateY(-1px);
}

.cancellation-policy {
    margin-top: 22px;
    font-size: 14px;
    color: #777;
}

.cancellation-policy a {
    color: #777 !important;
    text-decoration: underline;
}

.cancellation-policy a:hover {
    color: #c5920c !important;
}

/* MOBILE */
@media (max-width: 768px) {

    .nav {
        display: none;
    }

    .title-block h1 {
        font-size: 34px;
    }

}