/* Custom styles for Duy's Front Lawn */

body {
    font-family: "Plus Jakarta Sans", sans-serif;
}

.text-gradient {
    background: linear-gradient(45deg, #4158d0, #c850c0, #ffcc70);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary-to-secondary {
    background: linear-gradient(45deg, #4158d0, #c850c0);
}

.notion-frame {
    height: 100vh;
    width: 100%;
    border: none;
}

.left-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow-y: auto;
}

.site-title {
    font-size: 2rem;
    font-weight: 800;
    color: #4158d0;
    margin-bottom: 2rem;
}

.badge-custom {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.tagline {
    font-size: 1.35rem;
    font-weight: 300;
    line-height: 1.5;
    color: #505050;
    margin-bottom: 1.5rem;
}

.main-heading {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.coke-icon {
    width: 18px;
    vertical-align: middle;
    margin-left: 5px;
}

.btn-custom {
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #4158d0;
    border-color: #4158d0;
}

.btn-primary:hover {
    background-color: #3548b0;
    border-color: #3548b0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(65, 88, 208, 0.3);
}

.btn-outline-dark:hover {
    background-color: #333;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.team-img-container {
    margin-top: 1.5rem;
    display: flex;
    justify-content: left;
    align-items: center;
    width: 100%;
}

.team-img {
    width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
    .left-content {
        height: auto;
        padding: 2rem 1.5rem;
    }

    .main-heading {
        font-size: 2.5rem;
    }

    .notion-frame {
        height: 500px;
        margin-top: 2rem;
    }

    .team-img {
        width: 250px;
        height: 250px;
    }
}
