/* Base font size */
html {
    font-size: 20px; /* Setting the base font size to 18px */
}

/* Basic resets */
body, h1, h2, h3, p, a, li, button {
    margin: 0;
    padding: 0;
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 1rem; /* 18px equivalent, based on the base font size */
    color: white;
    max-width: 2000px;
    word-break: break-word;
}

main {
    width: 100%;
}

h1 {font-size: 8rem; margin-bottom: 0.5rem; font-weight: 400;}
h2 {font-size: 6rem; margin-bottom: 0.5rem; font-weight: 400;}
h3 {font-size: 2.5rem; margin-bottom: 0.5rem; font-weight: 400;}
h4 {font-size: 1.7rem; margin-bottom: 0.5rem; font-weight: 400;}
h5 {font-size: 1rem; margin-bottom: 0.5rem; font-weight: 400;}

@media (max-width: 768px) {
    h1 {font-size: 3rem; margin-bottom: 0.5rem;}
    h2 {font-size: 2.8rem; margin-bottom: 0.5rem;}
    h3 {font-size: 2rem; margin-bottom: 0.5rem;}
    h4 {font-size: 1.4rem; margin-bottom: 0.5rem;}
    h5 {font-size: 0.9rem;}
    p {font-size: 0.9rem;}
}


body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: black;
    margin: 0 auto;
}

section {
    padding: 40px 10%;
}

@media (max-width: 768px) {
    section {
        padding: 0px 5%;
    }
}

.content {
    width: 100%;
}

.a:hover {
    text-decoration: underline;
}


.hero-section {
    text-align: center;
    margin: 50px 0;
}

.back-button {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    top: 70px;
    left: 10%;
    background: rgba(0, 0, 0, 0.7);
    padding: 16px 16px 16px 0px;
    text-decoration: none;
}

.back-button .see-more-arrow {
    transform: translateX(0%);
}

.back-button:hover .see-more-arrow {
    transform: translateX(-25%);
}

@media (max-width: 768px) {
    .back-button {
        left: 5%;
    }
}

/* Initial styles for the first h1 (first-child) */
.intro h1:first-child {
    transition: 0.5s ease-out; 
    margin: 0;
    margin-left: -15px;
    transform: translateY(50%); /* Initially at 50% Y */
    opacity: 1; /* Fully visible initially */
    animation: moveToZeroFirst 0.5s ease-out forwards;
    animation-delay: 0.4s; /* 1s delay before it transitions to 0% Y */
}

/* Initial styles for the second h1 */
.intro h1:nth-child(2) {
    transition: 0.5s ease-out; 
    margin: 0;
    margin-left: -15px;
    transform: translateY(-50%); /* Initially at -50% Y */
    opacity: 1; /* Fully visible initially */
    animation: moveToZeroSecond 0.5s ease-out forwards;
    animation-delay: 0.4s; /* 1s delay before it transitions to 0% Y */
}

/* Initial styles for the span inside the h1 */
.intro h1 span {
    opacity: 0; /* Initially hidden */
    animation: fadeIn 0.3s ease-out forwards;
    animation-delay: 0.6s; /* Delay to ensure span shows after h1 transitions */
}

/* Keyframes for moving the first h1 from 50% to 0% Y */
@keyframes moveToZeroFirst {
    to {
        transform: translateY(15%); /* Moves to 0% Y */
    }
}

/* Keyframes for moving the second h1 from -50% to 0% Y */
@keyframes moveToZeroSecond {
    to {
        transform: translateY(-15%); /* Moves to 0% Y */
    }
}

/* Keyframes for span opacity */
@keyframes fadeIn {
    to {
        opacity: 1; /* Span becomes fully visible */
    }
}

/* Media query adjustments */
@media (max-width: 768px) {
    .intro h1 {
        margin-left: -5px;
    }
    .intro h1:first-child {
        transform: translateY(35px);
        margin-bottom: -35px;
        margin-left: -5px;
    }

    /* Initial styles for the second h1 */
    .intro h1:nth-child(2) {
        transform: translateY(-35px); /* Initially at -50% Y */
        margin-left: -5px;
    }

    .intro p {
        margin-top: 0.9rem;
    }


    /* Keyframes for moving the first h1 from 50% to 0% Y */
    @keyframes moveToZeroFirst {
        to {
            transform: translateY(0%); /* Moves to 0% Y */
        }
    }

    /* Keyframes for moving the second h1 from -50% to 0% Y */
    @keyframes moveToZeroSecond {
        to {
            transform: translateY(0%); /* Moves to 0% Y */
        }
    }
}

