/* Page 2 Styling */
#page-2 {
    background-color: #000000; /* Dark background for page 2 */
    color: white; /* White text color */
    padding: 5% 10%;
    text-align: left;
    border-bottom: 2px solid #444; /* Add top border */
    border-bottom-left-radius: 25px; /* Round top left corner */
    border-bottom-right-radius: 25px; /* Round top right corner */
    box-sizing: border-box; /* Ensures padding and border are included in the element's width and height */
}

.selected-works {
    display: flex;
    flex-direction: column;
    margin-top: 2em;
}

/* Aligning the header and project information to stack correctly */
.selected-works-header {
    display: flex;
    flex-direction: column; /* Stacks elements vertically */
    margin-bottom: 2em;
    width: 100%;
    margin-left: -10%;
}

/* Aligning the project text and description to be beside each other */
.projects-info {
    display: flex; /* Displays content in a single line */
    align-items: center; /* Aligns items vertically in the center */
    text-align: left;
    margin-left:47%; /* Pushes the content to the right */
    gap: 0.5em;
}

.projects-text-container {
    display: flex; /* Displays elements in a single line */
    margin-left: -15%;
}

.selected-works h2 {
    color:#cfcfcf;
    font-size: 6vw;
    font-weight: bold;
    margin: 0;
    margin-bottom: 0.5em; /* Adds some space between the header and the project text */
    white-space: nowrap; /* Prevents the text from wrapping */
}

.projects-text {
    font-size: 1rem;
    font-weight: normal;
    letter-spacing: 0.1em;
    color: #9e9e9e; /* Gray color */
    margin: 0;
    padding-right: 1em;
}

.projects-description {
    font-size: 1.2vw;
    max-width: 15em; /* Sets maximum width */
    color: #cfcfcf; /* Light gray color */
    margin-top: 0; /* Removes extra margin */
}

.work-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 2em;
    margin-left: 7vw;
}

.work-number {
    font-family: 'Roboto Condensed';
    font-size: 6vw;
    font-weight: 600;
    color: #cfcfcf;
    margin-right: 2em;
    margin-bottom: 40%;
    margin-left: -19%;

}

.work-image {
    width: 63vw;
    height: 70vh;
    border: 1px solid #555;
    border-radius: 10px;
    background-color: #333;
    object-fit: cover;
    margin-left: 0%;
}

/* Style for the work details */
.work-details {
    display: flex;
    flex-direction: column; /* Ensures the title is above the tags */
    align-items: center; /* Aligns content to the center */
    margin-left: 30%;
    margin-top: -3%;
}

/* Styling for the work tags */
.work-tags {
    display: flex;
    flex-wrap: wrap; /* Ensures tags wrap to the next line if needed */
    font-size: 0.9vw;
    font-weight: normal;
    color: #999;
    gap: 0.5em; /* Adds space between tags */
    justify-content: flex-end; /* Aligns tags to the right */
    margin-top: -3%; /* Removes any additional margin */
    margin-right: -9%;
}


/*seperate tags for different text lineups*/
/* Styling for the heading tag */
.headingTag1 {
    font-size: 1.2vw;
    color: #9e9e9e; /* Light gray color */
    margin-bottom: 0.5em; /* Adds space below the heading */
    margin-right: 87%; /*adjust lineup*/
    font-family:'Roboto';
    letter-spacing: 0.01em; /* Adjust letter spacing for styling */
    white-space: nowrap; /* Prevents the text from wrapping */
}

/* Styling for the work title */
.work-title1 {
    font-size: 2.3vw;
    font-weight: bold;
    margin: 0; /* Removes any margin */
    text-transform: uppercase; /* Makes text uppercase */
    color: #cfcfcf;
    margin-right: 83%; /*adjust lineup*/
}

.headingTag2 {
    font-size: 1.2vw;
    color: #9e9e9e; /* Light gray color */
    margin-bottom: 0.5em; /* Adds space below the heading */
    margin-right: 87%; /*adjust lineup*/
    font-family:'Roboto';
    letter-spacing: 0.01em; /* Adjust letter spacing for styling */
    white-space: nowrap; /* Prevents the text from wrapping */
}

/* Styling for the work title */
.work-title2 {
    font-size: 2.3vw;
    font-weight: bold;
    margin: 0; /* Removes any margin */
    text-transform: uppercase; /* Makes text uppercase */
    color: #cfcfcf;
    margin-right: 73%; /*adjust lineup*/
}

.headingTag3 {
    font-size: 1.2vw;
    color: #9e9e9e; /* Light gray color */
    margin-bottom: 0.5em; /* Adds space below the heading */
    margin-right: 77%; /*adjust lineup*/
    font-family:'Roboto';
    letter-spacing: 0.01em; /* Adjust letter spacing for styling */
    white-space: nowrap; /* Prevents the text from wrapping */
}

/* Styling for the work title */
.work-title3 {
    font-size: 2.3vw;
    font-weight: bold;
    margin: 0; /* Removes any margin */
    text-transform: uppercase; /* Makes text uppercase */
    color: #cfcfcf;
    margin-right: 83%; /*adjust lineup*/
}

.headingTag4 {
    font-size: 1.2vw;
    color: #9e9e9e; /* Light gray color */
    margin-bottom: 0.5em; /* Adds space below the heading */
    margin-right: 87%; /*adjust lineup*/
    font-family:'Roboto';
    letter-spacing: 0.01em; /* Adjust letter spacing for styling */
    white-space: nowrap; /* Prevents the text from wrapping */
}

/* Styling for the work title */
.work-title4 {
    font-size: 2.3vw;
    font-weight: bold;
    margin: 0; /* Removes any margin */
    text-transform: uppercase; /* Makes text uppercase */
    color: #cfcfcf;
    margin-right: 70%; /*adjust lineup*/
    white-space: nowrap; /* Prevents the text from wrapping */
}


.tag {
    font-family: 'Roboto';
    font-size: 0.9vw; /* Adjust size as needed */
    font-weight: normal;
    color: #999; /* Adjust text color */
    padding: 0.5em 0.5em;
    border: 2px solid #444; /* Thicker border by setting border-width to 2px */
    border-radius: 15px; /* Rounded corners */
}

.highlight-tag {
    background-color: #d0d0d0; /* Light gray background color */
    color: #111; /* Dark text color for contrast */
    border: 2px solid #444; /* Same border thickness as .tag */
}


/* Styling for clickable images */
.work-item a {
    display: inline-block; /* Make the link block-level to contain the image */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effect */
}

.work-item a:hover {
    transform: scale(1.05); /* Slightly enlarge the image on hover */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Add shadow on hover */
}


/*just fixing small issues with smaller screens*/
/* Media Query for Small Screens (Phone Screens) */
@media (max-width: 667px) {
    .work-image {
        height: 50vh; /* Restrict height to 50% of the viewport height */
        width: 100%; /* Make width 100% to fit the container */
        object-fit: cover; /* Ensures the image covers the area without stretching */
    }
}



