html, body {
    margin: 0 !important;
}
#wpadminbar {
    display: none;
}
body {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.80) 0%, rgba(255, 255, 255, 0.80) 100%), url("https://andres-sanchez-website.local/wp-content/uploads/2025/12/—Pngtree—silver-metal-gold-foil-texture_1447552-scaled.jpg") lightgray 50% / cover no-repeat;
}
h1 {
    margin: 1rem 0;
}
.home-container {
    display: flex;
    max-width: 1240px;
    height: 100vh;
    gap: 40px;
    margin: 0 auto;
    justify-content: space-between;
    overflow: hidden;
    align-items: center;
}

/* LEFT COLUMN */
.home-info {
    width: 48%; /* Adjust split as needed */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
}
.twitter-icon i, .linkedin-icon i, .email-icon i {
    position: relative;
    left: 3px;
}
.home-info h1 {
    color: #000;
    font-family: "Inter";
    font-size: 4em;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.home-info p, .home-info .social-links, .portfolio-description p {
    color: #000;
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.home-slider {
    width: 48%;
    height: 840px;
    position: relative;
    display: flex;
    align-items: center;
}

/* SWIPER SPECIFICS */
/* Container */
.swiper {
    width: 100%;
    height: 640px;
    overflow: hidden;
}
.swiper-wrapper {
    /* Helps align the stack vertically */
    align-items: center;
}
/* Slides */
.swiper-slide {
    background-position: center;
    background-size: cover;
    
    /* Image proportions */
    width: 372px !important;
    height: 372px !important;
    /* Styling to match the card look */
    border-radius: 30px; 
    overflow: hidden; /* Ensures image doesn't bleed out corners */
    
    /* Flexbox to center content if not just an image */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    box-shadow: 4px 4px 5px 0 rgba(0, 0, 0, 0.25);
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pagination Dots (Right side) */
.swiper-pagination-vertical.swiper-pagination-bullets, 
.swiper-vertical > .swiper-pagination-bullets {
    right: 20px; /* Position on the right */
}

/* Custom color for the active dot */
.swiper-pagination-bullet-active {
    background: #5b4dff; /* Purple/Blue color from your image */
}
/* Hide the wrapper content initially */
.swiper:not(.swiper-initialized) .swiper-wrapper {
    opacity: 0;
    transition: opacity 0.2s;
}




/* Once initialized, show it */
.swiper.swiper-initialized .swiper-wrapper {
    opacity: 1;
}

/* Barba Curtain */
.transition-curtain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    
    /* DEFAULT COLOR: Metallic Gray (Steel) */
    background-color: #e1e5e8; 
    
    z-index: 9999;
    transform: translateX(100%); 
    pointer-events: none;
}

/* Portfolio Item Pages */
.portfolio-container {
    position: relative; /* Anchor for absolute children */
    width: 100%;
    min-height: 100vh; /* Full screen height */
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* Flexbox to center the content box */
    display: flex;
    justify-content: center;
    align-items: center;
}/* The Color Overlay */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Sits above bg image */
    opacity: 0.75; /* The requested opacity */
}
.portfolio-info {
    position: relative;
    z-index: 10; /* Sits above the overlay */
    width: 100%;
    max-width: 1240px;
    padding: 2rem;
}
.portfolio-content {
    /* Optional: White card look, or remove this if you want transparent text */
    background-color: #ffffff; 
    padding: 3rem;
    border-radius: 30px;
    text-align: left;
    max-width: 720px;
}
.text-fade-up > * {
    /* Tells browser to prepare for 3D transforms */
    will-change: transform, opacity, filter;
    /* Prevents pixelation during 3D transform */
    -webkit-font-smoothing: antialiased;
}
.portfolio-content.gfcf {
    border: 2px solid #028482;
    box-shadow: 4px 4px 0px 0px #028482;
}

.portfolio-content.aaul {
    border: 2px solid #D6001C;
    box-shadow: 4px 4px 0px 0px #D6001C;
}
.portfolio-content.asc {
    border: 2px solid #4DEF78;
    box-shadow: 4px 4px 0px 0px #4DEF78;
}
.portfolio-content.mcliff {
    border: 2px solid #D6E565;
    box-shadow: 4px 4px 0px 0px #D6E565;
}
.portfolio-content.hirebetter {
    border: 2px solid #EC682A;
    box-shadow: 4px 4px 0px 0px #EC682A;
}

.portfolio-content > .portfolio-link-btn {
    display: inline-block;
    padding: 12px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.2s ease, background-color 0.2s;
    font-family: "Inter";
}
.portfolio-content.gfcf > .portfolio-link-btn {
    background-color: #F0A200;
}
.portfolio-content.aaul > .portfolio-link-btn {
    background-color: #D6001C;  
}
.portfolio-content.asc > .portfolio-link-btn {
    background-color: #4DEF78;  
}
.portfolio-content.mcliff > .portfolio-link-btn {
    background-color: #4F2E85;  
}
.portfolio-content.hirebetter > .portfolio-link-btn {
    background-color: #EC682A;
}
.portfolio-content > .back-home {
    text-align: left;
    margin-bottom: 20px;
    display: inline-block;
    font-size: 16px;
    color: #000;
    font-family: "Inter";
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 2px solid #000000;
}
/* Element Styling */
.portfolio-logo {
    max-width: 200px;
    height: auto;
    display: block;
}

.portfolio-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #333;
}

.portfolio-content.gfcf > .portfolio-link-btn:hover {
    background-color: #db9502;
}
.portfolio-content.aaul > .portfolio-link-btn:hover {
    background-color: #b8021a;
}
.portfolio-content.asc > .portfolio-link-btn:hover {
    background-color: #40c965;
}
.portfolio-content.mcliff > .portfolio-link-btn:hover {
    background-color: #351e59;
}
.portfolio-content.hirebetter > .portfolio-link-btn:hover {
    background-color: #c45623;
}


@media (min-width: 320px) and (max-width: 769px) {
    .portfolio-content {
        padding: 2em;
    }
    .portfolio-info {
        padding: 1rem;
    }
    .home-container {
        flex-wrap: wrap;
    }
    .home-info, .home-slider {
        width: 100%;
    }
    .home-info {
        padding: 3rem 2rem 0;
    }
    .home-slider, .swiper {
        height: auto;
    }
    .swiper-slide {
        width: 210px !important;
        height: 210px !important;
    }
    .swiper-wrapper {
        padding-bottom: 50px;
    }
}