/* Style for the highlighted first three characters */
.highlight {
    transition: 0.2s ease-out; 
    color: #666666; /* Change this to the color you want for the first three characters */
}


.highlight:hover {
    color: white;
    transition: 0.2s ease-out; 
    /* transform: translateX(10%); */
}

/* Projects */
.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns per row */
    gap: 20px;
    margin-top: 2rem;
}

.project {
    height: 50vh; /* Set a consistent height for all projects */
    position: relative;
    background-color: #ddd;
    overflow: hidden;
    cursor: pointer;
}

.project.full-width {
    grid-column: span 2; /* Full width for larger screens */
    height: 70vh; /* Make sure full-width projects have the same height */
}

.project-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crops the image to fit within the container while maintaining aspect ratio */
}

@media (max-width: 768px) {
    .project-grid {
        grid-template-columns: 1fr; /* Each project takes up the full width (one column per row) */
        margin: 24px 0;
    }

    .project {
        height: 15vh;
        min-height: 15vh; /* Adjust the height of each project for mobile */
    }

    .project.full-width {
        grid-column: span 1; /* Ensure it spans the full width */
        min-height: 80vh; /* Double height for the larger project on mobile */
    }
}

/* Project container styling */
.project {
    position: relative;
    background-color: #0e0e0e;
    min-height: 50vh;
    overflow: hidden;
    cursor: pointer;
}

/* Thumbnail and overlay styles */
.project-thumbnail {
    width: 100%;
    height: 100%; /* Ensures the image covers the entire project area */
    object-fit: cover; /* Crops the image to fit within the container */
    display: block;
    transition: .2s ease-out;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    width: -webkit-fill-available;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 24px;
    margin: 24px;
    opacity: 0;
    /* transform: translateY(100%); */
    transition: transform 0.2s ease-in-out;
    transition: .2s ease-out;
}

.project.full-width .project-overlay {
    max-width: calc(50% - 42px*2);
}

.project-overlay h4 {
    margin-bottom: 0.4rem;
}

.project-overlay h4,
.project-overlay span {
    padding-right: 100px;
}

.project-overlay .see-more-label {
    padding-right: 0;
}

/* Zoom-in effect on hover */
.project:hover .project-thumbnail, 
.project:focus .project-thumbnail {
    transform: scale(1.01); /* Slightly zoom in the image */
}

.project-overlay h4 {
    margin-top: 0rem;
}

.project:hover .project-overlay,
.project:focus .project-overlay,
.project:focus-visible .project-overlay {
    transform: translateY(0);
    opacity: 1;
}

/* Styling for the See More section */
.see-more {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 8px; /* Space between the label and the arrow */
    color: #fff; /* White text color */
    font-size: 1rem; /* Adjust size as needed */
    cursor: pointer;
    transition: color 0.2s ease-in-out;
}

.see-more:hover {
    color: #ccc; /* Change color on hover for a subtle effect */
}

.see-more-arrow {
    font-size: 1.5rem; /* Make the arrow slightly larger for emphasis */
    transform: translateX(-25%);
    transition: .2s ease-out;
}

.project:hover .see-more-arrow {
    transform: translateX(0%);
}

.label {
    font-weight: bold; /* Make the labels bold */
    margin-right: 4px;
}

.date {
    opacity: 0.7;
    margin-bottom: 0.2rem;
    display: block;
}

@media (max-width: 768px) {
    .project-overlay {
        opacity: 1;
    }

    .project-overlay h4 {
        padding-right: 2rem;
        margin-bottom: 0.2rem;
    }

    .project-overlay span,
    .project-overlay p {   
        font-size: 0.9rem;
    }

    .see-more-label {
        display: none;
    }

    .see-more-arrow {
        font-size: 1.5rem !important;
    }

    .project.full-width .project-overlay {
        max-width: 100%;
    }
    
}


/* Modal styling */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Darker semi-transparent black background */
    justify-content: center;
    align-items: center;
    z-index: 1400; /* Make sure it appears above other content */
}

