* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: bold;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 4rem;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.hero-nav {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.hero-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: bold;
    transition: opacity 0.3s ease;
}

.hero-nav-link:hover {
    opacity: 0.7;
}

.hero-nav-separator {
    color: #ffffff;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: bold;
    opacity: 0.6;
}

.connect,
.services,
.services-showcase,
.portfolio-showcase,
.learn-showcase {
    padding: 60px 10px;
    text-align: center;
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
    text-align: center;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding: 1rem;
}

.social-item:hover {
    transform: translateY(-5px);
    opacity: 0.7;
}

.social-item i {
    font-size: clamp(2rem, 4vw, 3rem);
}

.social-item span {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 600;
}

.services-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.services-intro {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: bold;
    margin-bottom: 1rem;
}

.services-list {
    list-style: none;
    padding: 0;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    font-weight: bold;
}

.services-list li {
    margin-bottom: 0.3rem;
}

.services-list li::before {
    content: "• ";
    font-size: 1.5em;
    margin-right: 0.5rem;
}

.services-showcase {
    text-align: center;
}

.services-intro-text {
    max-width: 100%;
    margin: 0 auto 1.5rem auto;
    padding: 0 2px;
    text-align: left;
}

.services-intro-text p {
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    color: #ccc;
    line-height: 1.6;
    margin: 0;
    font-weight: bold;
    text-align: justify;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto 2rem auto;
    overflow: hidden;
}

/* Ensure only one row is shown */
.showcase-grid .showcase-item:nth-child(n+7) {
    display: none;
}

/* Large screens */
@media (min-width: 1201px) {
    .showcase-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    .showcase-grid .showcase-item:nth-child(n+7) {
        display: none;
    }
}

/* Adjust for smaller screens */
@media (max-width: 1200px) {
    .showcase-grid {
        grid-template-columns: repeat(6, 1fr);
        max-width: 100%;
        gap: 0.8rem;
    }
}

/* Tablet screens: adjust for 3 items */
@media (max-width: 900px) {
    .showcase-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
        gap: 1rem;
    }

    .showcase-grid .showcase-item:nth-child(n+4) {
        display: none;
    }
}

.showcase-item {
    background-color: #111;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.showcase-item:hover {
    transform: translateY(-5px);
}

