/* ===== Reset ===== */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #111;
}

/* ===== Background ===== */
.home {
    min-height: 100vh;
    background: url('../img/pilgrims-back.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}

/* ===== Subtle overlay ===== */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.35); /* lighter overlay */
    backdrop-filter: blur(4px); /* subtle blur */
}

/* ===== Content ===== */
.content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    width: 100%;
    text-align: center;
    padding: 0; /* remove heavy padding */
}

/* ===== Typography ===== */
.title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.2;
    color: #111;
}

.subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    font-weight: 400;
}

.highlight {
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #111;
}

.font-normal {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #333;
}

.opening {
    font-size: 15px;
    margin: 15px 0;
    font-weight: 600;
}

/* ===== Countdown ===== */
.count_down {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0;
    margin: 20px 0;
    list-style: none;
}

.count_down li {
    text-align: center;
}

.count_down p:first-child {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    color: #111;
}

.count_down span {
    display: block;
    font-size: 11px;
    color: #666;
    margin-top: 2px;
}

/* ===== Links ===== */
a {
    color: #111;
    text-decoration: none;
    font-size: 14px;
}

a:hover {
    text-decoration: underline;
}

.contacts {
    margin-top: 10px;
}


/* ===== Responsive ===== */
@media (max-width: 600px) {
    .title {
        font-size: 28px;
    }

    .subtitle {
        font-size: 14px;
    }

    .highlight, .font-normal, .opening {
        font-size: 13px;
    }

    .count_down p:first-child {
        font-size: 20px;
    }
}


/* ===== Top-right minimal language link ===== */
.language-switch-top {
    position: absolute;
    top: 20px;
    right: 20px;
    margin: 0;
    font-size: 13px;
    z-index: 10;
}

.language-switch-top a {
    color: #555;
    text-decoration: underline;
    transition: color 0.3s;
}

.language-switch-top a:hover {
    color: #111; /* slightly darker on hover */
}

/* Responsive: move it closer to edge on mobile */
@media (max-width: 600px) {
    .language-switch-top {
        top: 15px;
        right: 15px;
        font-size: 12px;
    }
}