.modal-content {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures the image maintains its aspect ratio */
    max-width: 100%;
    max-height: 100%;
}

.close-button {
    position: absolute;
    top: 16px;
    right: 16px;
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    cursor: pointer;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1500px;
    font-weight: 300;
    /* transform: translateY(-10px); */
}

.close-button span {
    margin-top: -5px;
}


/* Header and Menu Styling */
.main-header {
    /* position: relative; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    z-index: 5;
}

/* Fullscreen Video Background */
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the entire viewport */
    z-index: -1; /* Places the video behind other elements */
    min-height: 100vh;
}

/* Play Button */
.play-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon-overlay {
    width: 32px;
    height: 32px;
}

/* Explore Text and Arrow */
.explore-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 5;
    opacity: 0;
    animation: fadeInUp 2s ease-out forwards; /* Fade and slide in animation */
    text-decoration: none;
}

.explore-text {
    font-size: 18px;
    color: white;
    margin: 0;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.arrow-down {
    /* width: 20px; */
    height: auto;
    animation: bounce 3s infinite; 
}

/* Fade in and slide up animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate(-50%, 50px);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Arrow bounce animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

.logo {
    font-size: 1.1rem;
    cursor: pointer;
    /* opacity: 0; */
    font-weight: 600;
}

.main-menu {
    position: sticky; /* Make the header fixed */
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
    transition: background-color 0.2s ease-in-out; /* Smooth transition for background */
    z-index: 800; /* Ensure the header stays on top */
    height: auto;
    padding-bottom: 1.6rem;
}

/* Transparent header background when scrolled */
/* .main-menu.scrolled {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
} */

.main-menu.scrolled .logo {
    opacity: 1;
}


.main-menu-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    width: 100%;
}

.main-menu_items-container {
    display: flex;
    align-items: center;
}

.main-menu a {
    margin-right: 20px;
    cursor: pointer;
    text-decoration: none;
}

.main-menu a.active {
    border-bottom: 2px solid #fff;
}

.language-switcher {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
    gap: 5px;
    color: #fff; /* Set the color to match your design */
    padding-right: 0px;
    margin-left: 1.5rem;
    width: 70px;
    /* width: 275px; */
}

.language-switcher i {
    font-size: 18px;
}

.language-switcher span {
    font-size: 16px;
    /* text-decoration: underline; */
}

@media (max-width: 768px) {
    .logo {
        font-size: 0.9rem;
        margin: 0 auto;
    }

    .language-switcher {
        position: absolute;
        right: 5%;
        width: auto;
    }
}

/* Project details page */
.project-detail-page {
    text-align: center;
    /* width: 65vw; */
    padding-top: 5%;
    margin: 0 auto; /* Center the content within the available space */
}
.project-detail-page h2 {
    line-height: 1;
    margin-bottom: 2.3rem;
}
.project-description-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 2.5rem;
    margin-bottom: 32px; /* Add spacing below the description */
    text-align: left;
}

/* Main project description takes up 2/3 */
.project-description {
    flex: 2;
    margin-right: 40px; /* Space between description and side info */
    margin-bottom: 24px;
}

.project-description p {
    margin-bottom: 1rem;
}

.project-description span {
    display: block;
    font-style: italic;
    margin-bottom: 0.5rem;
    opacity: 0.7;
    font-size: 0.875rem;
}

/* Side grey text takes up 1/3 */
.project-side-info {
    flex: 1;
    text-align: left; /* Align text to the right */
}

.small-grey-text {
    color: #a3a3a3; /* Grey color for the side text */
    font-size: 0.85rem; /* Smaller text size */
    line-height: 1.4; /* Adjust line height for readability */
    margin-bottom: 0.45rem;
    transition: 0.2s;
}

.small-grey-text:hover {
    color: #ffffff;
}

.quotes-section {
    width: 100%;
    margin-top: 4rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center align the quotes */
    gap: 1.5rem; /* Optional: Add space between quotes */
}

.quote {
    margin-bottom: 1.5rem;
    max-width: 320px;
    font-style: italic;
}

.quote h4 {
    margin-bottom: 0.25rem;
}

/* video */
.video-container {
    position: relative;
    width: 100%;
    margin: 20px auto;
}

.video-container p {
    margin-top: 0.7rem;
}

.video-container-frame {
    position: relative;
}


