/* Hero container */
.hero {
    position: relative;
    width: 100%;
    height: 600px; /* adjust height as you prefer */
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
    bottom: -20;
}

/* Hero image fills the entire hero area */
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* fills without distortion */
    margin-top: 0;
    padding-top: 0;
}

/* 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;
    color: #e0d9d9;
    max-width: 1000px;
    margin: 40px auto;
}

/* Desktop */
@media (min-width: 1025px) { 
    .intro-bar {
        padding: 20px;
        top: 0px;
    }
}

/*TABLET AND MOBILE */
@media (max-width: 1024px) { 
    .intro-bar {
        padding: 0px;
        top: 0px;
    }
}

.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;
}

.footer {
    padding-top: 15px;
}

/*TABLET AND MOBILE: dynamic hero height */
@media (max-width: 1024px) { 
    
    .hero {
        height: auto;              /* let content define height */
    }

    .hero-image img {
        width: 100%;
        height: auto;              /* natural scaling */
        aspect-ratio: 16 / 9;      /* keeps a clean cinematic shape */
        object-fit: cover;
    }

    .hero-copy {
        padding-top: 20px;         /* adjust text spacing */
    }
}

/* SMALL MOBILE: reduce hero text padding */
@media (max-width: 480px) {
    .hero-copy {
        padding: 10px 20px;   /* smaller padding */
    }

    .hero-copy h1 {
        font-size: 32px;      /* optional: reduce text size */
        margin-bottom: 6px;
    }

    .hero-copy p {
        font-size: 16px;      /* optional: reduce paragraph size */
    }
}
