@charset "utf-8";
/* CSS Document */

body {
    margin: 0;
    padding: 0;
}

/* Hero Section Styles */
.hero {
    position: relative;
    display: flex;
    max-width: 100%;
    bottom: 0;
    height: 600px;
    background: #E5E2E2;
    border-radius: 5px;
    overflow: hidden;
    align-items: center;
    justify-content: flex-start;
    padding: 0rem 0rem;
    margin-bottom: 4rem;
    margin-top: 0rem;
}

.header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
    position: absolute;
    inset: 0;
    object-position: center;
}

.header-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: absolute;
    z-index: 10;
    max-width: 100%;
    object-fit: cover;
}

.hero-title {
    font-size: 1.875rem;
    font-weight: 300;
    line-height: 1.25;
    color: whitesmoke;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-left: 8rem;
}

.hero-title .italic {
    position: static;
    font-style: italic;
    color: hsl(var(--hero-title-italic));
    margin-left: 0rem;
}

.cta-button {
    background: #000000;
    color: white;
    padding: 0.75rem 5rem;
    border: none;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 8rem;
}

.cta-button:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

/* Image Hero Section Styles */
.image-hero-wrapper {
    position: relative;
    max-width: 100%;
    margin-bottom: 2rem;
}

.hero-section {
    position: relative;
    height: 600px;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section img {
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
}

.image-grid {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 160px;
    z-index: 1;
    display: flex;
    grid-template-columns: 1fr;
    gap: 0rem;
    max-width: 100%;
    width: min(100%, 860px);
    justify-content: center;
    align-items: center;
    margin-top: 0;
}

.image-item {
    width: 100%;
    height: 330px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    background: hsl(var(--card-bg));
    margin: 0 auto;
}

@media (min-width: 920px) {
    .image-item {
        width: 270px;
    }
}

.image-item:hover {
    transform: translateY(-4px);
}

.image-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Content Section Styles */
.content-section {
    padding-bottom: 10rem;
    padding-top: 1rem;;
    max-width: 600px;
    margin: auto;
    text-align: center;
    
}

.content-section h2 {
    font-size: clamp(60px, 8vw, 100px);
    color: hsl(var(--work-title));
    font-style: italic;
    margin-bottom: 2rem;
    font-weight: 300;
}

.content-section p {
    font-size: 0.75rem;
    display: flex;
    position: relative;
    line-height: 1.75;
    color: hsl(var(--foreground));
    max-width: auto;
    margin: 0rem auto;
    margin-bottom: 5rem;
    text-align: center;
}

.browse-now-button {
    background: #000000;
    color: white;
    padding: 0.75rem 5rem;
    border: none;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.browse-now-button:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

/* Gallery Grid Styles */
.gallery-container {
    padding: 3rem 1rem;
    background: #f1e9e3;
    box-shadow: 0 1.5px 3px rgba(0, 0, 0, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 3fr 3fr 3fr 3fr;
    grid-column: 3;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

.gallery-item {
    background: hsl(var(--card));
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.image-container {
    height: 30rem;
    position: relative;
    background: hsl(var(--card-bg));
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: contain;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-container span {
    color: white;
    font-size: 0.875rem;
    text-align: center;
    padding: 0 1rem;
}

.content-section-1 {
    padding: 1.5rem;
}

.item-title {
    display: flex;
    position: relative;
    font-size: 1.5rem;
    font-weight: 300;
    color: hsl(var(--work-title));
    margin-bottom: 1rem;
}

.item-description {
    font-size: 0.75rem;
    display: flex;
    position: relative;
    line-height: 1.75;
    color: hsl(var(--foreground));
}

/* Sign In Form Styles */
.apply-container {
    max-width: 25rem;
    margin: 0 auto;
    padding: 7.5rem 6rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 8rem;
    border-radius: 3rem;
    margin-bottom: 10rem;
}

.part-of {
    text-align: center;
    font-weight: 100;
    font-size: 1.5rem;
    margin-bottom: -2.5rem;
}

.apply {
    max-width: auto;
    font-size: clamp(60px, 8vw, 100px);
    color: hsl(var(--work-title));
    font-style: italic;
    margin-bottom: 2.5rem;
    font-weight: 200;
    text-align: center;
}

.apply-now {
    width: 100%;
    background: #000000;
    color: white;
    padding: 1.5rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 3rem;
}

.apply-now:hover {
    background: #A29991;
}

/* Container Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.page-wrapper {
    min-height: 100vh;
    background: hsl(var(--background));
}

.footer {
    padding: 5rem 5rem;
    background: #232323;
    color: var(--text-color);
    grid-template-columns: repeat(4, 1fr);
    max-width: 100%;
    position: relative;
    gap: 4rem;
}

.footer-column h1 {
    font-family: georgia;
    font-size: 4rem;
    font-weight: 100;
    line-height: 3rem;
    text-transform: none;
    color: #F5F5F5;
    margin-top: -1rem;
    margin-left: 1rem;
    display: flex;
}

.footer-column p {
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: -2rem;
    color: #F5F5F5;
    margin-left: 2rem;
    display: flex;
}

.footer-column a {
    font-size: 1.2rem;
    color: #F5F5F5;
    text-decoration: none;
    display: flex;
    margin-bottom: 0.7rem;
    margin-left: 5rem;
}

.footer-column a:hover {
    text-decoration: underline;
    color: #F5F5F5;
}

.footer-sign-up {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    text-decoration: underline;
    color: #F5F5F5;
    display: flex;
}

.footer-apply-now {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    text-decoration: underline;
    color: #F5F5F5;
    display: flex;
}

/* Homepage responsive adjustments (content only) */
@media (max-width: 1024px) {
    .hero {
        height: 520px;
    }

    .hero-title {
        font-size: 1.55rem;
        margin-left: 4.5rem;
    }

    .cta-button {
        margin-left: 4.5rem;
        padding: 0.7rem 3.2rem;
    }

    .image-grid {
        bottom: 70px;
        justify-content: center;
        gap: 1rem;
    }

    .image-item {
        height: 290px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero {
        height: 380px;
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 1.2rem;
        line-height: 1.35;
        margin-left: 1.5rem;
        margin-right: 1rem;
        margin-bottom: 1.2rem;
    }

    .cta-button {
        margin-left: 1.5rem;
        padding: 0.6rem 1.8rem;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .hero-section {
        height: 320px;
        min-height: 320px;
    }

    .image-hero-wrapper {
        margin-bottom: 5rem;
    }

    .header-image img,
    .hero-section img {
        object-fit: cover;
        object-position: center;
    }

    .image-grid {
        bottom: 38px;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: flex-end;
        gap: 0.65rem;
        width: min(100%, 32rem);
        padding: 0 0.5rem;
    }

    .image-item {
        width: calc((100% - 1.3rem) / 3);
        max-width: 200px;
        min-width: 100px;
        height: 200px;
        border-radius: 24px;
        margin: 0;
    }

    .content-section {
        max-width: 92%;
        padding-bottom: 4.25rem;
        padding-top: 0rem;;
        
    }

    .content-section h2 {
        font-size: clamp(46px, 10vw, 66px);
        margin-bottom: 1rem;
    }

    .content-section p {
        font-size: 0.95rem;
        line-height: 1.65;
        display: block;
        margin-bottom: 2rem;
    }

    .browse-now-button {
        padding: 0.65rem 2rem;
        font-size: 0.8rem;
    }

    .gallery-container {
        padding: 2rem 0.75rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .image-container {
        height: 8rem;
    }

    .item-title,
    .item-description {
        display: block;
    }

    .item-description {
        font-size: 0.7rem;
    }

    .apply-container {
        max-width: 62%;
        padding: 3rem 1.25rem;
        margin-top: 3.5rem;
        margin-bottom: 4rem;
        border-radius: 1.5rem;
    }

    .part-of {
        font-size: 1.3rem;
        margin-bottom: -1rem;
    }

    .apply {
        font-size: clamp(44px, 12vw, 64px);
        margin-bottom: 1rem;
    }

    .apply-now {
        padding: 1rem;
        margin-top: 1.5rem;
        font-size: 0.82rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 320px;
    }

    .hero-title {
        font-size: 1rem;
        margin-left: 1rem;
        margin-right: 0.75rem;
    }

    .cta-button {
        margin-left: 1rem;
        padding: 0.55rem 1.3rem;
        font-size: 0.72rem;
    }

    .hero-section {
        height: 260px;
        min-height: 260px;
    }

    .image-hero-wrapper {
        margin-bottom: 4rem;
    }

    .image-grid {
        bottom: 50px;
        gap: 0.8rem;
        width: min(100%, 18rem);
        padding: 0 0.35rem;
    }

    .image-item {
        width: calc((100% - 1.2rem) / 3);
        max-width: none;
        min-width: 0;
        height: 150px;
        border-radius: 18px;
    
    }

    .content-section p {
        font-size: 0.9rem;
    }

    .image-container {
        height: 13.5rem;
    }
}