.project-video {
    position: relative;
    width: 100%;
    max-height: 100vh;
}

.play-overlay {
    display: flex; /* Initially visible */
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer; /* Clickable overlay */
    pointer-events: none; /* Prevent interaction with the image itself */
}

.play-icon {
    width: 130px !important;
    height: 130px !important;
    object-fit: unset !important;
    pointer-events: none; /* Prevent interaction with the image itself */
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 1000px;
}

/* Responsive behavior for smaller screens */
@media (max-width: 768px) {
    .project-detail-page h2 {
        margin-bottom: 2rem;
    }
    .project-description-container {
        margin-top: 2rem;
    }
    .project-detail-page {
        padding-top: 15%;
    }

    .small-grey-text {
        font-size: 0.8rem;
    }

    .project-description-container {
        flex-direction: column;
    }

    .project-description, .project-side-info {
        width: 100%;
        text-align: left; /* Reset text alignment on smaller screens */
        margin-right: 0;
    }

    .project-side-info {
        margin-top: 10px; /* Add space between the two sections */
    }
    .play-icon {
        width: 90px !important;
        height: 90px !important;
        padding: 10px;
    }
    
}

/* Ensure project images take up the full width of the available space */
.project-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%; /* Full width of the container */
    margin: 48px 0;
    cursor: pointer;
}

/* Ensure consistent sizing for the images */
.project-images img {
    width: 100%; /* Always take up full width */
    /* height: 50vh; */
    height: auto;
    object-fit: cover;
}

/* Ensure the text elements also respect the container's width */
.project-images_name {
    opacity: 0.8;
    margin-bottom: 1.5rem;
    width: 100%;
}

.project-images:hover .project-images_name {
    opacity: 1;
}

.project-image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    margin: 0.5rem 0;
}

/* Ensure image wrapper fills available space */
.project-image {
    width: 100%;
    height: 50vh; /* Ensures consistent height for the images */
    object-fit: cover; /* Crop the image to fit within the container */
    display: block;
    margin-bottom: 0.2rem;
}

.fullscreen-icon-overlay {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.7); /* Black background with opacity */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0; /* Hidden by default */
    transition: opacity 0.2s ease-in-out; /* Smooth transition on hover */
    pointer-events: none;
    z-index: 1;
}

.fullscreen-icon {
    font-size: 1.5rem;
    color: white;
    display: inline-block;
}

.project-image-wrapper:hover .fullscreen-icon-overlay,
.project-image-wrapper:focus .fullscreen-icon-overlay {
    opacity: 1; /* Show the overlay when the user hovers over the image */
}

.project-image-wrapper_frame {
    position: relative;
    width: 100%;
    /* height: 50vh;  */
    height: auto;
    overflow: hidden; /* Ensures only the image overflows within the frame when zooming */
    margin-bottom: 1rem; /* Ensure spacing between the image and text */
}

/* Image zoom effect */
.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crops the image to fit within the container */
    transition: transform 0.2s ease-in-out; /* Smooth transition for zoom effect */
}

.project-image-wrapper_frame:hover .project-image {
    transform: scale(1.01); /* Slight zoom-in effect */
}

.project-quote {
    font-style: italic;
}


@media (max-width: 768px) {
    .project-detail-page {
        width: auto;
    }

    .fullscreen-icon-overlay {
        opacity: 1;
        right: 24px;
    }
}


/* About Page Styling */

.about-page {
    max-width: 1000px;
    margin: 0 auto; /* Center the content */
    text-align: center;
}

.about-content {
    /* display: flex;
    align-items: center; */
    /* gap: 40px;
    margin: 60px 0 80px 0; */
    text-align: left;
}

.intro {
    text-align: left;
}

.about-content p,
.about-content span {
    padding-bottom: 1.5rem;
}

.portrait-image {
    width: 40%;
    height: 40%;
    border-radius: 50%; /* Makes the image circular */
    object-fit: cover; /* Ensures the image scales properly inside the circle */
    filter: grayscale(100%); 
    transition: .2s ease-out;
    opacity: 0.9;
}

.portrait-image:hover {
    /* filter: grayscale(0%); */
    opacity: 1;
}

.about-content p {
    flex: 1; 
    margin: 0;
}

.about-details {
    margin-top: 20px;
}

.about-details h2 {
    margin-bottom: 10px;
}

