/* All Include Files */
@import '../includes/_variables.css';
@import '../includes/_global-styles.css';
@import '../includes/_custom-classes.css';

/* All Component Files */
@import '../components/_navbar.css';
@import '../components/_footer.css';

/* Hero Section */
.hero {
    width: 100%;
}

.hero .container {
    padding: 200px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero .container .hero-left h1 {
    font-size: 60px;
    margin-bottom: 40px;
}

.hero .container .hero-left h1 span {
    color: var(--primary-color);
}

.hero .container .hero-left h3 {
    font-size: 22px;
    margin-bottom: 40px;
}

.hero .container .hero-left p {
    font-size: 20px;
    margin-bottom: 40px;
}

.hero .container .hero-left a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 270px;
    height: 60px;
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    font-size: 20px;
    color: #fff;
    transition: all 0.3s ease;
}

.hero .container .hero-left a:hover {
    background: transparent;
    color: var(--primary-color);
    box-shadow: none;
}

.hero .container .hero-right {
    margin-left: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero .container .hero-right img {
    width: 300px;
    margin-bottom: 50px;
}

.hero .container .hero-right .social-links {
    display: flex;
}

.hero .container .hero-right .social-links a {
    margin-right: 30px;
}

.hero .container .hero-right .social-links a:last-child {
    margin-right: 0px;
}

.hero .container .hero-right .social-links a svg path {
    transition: all 0.3s ease;
}

.hero .container .hero-right .social-links a:hover svg path {
    fill: var(--primary-color);
}

/* Work Section */
.work {
    width: 100%;
    margin-bottom: 100px;
}

.work .container h2 {
    font-size: 45px;
    margin-bottom: 40px;
}

.work .container p {
    font-size: 20px;
    margin-bottom: 50px;
}

.work .container .works-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

.work .container .works-wrapper .works-item {
    width: 100%;
    cursor: pointer;
    position: relative;
}

.work .container .works-wrapper .works-item:nth-child(1) {
    grid-column: 1 / -1;
}

.work .container .works-wrapper .works-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work .container .works-wrapper .works-item .works-item-overlay {
    background: rgba(65, 65, 65, 0.8);
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    padding-left: 50px;
    padding-right: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.work .container .works-wrapper .works-item:hover .works-item-overlay {
    opacity: 1;
    pointer-events: all;
}

.work .container .works-wrapper .works-item .works-item-overlay h3 {
    font-size: 25px;
    color: #fff;
    margin-bottom: 30px;
}

.work .container .works-wrapper .work:nth-child(1) .work-overlay h3 {
    font-size: 30px;
}

.work .container .works-wrapper .works-item .works-item-overlay p {
    font-size: 20px;
    color: #fff;
    margin-bottom: 0px;
}

/* Footer Banner */
.footer-banner {
    width: 100%;
    padding: 100px 0px;
    background: #F5F5F5;
}

.footer-banner .container h2 {
    font-size: 30px;
    margin-bottom: 40px;
}

.footer-banner .container a {
    display: flex;
    align-items: center;
    width: fit-content;
    font-family: 'Helvetica Bold';
    font-size: 25px;
    color: var(--primary-color);
}

.footer-banner .container a svg {
    margin-right: 10px;
}

.footer-banner .container a:hover {
    text-decoration: underline;
}

/* Responsive */

/* Hero Section (Responsive) */
@media only screen and (max-width: 1050px) {
    .hero .container .hero-left h1 {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .hero .container .hero-left h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .hero .container .hero-left p {
        font-size: 16px;
    }

    .hero .container .hero-left a {
        width: 220px;
        height: 50px;
        font-size: 18px;
    }

    .hero .container .hero-right {
        margin-left: 0px;
        margin-bottom: 50px;
    }
}

@media only screen and (max-width: 768px) {
    .hero .container {
        padding: 120px 0px 80px 0px;
        flex-direction: column;
    }

    .hero .container .hero-left {
        order: 2;
    }
}

@media only screen and (max-width: 450px) {
    .hero .container .hero-left h3 {
        font-size: 16px;
    }

    .hero .container .hero-left p {
        font-size: 14px;
    }

    .hero .container .hero-left a {
        width: 100%;
    }
}

@media only screen and (max-width: 374px) {
    .hero .container .hero-left h1 {
        font-size: 35px;
    }
}

@media only screen and (max-width: 330px) {
    .hero .container .hero-left h1 {
        font-size: 32px;
    }
}

/* Works Section */
@media only screen and (max-width: 1250px) {
    .work .container .works-wrapper .works-item .works-item-overlay h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .work .container .works-wrapper .work:nth-child(1) .work-overlay h3 {
        font-size: 25px;
    }

    .work .container .works-wrapper .works-item .works-item-overlay p {
        font-size: 18px;
    }
}

@media only screen and (max-width: 1050px) {
    .work .container .top-desc {
        font-size: 16px;
    }
}

@media only screen and (max-width: 768px) {
    .work .container .works-wrapper {
        grid-template-columns: 1fr;
    }

    .work .container .works-wrapper .works-item {
        height: 450px;
    }

    .work .container .works-wrapper .works-item .works-item-overlay {
        padding: 10px;
    }

    .work .container .works-wrapper .works-item:hover .works-item-overlay {
        opacity: 0;
        pointer-events: none;
    }

    .work .container .works-wrapper .works-item .works-item-overlay.active {
        opacity: 1;
        pointer-events: all;
    }
}

@media only screen and (max-width: 450px) {
    .work .container h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }
    
    .work .container .works-wrapper .works-item {
        height: 270px;
    }

    .work .container .top-desc {
        font-size: 14px;
    }
}

/* Footer Banner (Responsive) */
@media only screen and (max-width: 1250px) {
    .footer-banner .container h2 {
        font-size: 24px;
    }

    .footer-banner .container a {
        font-size: 20px;
    }
}

@media only screen and (max-width: 768px) {
    .footer-banner {
        padding: 80px 0px;
    }
}