/* 
* Looksgreat Website - Main Stylesheet
* Custom CSS for looksgreat.id Bootstrap recreation
*/

/* Global Styles */
:root {
    --primary-color: #0e5b9b;
    --secondary-color: #333333;
    --light-color: #ffffff;
    --dark-color: #000000;
    --gray-color: #f5f5f5;
}

body {
    font-family: "Montserrat", sans-serif;
    color: var(--secondary-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    text-transform: uppercase;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 0;
    padding: 10px 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

.btn-outline-light {
    background-color: transparent;
    border-color: #eee;
    border-radius: 0;
    padding: 10px 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

.btn-primary:hover {
    background-color: #86b7fe;
    border-color: #86b7fe;
    color: #000000 !important;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 0;
    padding: 10px 30px;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Header & Navigation */
.navbar {
    padding: 15px 0;
    background-color: var(--dark-color);
}

.navbar-brand img {
    height: 80px;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--light-color);
    font-weight: 500;
    padding: 5px 15px;
    text-transform: uppercase;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.dropdown-menu {
    background-color: var(--dark-color);
    border-radius: 0;
    border: none;
}

.dropdown-item {
    color: var(--light-color);
    font-weight: 500;
    padding: 10px;
    text-transform: uppercase;
    font-size: 14px;
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.navbar-toggler {
    border: none;
}

.tanya-cs {
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 0;
    padding: 8px 15px;
    font-weight: 600;
}

.tanya-cs:hover {
    background-color: #86b7fe;
    color: var(--dark-color) !important;
}

/* Hero Sections */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    color: var(--light-color);
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Service Cards */
.service-card {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    color: var(--light-color);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 50%,
            rgba(0, 0, 0, 0.8) 100%);
}

.service-content {
    position: relative;
    z-index: 1;
    padding: 30px;
    width: 100%;
}

.service-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

/* Feature Cards */
.feature-card {
    padding: 30px;
    margin-bottom: 30px;
    height: 100%;
    background-color: var(--light-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-text {
    color: #666;
    font-size: 14px;
}

/* Experience Section */
.experience-section {
    padding: 80px 0;
    background-color: #fff;
}

.experience-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
}

.experience-title span {
    color: var(--primary-color);
}

.stats-item {
    text-align: center;
    margin-bottom: 30px;
}

.stats-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stats-text {
    font-size: 1.2rem;
    font-weight: 600;
}

.h250 img {
    height: 250px !important;
    max-height: 250px !important;
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    /* margin-top: 50px; */
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #ffffff;
    background-color: #0d5795;
    border-color: var(--bs-nav-tabs-link-active-border-color);
    border-radius: 0;
}

.client-logo {
    transition: all 0.3s ease;
    max-width: 800px;
}

.client-logo:hover {
    filter: grayscale(0%);
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
}

.gallery-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
}

.gallery-item {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item-social img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
    margin-bottom: 1.5rem;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item2 img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
    margin-bottom: 1.5rem;
}

/* Form Section */
.form-section {
    padding: 80px 0;
    background-color: var(--gray-color);
}

.form-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.form-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.form-control {
    border-radius: 0;
    padding: 12px 15px;
    margin-bottom: 20px;
}

.form-select {
    border-radius: 0;
    padding: 12px 15px;
    margin-bottom: 20px;
    height: auto;
}

.tanya-cs {
    padding: 10px !important;
    margin: -10px 10px;
    min-width: 150px;
    text-align: center;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 80px 0 30px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 80px;
}

.footer-text {
    margin-bottom: 30px;
    color: #999;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--light-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

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

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-address {
    margin-bottom: 20px;
    color: #999;
}

.footer-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: #333;
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    color: var(--light-color);
}

/* Blog Styles */
.blog-card {
    margin-bottom: 30px;
    background-color: var(--light-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 450px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 20px;
}

.blog-category {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 5px 10px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.blog-text {
    color: #666;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    color: #999;
    font-size: 0.9rem;
}

/* Workshop Styles */
.workshop-slider {
    position: relative;
    background-color: #000000;
}

.bg-biru {
    background-color: rgb(11 68 112) !important;
    color: #eee;
}

.workshop-slide {
    height: 55rem;
    background-size: cover;
    background-position: center;
}

.workshop-content {
    padding: 80px 0;
    background-color: var(--dark-color);
    color: var(--light-color);
}

.workshop-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.workshop-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Video thumbnail play button */
.video-thumbnail {
    cursor: pointer;
    position: relative;
    display: inline-block;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 3rem;
    color: white;
    transform: translate(-50%, -50%);
    opacity: 0.8;
    transition: opacity 0.3s;
}

.video-thumbnail:hover .play-button {
    opacity: 1;
}

.video-popup {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-popup-content {
    background-color: #000;
    padding: 10px;
    border-radius: 10px;
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.video-popup-content video {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.video-popup .close {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}


#image-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#image-popup img {
    max-width: 90%;
    max-height: 90%;
    border: 4px solid white;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .service-title {
        font-size: 2rem;
    }

    .experience-title,
    .gallery-title,
    .form-title {
        font-size: 2rem;
    }

    .stats-number {
        font-size: 2.5rem;
    }

    .client-logo {
        max-width: 100px;
    }
}

@media (max-width: 767.98px) {
    .service-content {
        text-align: center;
    }

    .hero-content {
        text-align: center;
        display: block;
        margin: 0 auto;
    }

    .stats-number {
        font-size: 2.2rem;
        margin-bottom: 0;
    }

    .navbar-nav,
    .dropdown-item {
        text-align: center;
    }

    .blog-image {
        height: 250px;
        overflow: hidden;
    }

    .navbar-brand img {
        height: 45px;
    }

    .navbar {
        padding: 5px 0;
        background-color: var(--dark-color);
    }

    .dropdown-item {
        color: var(--light-color);
        font-weight: 500;
        padding: 5px 15px;
        text-transform: uppercase;
        font-size: 16px;
        background-color: #191919;
    }

    .tanya-cs {
        padding: 10px !important;
        margin: auto;
        min-width: 150px;
        text-align: center;
    }

    .gallery-item2 img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        transition: transform 0.3s ease;
        margin-bottom: 1.5rem;
    }

    .gallery-item img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .hero-section {
        height: 70vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .service-card {
        height: 400px;
    }

    .service-title {
        font-size: 1.8rem;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-title {
        font-size: 1.2rem;
    }

    .experience-title,
    .gallery-title,
    .form-title {
        font-size: 1.8rem;
    }

    .stats-number {
        font-size: 2rem;
    }

    .client-logo {
        max-width: 100%;
        margin: 10px;
    }

    .footer {
        padding: 50px 0 20px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .service-card {
        height: 300px;
    }

    .service-title {
        font-size: 1.5rem;
    }

    .experience-title,
    .gallery-title,
    .form-title {
        font-size: 1.5rem;
    }

    .stats-number {
        font-size: 1.8rem;
    }

    .client-logo {
        max-width: 100%;
        margin: 8px;
    }
}

