body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: #f7f7f7;
}
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 40px 10px 40px;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    background: #f7f7f754 !important;
}
.logo {
    font-size: 24px;
    font-weight: bold;
    color: rgb(0, 0, 0);
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}
.nav-menu a{color: black;}
.nav-menu a:hover {
    color: #000000;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: rgb(0, 0, 0);
    transition: width 0.3s ease;
}

.image-gallery img {
    width: 100%;
    height: auto;
    display: block;
}

.image-gallery {
    width: 120%;
    margin:0 5%;
}
.text-column{
    width: 80%;
}

/* Container */
.container {
    margin-top: 5vh;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;  /* px-4 */
    padding-right: 1rem; /* px-4 */
}

@media (min-width: 768px) {
    .container {
        padding-left: 2rem;  /* md:px-8 */
        padding-right: 2rem; /* md:px-8 */
    }
}
@media (min-width: 1024px) {
    .container {
        padding-left: 3rem;  /* lg:px-12 */
        padding-right: 3rem; /* lg:px-12 */
    }
}


/* Header */

/* Main Content */
.main-content {
    padding-top: 3rem;    /* py-12 */
    padding-bottom: 3rem; /* py-12 */
}

.content-grid {
    display: flex;
}
.contactContainer{
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
#greeting {
    display: inline-block;
    font-style: italic;
    font-weight: 700; /* Bold */
    transition: opacity 0.1s ease-in-out, transform 0.2s ease-in-out;
}
/* State for when the element is changing */
#greeting.fade {
    opacity: 0;
    transform: translateY(15px);
}

.contactContainer h1 {
    margin-top: 20vh;
    font-size: 2.2rem;
}
.contactContainer a{
    font-size: 2.2rem;
}


.image-gallery > div:not(:last-child) {
    margin-bottom: 2rem; /* space-y-8 */
}


.sticky-content {
    position: sticky;
    top: 6rem; /* top-12 */
}
.sticky-content > div:not(:last-child) {
    margin-bottom: 2.5rem; /* space-y-10 */
}
.sticky-content .text-block > *:not(:last-child) {
    margin-bottom: 0.75rem; /* space-y-3 */
}

.text-column h1 {
    font-size: 1.875rem; /* text-3xl */
    font-weight: 700;
}
.text-column h2 {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 700;
}
.text-column .subtitle {
    font-size: 0.875rem; /* text-sm */
    color: #6b7280; /* text-gray-500 */
}
.text-column p {
    color: #4b5563; /* text-gray-600 */
    line-height: 1.625; /* leading-relaxed */
}

/* Credits Section */
.credits-block {
    font-size: 0.875rem; /* text-sm */
}
.credits-block > div:not(:last-child) {
    margin-bottom: 1rem; /* space-y-4 */
}
.credit-item {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem; /* gap-4 */
}
.credit-item .label {
    font-weight: 600; /* font-semibold */
    color: #1f2937; /* text-gray-800 */
}
.credit-item .value {
    grid-column: span 2 / span 2; /* col-span-2 */
    color: #4b5563; /* text-gray-600 */
}

/* Footer */
.footer {
    background-color: #080808; /* bg-gray-900 */
    color: #ffffff;
    margin-top: 6rem; /* mt-24 */
}
.footer-grid {
    padding-top: 3rem;
    padding-bottom: 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}
 @media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }
}

.footer h3 {
    font-size: 1.125rem;
    font-weight: 700;
}
.footer h4 {
    font-weight: 600;
}
.footer .contact-info, .footer .socials a {
    color: #999a9c; /* text-gray-400 */
    font-size: 0.875rem;
}
.footer .contact-info:first-of-type {
     margin-top: 0.5rem;
}
.footer .socials {
    margin-top: 0.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem; /* space-x-4 */
}
 @media (min-width: 768px) {
    .footer .socials {
        justify-content: flex-start;
    }
}

.footer .socials a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #2f3031; /* border-gray-800 */
}
.footer-bottom .container {
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 0.75rem;
    color: #6b7280; /* text-gray-500 */
    text-align: center;
}

.about{
    display: flex;
    flex-direction: column;
}
.about .row{
    display: flex;
    flex-direction: row;
    width: 60vw;
    margin: 5vh auto;
}
.row .imgholder{width: 40%; margin-right: 10%;}
.imgholder img{
    width: 100%;
    filter: grayscale(100%);
    border-radius: 12px;
    transition: ease-in-out 0.2s;
}
.row .textBox{ width: 50%;}
.row:hover img{
    filter: grayscale(0%);

}
.contactLink{
    position: relative;
    display: inline-block;
    text-decoration: none;
    margin-top: 10px;
    padding: 10px 30px;
    border-radius: 90px;
    transition: 0.4s ease-in-out;
}
.contactLink:hover{
    color: white;
    background-color: black;
}

.ftImg{
    width: 120px;
}







@media (max-width: 480px) {

.mobile-menu-toggle{
    background-color: black;
}
.nav-menu a {
    color: rgb(255, 255, 255);
}
.contactContainer h1 {
    margin-top: 5vh;
    font-size: 1.5rem;
}
.contactContainer a{
    font-size: 1.3rem;
}
.content-grid {
    display: flex;
    flex-direction: column-reverse;
}

.container {
    margin-top: 5vh;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 2rem 1rem;
}
.text-column{
    width: 100%;
}
.image-gallery {
    width: 100%;
    margin: 0;
    margin-top: 8vh;
}
.imgholder img{
    width: 100%;
    filter: grayscale(0%);
    border-radius: 12px;
    transition: ease-in-out 0.2s;
}
.about .row{
    flex-direction: column;
    width: 90vw;
}
.row .textBox {
    width: 100%;
}
.row .imgholder {
    width: 100%;
    margin-right: 0%;
}

}