#start-hero {
    padding-top: 20px;
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 100%;
    align-items: stretch;
    justify-content: space-around;

    .column {
        display: flex;
        justify-content: center;
        max-width: 50%;
    }
    
    .left-column {
        flex-direction: column;
        text-align: left;
        align-items: stretch;
        /* width: 60%; */
    }

    .left-column {
        max-width: 100% !important;
    }
    
    .left-column-text {
        display: flex;
    }

    .right-column {
        position: relative;
        width: 40%;
    }

    
    @media (max-width: 480px) {
        .right-column, .left-column {
            width: 100%;
        }
    }
    
    .big-full-name {
        text-align: left;
        font-family: 'Sorts Mill Goudy';
        color: #282299;
        max-height: 50%;
    }
    
    .big-full-name span{
        font-weight: 500;
        text-size-adjust: 100%;
        max-width: 100%; /* Ensures text doesn't overflow its container */
        font-size: min(50px, 3.5vw); /* Initial font size based on viewport width */
        margin-bottom: 20px;
        margin-top: 10px;
    }

    @media screen and (max-width: 768px) {
        .big-full-name span {
            font-size: min(50px, 2em);
        }
        
    }
    
    .upper-title h1{
        font-size: 1.1em;
        font-weight: 300;
        font-family: 'Karla';
        text-transform: uppercase;
    }
    
    .short-description {
        font-size: 1.4em;
        font-weight: 400;
        font-family: 'Sorts Mill Goudy';
    }
    
    .short-description::after {
      content: ""; /* This forces the last line to also stretch */
      display: inline-block;
      width: 100%;  /* This ensures the final line is justified */
      height: 0%;
    }


    @media screen and (max-width: 768px) {
        .short-description span{
            font-size: 1.6em;
        }
        
    }
    
    
    .all-waves {
        position: absolute;
        top: 10;
        left: 70%;
        transform: translate3d(-25%, -15%, 0);
        width: 40%;
        max-height: 40%;
    }

    
    .eye-svg {
        position: absolute;
        top: 10;
        bottom: 0%;
        transform: translate3d(-50%, 15%, 0);
        width: 70%;
        max-height: 50%;
        height: auto;
        overflow: hidden;

        svg {
            width: 60%
        }
    }
    
    @media (max-width: 768px) {
        .all-waves {
            left: 80%;
        }
    }

    .fixed-waves {
        width: 100%;
    }
    
    @media (max-width: 768px) {
        .fixed-waves {
            width: 100%;
            height: auto; /* Adjust the height as needed */
        }
    }
    
    .wave {
        width: 100%;
        height: 100%;
    }
    
    @media (max-width: 768px) {
        .wave {
            width: 80%;
            height: 80%;
        }
    }
    
    .main-image {
        display: block;
        max-width: 100%;
        padding: 20px;
    }

    .main-image img {
        max-width: 100%;
        max-height: 60vh;
    }

    a#porozmawiajmy {
        text-decoration: none;
    }
    
    .long-button {
        font-family: 'Karla';
        font-weight: 600;
        display: flex;
        justify-content: center;
        background-color: #f8f7f299;
        margin: 20px auto 20px 0;
        color: #282299;
        font-size: 1.4em;
        cursor: pointer;
        transition: all 0.7s;
        border: 1px solid #000;
        padding: 5px 5%;
        text-transform: uppercase;
        width: 90%;
    }
    
    .long-button:hover {
        border-color: transparent;
        background-color: #ce7474;
        color: #f8f7f2;    
    }
    
    @media (max-width: 768px) {
        .section-content {
            width: auto;
        }
    
        .columns {
            flex-direction: column;
        }
    
        .left-column, .right-column {
            padding: 0;
            display: flex;
            justify-content: space-around;
            max-width: 100%;
        }
    
        .big-full-name h2 {
            font-size: 28px;
        }
    
        .short-description span {
            font-size: 16px;
        }
    
        .long-button {
            padding: 8px 16px;
        }
    }
    
    @media (max-width: 480px) {
        .big-full-name h2 {
            font-size: 24px;
        }
    
        /* .short-description span {
            font-size: 14px;
        } */
    
        .long-button {
            padding: 6px 12px;
        }
    
        .section-title h2 {
            font-size: 24px;
        }
    }
}

@media (max-width: 480px) {
    #start-hero {
        flex-direction: column;
    }
}
