/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #e8e8e8; /* Light gray background to make the poster pop */
    color: #000;
    font-family: 'Assistant', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Borders to mimic the poster aesthetic */
.frame-outer {
    border: 4px solid #000;
    padding: 10px;
    background-color: #fff;
    width: 100%;
    max-width: 1100px;
}

.frame-inner {
    border: 2px solid #000;
    padding: 40px;
}

/* Grid Layout (Left Image | Middle Text | Right QR) */
.poster-grid {
    display: grid;
    grid-template-columns: 1fr 2.5fr 1fr; 
    gap: 40px;
    align-items: start;
}

/* Columns */
.col-image, .col-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.col-text {
    direction: rtl; /* Crucial for Hebrew */
    text-align: right;
}

/* Typography */
h1 {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    border-bottom: 3px solid #000;
    padding-bottom: 15px;
    text-align: center;
}

h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    margin-top: 25px;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.quote {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: justify;    
    margin-bottom: 20px;
}

.intro {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

ul {
    list-style: none;
    margin-bottom: 15px;
}

ul li {
    position: relative;
    padding-right: 20px;
    margin-bottom: 5px;
    line-height: 1.5;
}

/* Custom bullet points */
ul li::before {
    content: "•";
    position: absolute;
    right: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

a {
    color: #000;
    font-weight: 700;
    text-decoration: underline;
}

.deadline {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    padding: 15px 0;
    text-align: center;
}

.signature {
    margin-top: 20px;
    text-align: right;
    font-style: italic;
    font-size: 1.1rem;
}

/* Images */
.side-image {
    max-width: 100%;
    height: auto;
}

.qr-container {
    text-align: center;
    margin-top: 20px;
}

.qr-code {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
    border: 1px solid #000;
    padding: 5px;
}

.qr-text {
    font-family: 'Frank Ruhl Libre', serif;
    font-weight: 700;
    text-align: center;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .poster-grid {
        grid-template-columns: 1fr; /* Stacks vertically on mobile */
    }
    
    .frame-inner {
        padding: 20px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .side-image {
        max-height: 200px;
    }

    .col-qr {
        margin-top: 20px;
    }
}