.showcase-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #222;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.showcase-content {
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.showcase-name {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.showcase-description {
    font-size: 0.75rem;
    opacity: 0.8;
    margin-bottom: 0.6rem;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    flex: 1;
}

.showcase-price {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: #ffffff;
}

.showcase-details-btn {
    background-color: #333;
    color: #ffffff;
    padding: 0.4rem 0.2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.7rem;
    white-space: nowrap;
    width: 100%;
    text-align: center;
}

.showcase-details-btn:hover {
    background-color: #555;
}

.see-more {
    text-align: right;
}

.see-more-link {
    color: #ffffff;
    text-decoration: underline;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.see-more-link:hover {
    opacity: 0.7;
}

.footer {
    padding: 1.5rem 5px 1rem 5px;
    border-top: 1px solid #ffffff;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 1.5rem;
    justify-items: start;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.footer-column:nth-child(2) {
    justify-self: center;
    align-items: flex-start;
}

.footer-column:nth-child(3) {
    justify-self: end;
    align-items: flex-start;
}

.footer-title {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
    color: #ffffff;
    margin-left: 0;
    padding-left: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer-links li {
    display: flex;
    align-items: center;
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
}

.footer-links li::before {
    content: "•";
    margin-right: 0.5rem;
    color: #ffffff;
    font-weight: bold;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-links li:not(:has(a)) {
    color: #ffffff;
}

.footer-copyright {
    text-align: center;
    padding-top: 0.8rem;
}

.footer-copyright p {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 600;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        text-align: left;
        justify-items: start;
    }

    .footer-column {
        align-items: flex-start;
        width: 100%;
    }

    .footer-column:nth-child(2) {
        justify-self: center;
        align-items: flex-start;
    }

    .footer-column:nth-child(3) {
        justify-self: end;
        align-items: flex-start;
    }

    .footer-title {
        margin-bottom: 0.5rem;
    }

    .footer-links {
        gap: 0.25rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1.2rem 5px 0.8rem 5px;
    }

    .footer-columns {
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .footer-title {
        margin-bottom: 0.4rem;
        font-size: 0.9rem;
    }

    .footer-links {
        gap: 0.2rem;
    }

    .footer-links li {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        height: 50vh;
        min-height: 350px;
    }

    .social-links {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, auto);
        gap: 0.6rem;
        max-width: 650px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .social-item {
        padding: 0.6rem 0.3rem;
    }

    .social-item i {
        font-size: 2.2rem;
    }

    .social-item span {
        font-size: 0.75rem;
    }

    .connect,
    .services,
    .services-showcase,
    .portfolio-showcase,
    .learn-showcase {
        padding: 40px 10px;
    }
}

@media (max-width: 600px) {
    .showcase-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        max-width: 98%;
        margin: 0 auto 1rem;
        padding: 0;
    }

    .showcase-grid .showcase-item {
        display: block !important;
    }

    .showcase-image {
        height: 80px;
    }

    .showcase-content {
        padding: 0.4rem;
    }

    .showcase-name {
        font-size: 0.7rem;
        margin-bottom: 0.2rem;
    }

    .showcase-description {
        display: none;
    }

    .showcase-price {
        font-size: 0.7rem;
        margin-bottom: 0.3rem;
    }

    .showcase-details-btn {
        padding: 0.3rem 0.4rem;
        font-size: 0.6rem;
        min-width: 100%;
    }
}

/* Mobile 480px and below */
@media (max-width: 480px) {
    .showcase-grid, .portfolio-showcase-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.4rem;
        max-width: 99%;
    }

    .showcase-grid .showcase-item, 
    .portfolio-showcase-grid .portfolio-showcase-item {
        display: block !important;
    }
    
    .showcase-image, .portfolio-showcase-image {
        height: 60px;
    }

    .showcase-name, .portfolio-showcase-name {
        font-size: 0.6rem;
    }

    .showcase-price {
        font-size: 0.6rem;
    }

    .showcase-details-btn, .portfolio-showcase-details-btn {
        font-size: 0.55rem;
        padding: 0.2rem 0.3rem;
    }
}

@media (max-width: 480px) {
    .social-links {
        gap: 0.4rem;
        max-width: 90%;
        padding: 0 10px;
    }

    .social-item {
        padding: 0.5rem 0.2rem;
    }

    .social-item i {
        font-size: 2rem;
    }

    .social-item span {
        font-size: 0.7rem;
    }
}

@media (max-width: 380px) {
    .hero {
        height: 45vh;
        min-height: 300px;
    }

    .social-links {
        gap: 0.3rem;
        max-width: 95%;
        padding: 0 8px;
    }

    .social-item {
        padding: 0.4rem 0.1rem;
    }

    .social-item i {
        font-size: 1.8rem;
    }

    .social-item span {
        font-size: 0.65rem;
    }

    .showcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 0.4rem;
        max-width: 99%;
        padding: 0;
        margin: 0 auto 1rem;
    }

    .showcase-grid .showcase-item:nth-child(n+3) {
        display: none;
    }

    .showcase-image {
        height: 90px;
    }

    .showcase-content {
        padding: 0.5rem;
    }

    .showcase-name {
        font-size: 0.75rem;
    }

    .showcase-description {
        font-size: 0.65rem;
    }

    .showcase-price {
        font-size: 0.75rem;
    }

    .showcase-details-btn {
        padding: 0.3rem 0.5rem;
        font-size: 0.6rem;
        min-width: 75px;
    }
}

/* Learn How To Showcase Styles */
.learn-showcase {
    text-align: center;
}

.learn-showcase .learn-intro-text {
    text-align: left;
    max-width: 100%;
    margin: 0 auto 1.5rem auto;
    padding: 0 2px;
}

.learn-showcase .learn-intro-text p {
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    color: #ccc;
    line-height: 1.6;
    margin: 0;
    font-weight: bold;
    text-align: justify;
}

.learn-showcase-posts {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.learn-showcase-post {
    display: flex;
    padding: 1rem 0;
    transition: opacity 0.3s ease;
    position: relative;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid #333;
}

.learn-showcase-post:last-child {
    border-bottom: 1px solid #333;
}

.learn-showcase-post:hover {
    opacity: 0.8;
}

.learn-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.learn-post-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
    color: #ffffff;
    line-height: 1.3;
}

.learn-post-category {
    font-size: 1rem;
    color: #ccc;
    margin: 0;
    font-weight: normal;
}

.learn-post-image {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    background-color: #222;
}

.learn-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.learn-post-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

@media (max-width: 768px) {
    .learn-showcase-post {
        gap: 0.8rem;
        padding: 1rem 0;
    }

    .learn-post-image {
        width: 100px;
        height: 60px;
    }

    .learn-post-title {
        font-size: 1.1rem;
        margin-bottom: 0.2rem;
    }

    .learn-post-category {
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .learn-showcase-posts {
        max-width: 95%;
        padding: 0;
    }

    .learn-post-title {
        font-size: 1.1rem;
    }

    .learn-post-category {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .learn-showcase-posts {
        max-width: 98%;
    }

    .learn-post-image {
        height: 100px;
    }

    .learn-post-title {
        font-size: 1rem;
    }

    .learn-post-category {
        font-size: 0.8rem;
    }
}

@media (max-width: 380px) {
    .learn-post-image {
        height: 80px;
    }

    .learn-post-title {
        font-size: 0.9rem;
    }

    .learn-post-category {
        font-size: 0.75rem;
    }
}

/* Portfolio Showcase Styles */
.portfolio-showcase {
    text-align: center;
}

.portfolio-showcase .portfolio-intro-text {
    text-align: left;
    max-width: 100%;
    margin: 0 auto 1.5rem auto;
    padding: 0 2px;
}

.portfolio-showcase .portfolio-intro-text p {
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    color: #ccc;
    line-height: 1.6;
    margin: 0;
    font-weight: bold;
    text-align: justify;
}

.portfolio-showcase-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto 2rem auto;
    overflow: hidden;
}

/* Ensure only one row is shown */
.portfolio-showcase-grid .portfolio-showcase-item:nth-child(n+7) {
    display: none;
}

/* Large screens */
@media (min-width: 1201px) {
    .portfolio-showcase-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    .portfolio-showcase-grid .portfolio-showcase-item:nth-child(n+7) {
        display: none;
    }
}

/* Tablet screens: adjust for 3 items */
@media (max-width: 900px) {
    .portfolio-showcase-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
        gap: 1rem;
    }

    .portfolio-showcase-grid .portfolio-showcase-item:nth-child(n+4) {
        display: none;
    }
}

.portfolio-showcase-item {
    background-color: #111;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.portfolio-showcase-item:hover {
    transform: translateY(-5px);
}

.portfolio-showcase-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #222;
}

.portfolio-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.portfolio-showcase-content {
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.portfolio-showcase-name {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.portfolio-showcase-role {
    font-size: 0.75rem;
    opacity: 0.8;
    margin-bottom: 0.6rem;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    flex: 1;
}

.portfolio-showcase-details-btn {
    background-color: #333;
    color: #ffffff;
    padding: 0.4rem 0.2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.7rem;
    white-space: nowrap;
    width: 100%;
    text-align: center;
}

.portfolio-showcase-details-btn:hover {
    background-color: #555;
}

@media (max-width: 600px) {
    .portfolio-showcase-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        max-width: 98%;
        margin: 0 auto 1rem;
        padding: 0;
    }

    .portfolio-showcase-grid .portfolio-showcase-item {
        display: block !important;
    }

    .portfolio-showcase-image {
        height: 80px;
    }

    .portfolio-showcase-content {
        padding: 0.4rem;
    }

    .portfolio-showcase-name {
        font-size: 0.7rem;
        margin-bottom: 0.2rem;
    }

    .portfolio-showcase-role {
        display: none;
    }

    .portfolio-showcase-details-btn {
        padding: 0.3rem 0.4rem;
        font-size: 0.6rem;
        min-width: 100%;
    }
}
        gap: 0.6rem;
        max-width: 98%;
        padding: 0;
        margin: 0 auto 1rem;
    }

    .portfolio-showcase-grid .portfolio-showcase-item:nth-child(n+3) {
        display: none;
    }

    .portfolio-showcase-image {
        height: 110px;
    }

    .portfolio-showcase-content {
        padding: 0.6rem;
    }

    .portfolio-showcase-name {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }

    .portfolio-showcase-role {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }

    .portfolio-showcase-details-btn {
        padding: 0.35rem 0.6rem;
        font-size: 0.65rem;
        min-width: 80px;
    }
}

@media (max-width: 380px) {
    .portfolio-showcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 0.4rem;
        max-width: 99%;
        padding: 0;
        margin: 0 auto 1rem;
    }

    .portfolio-showcase-grid .portfolio-showcase-item:nth-child(n+3) {
        display: none;
    }

    .portfolio-showcase-image {
        height: 90px;
    }

    .portfolio-showcase-content {
        padding: 0.5rem;
    }

    .portfolio-showcase-name {
        font-size: 0.75rem;
    }

    .portfolio-showcase-role {
        font-size: 0.65rem;
    }

    .portfolio-showcase-details-btn {
        padding: 0.3rem 0.5rem;
        font-size: 0.6rem;
        min-width: 75px;
    }
}