.about-details p {
    line-height: 1.6;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Four columns layout */
    grid-template-rows: auto;
    gap: 10px; /* Spacing between images */
    margin: 50px 0; /* Add space above the grid */
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Different grid sizes */
.grid-item-1 {
    grid-column: span 2; /* This image takes 2 columns */
    grid-row: span 2; /* This image takes 2 rows */
}
.grid-item-2 {
    grid-column: span 1; /* This image takes 1 column */
    grid-row: span 1; /* This image takes 1 row */
}
.grid-item-3 {
    grid-column: span 1;
    grid-row: span 2; /* This image takes 2 rows */
}
.grid-item-4 {
    grid-column: span 1;
    grid-row: span 1;
}
.grid-item-5 {
    grid-column: span 1;
    grid-row: span 1;
}
.grid-item-6 {
    grid-column: span 2; /* This image takes 2 columns */
    grid-row: span 1;
}
.grid-item-7 {
    grid-column: span 1;
    grid-row: span 1;
}
.grid-item-8 {
    grid-column: span 2;
    grid-row: span 1;
}
.grid-item-9 {
    grid-column: span 2;
    grid-row: span 1;
}

.about-images img {
    width: 100%;
    margin-bottom: 16px;
}

/* Mobile layout: max 3 columns */
@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: repeat(3, 1fr); /* Three columns for screens smaller than 768px */
    }

    .grid-item-8 {
        grid-column: span 3;
        grid-row: span 1;
    }
    .grid-item-9 {
        grid-column: span 3;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .about-content {
        display: flex;
        flex-direction: column;
        margin: 40px 0 60px 0;
    }

    .portrait-image {
        width: 60%;
        height: 60%;
    }
}

/* Press Page Styling */

.press-content {
    text-align: left;
}

.press-content img {
    margin: 24px 0;
    width: 100%;
}

.press-item {
    margin-bottom: 6rem;
    /* display: flex;
    align-items: center; */
}

.press-item a {
    margin-top: 1.2rem;
    /* display: flex;
    align-items: center; */
}

.press-item a {
    margin-bottom: 0.5rem;
}

.press-item h5,
.press-item h4,
.press-item h3 {
    margin-top: 0;
}

.img-maxwidth {
    max-width: 340px;
}


/* Hamburger Menu Styling */
.hamburger-menu {
    position: fixed;
    display: none; /* Hidden by default, visible on smaller screens */
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 20px;
    cursor: pointer;
    z-index: 1080; /* Ensure it stays above other elements */
    left: 5%;
    top: 22px;
}

.hamburger-menu .bar {
    height: 2px;
    width: 100%;
    background-color: white;
    transition: all 0.2s ease-in-out;
}

/* Fullscreen menu overlay */
.fullscreen-menu {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95); /* Dark background */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1050;
}

.fullscreen-menu a {
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    margin: 20px 0;
    transition: color 0.2s ease;
}

.fullscreen-menu a:hover {
    color: #666666; /* Change color on hover */
}

.fullscreen-menu a.active {
    text-decoration: underline; /* Add underline when active */
}

/* Hamburger to Cross Animation */
.hamburger-menu.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger-menu.open .bar:nth-child(2) {
    opacity: 0; /* Hide the middle bar */
}

.hamburger-menu.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Show the hamburger menu on smaller screens */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .main-menu_items {
        display: none; /* Hide main menu items */
    }

    .fullscreen-menu.open {
        display: flex; /* Show fullscreen menu when open */
    }
}


/* Contact */

.contact-content {
    padding: 32px 0;
    display: flex;
    align-items: center;
}

.contact-content img {
    margin-right: 40px;
}

.contact-content .column {
    text-align: left;
}

@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-content img {
        margin-right: 0;
        margin-bottom: 40px;
    }
    
}

/* Email Button Styling */
.email-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #000; /* Button background color */
    color: #fff; /* Text color */
    text-decoration: none; /* Remove underline */
    transition: background-color 0.2s ease-in-out;
    font-size: 1rem;
    border: 2px solid white;
    margin-top: 40px;
}

.email-button:hover {
    background-color: white; /* Darken the button color on hover */
    cursor: pointer; /* Indicate that it's clickable */
    border-radius: 5px; /* Slightly rounded corners */
    color: #000;
}

.column {
    flex-direction: column;
}