/* Hero container */
.hero {
    position: relative;
    width: 100%;
    height: 600px; /* adjust height as you prefer */
    overflow: hidden;
}

/* Hero image fills the entire hero area */
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* fills without distortion */
}

/* Overlay text */
.hero-copy {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    padding: 20px 40px;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 10px;
    color: #fff;
}

.hero-copy h1,
.hero-copy p {
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

/* Optional: make text stand out */
.hero-copy h1 {
    font-family: "Yuji Syuku", serif;
    font-size: 48px;
    color: #fff;
    margin-bottom: 10px;
}

.hero-copy p {
    font-family: "Noto Sans", sans-serif; /* or Yuji Syuku if you prefer */
    font-size: 20px;
    color: #e0d9d9;
}

.intro-bar {
    text-align: center;
    font-size: 22px;
}

.main-content {
    margin-bottom: 30px;
}

.two-column {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* instead of center */
    gap: 40px;
}

.left { padding-top: 20px; }    /* controls the padding at the top of left column */

.right { padding-top: 10px; }    /* controls the padding at the top of right column */

.section-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 40px auto;
    width: 80%;
}

.image-card {
    margin-bottom: 10px;
}

.image-card img {
    width: 100%;
    height: 350px;      /* increased height */
    object-fit: cover;
    border-radius: 8px;
}