* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.columns {
    margin: 5rem auto;
    width: min(90%, 150rem);
    display: grid;
    grid-auto-flow: row;
    gap: 5em;
  }

  @media (min-width: 55em) {
    .columns {
      grid-auto-flow: column;
     }
  }
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  :root {  
    --clr-primary: #96e5ae;
    --clr-secondary: #315736;
    --clr-accent: #F7F7FF;
    --clr-gradient: linear-gradient(-90deg, var(--clr-primary), var(--clr-secondary));
    --ff-title: bungee, sans-serif;
    --ff-body: canada-type-gibson,sans-serif;
    --fw-body: 300;
    --fw-bold: 800;
    --fw-title: 400;
    --fw-number: 600;
  }
  
  body {
    min-height: 100vh;
    font-family: var(--ff-body);
    font-weight: var(--fw-body);
    font-size: 1.25rem;
  }
  
  a {
    color: inherit;
  }
  
  a:hover,
  a:focus {
    color: var(--clr-accent);
  }
  
  :focus {
    outline: 50px solid var(--clr-accent);
    outline-offset: 3px;
  }
  
  .title,
  .credits {
    text-align: center;
    text-transform: uppercase;
    padding: 1em 0 2em;
    margin: 0;
    background: var(--clr-gradient);
    position: relative;
    z-index: 1000;
  }
  
  .title {
    width: 100%;
    font-size: calc(1rem + 3vw);

    background-image: url('/static/images/pozadina.png');
    background-repeat: repeat-x;
    background-position: -10%,0;
    background-blend-mode: multiply;

    font-family: var(--ff-title);
    font-weight: var(--fw-title);
    color: white;
    text-shadow: 3px 5px 10px rgba(0,0,0, .4);
    clip-path: polygon(0 0, 100% 0%, 100% 60%, 0% 100%);
  }
  
  .title span {
      text-transform: none;
      font-weight: var(--fw-number);
      color: black;
      display: inline-block;
      position: absolute;
      left: 0;
      right: 0;
      font-size: 3em;
      top: -10%;
      z-index: -1;
      opacity: .55
    }
  
  .credits {
    font-family: var(--ff-title);
    width: 100%;
    margin: 0;
    padding: 6em 0 1em;
    clip-path: polygon(0 60%, 100% 0, 100% 100%, 0% 100%);
    color: rgba(black, .7);
  }
  
  .credits p:last-child {
    font-size: .8em;
  } 
  [class*="fk"]  {
    width: 350px;
}
body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
}
header {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: rgb(255, 255, 255);
    height: 50px;
}
.header-left {
    flex: 1;
}
.header-right {
    flex:1;
    width: 100%;
    box-sizing: border-box;
    display: flex; 
    justify-content: flex-end;
    align-items: center;
    margin-left: auto;
}
.login-status {
    display: flex;
    justify-content: center;
    align-items: center;
}
.username-displayed {
    color: #d56d30;
    font-weight: 800;
}
.logout-text {
    display: none;
    margin-left: 5px;
    color: #33516b; /* Adjust color as needed */
    font-weight: 800;
    cursor: pointer;
}
.login-status:hover .logout-text {
    display: block;
}
.login-status:hover .username-displayed {
    display: none;
}
.about-button {
    margin-right: 2px;
    padding: 1px;
    background-color: white;
    border: 2px solid transparent;
    transition: 0.3s;
}
.about-button:hover{
    border-bottom: 2px solid #333;
}
.logo {
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}
.language {
    display:flex;
    flex-direction: row;
}
.other-languages {
    display: none;
    position: absolute;
    z-index: 1;
}
.language-selected {
    width: 100%;
    display:flex;
    flex-direction: row;
    align-items: center;
}
.languages:hover .other-languages {
        display: block;
        position: absolute;
        z-index: 1;
    }
.main-button {
    margin : 0;
    padding: 20px,10px;
    box-sizing: border-box;
}
.orange {
    color: #d56d30; /* Orange */
}
.blue {
    color: #33516b; /* Blue */
}
.languages{
    flex:1;
    justify-content: right;
    position: relative;
    display: inline-block;
    max-width: 80px;
    
}
.languages button {
    display: flex; /* Use flexbox to align items */
    align-items: center; /* Center items vertically */
    border: none;
    background-color: #f4f4f4;
    cursor: pointer;
    font-size: 16px;
    padding: 2px 5px; /* Add some padding for better clickability */
    outline: none;
}

.languages img {
    width: 39px; /* Set a width for the SVG image */
    height: 26px; /* Set a height for the SVG image */
    margin-right: 0px; /* Space between the image and the text */
}
.profile-img {
    height: 27px;
    margin-inline: 5px;
    align-items: center;
}
.login-button {
    padding: 25px, 40px;
    border: none;
    background-color: white;
    outline: none;
}
.login-button:hover {
    border-bottom: 2px solid #333;
}

/* Main content styles */
.main-body {
    flex-grow:1;    
    background-color: #f4f4f4;
}
.main-content {
    flex-grow: 1; /* Allow this section to grow */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.home-image {
    flex: 3; /* Takes up 2/3 of the width */
    background: url('/static/images/pozadina.png') no-repeat center center/cover;
}

.info-section {
    flex: 4; /* Takes up 1/3 of the width */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    background-color: #f4f4f4; /* Optional: set a background color */
}

.fin-kab {
    font-size: 14vw;
    font-weight: bold;
    text-align: center;
}
.description {
    font-size: 2.5vw;
    margin-top: -2vw;
    font-weight: normal;
}

.fin-kab span:first-child {
    color: #d56d30; /* Orange */
}

.fin-kab span:last-child {
    color: #33516b; /* Blue */
}

.buy-button {
    align-items: center;
    padding: 20px 60px;
    background-color: #d56d30; /* Button color */
    color: white; /* Text color */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px; /* Button text size */
    margin-top: 2vw;
}

.buy-button:hover {
    background-color: #33516b; /* Change color on hover */
}
.buy-button:focus {
    outline: none;  
}
.buy-body {
    display:flex;
    flex-direction: column;
    align-items: center;
    flex:1;
}

.buy-label {
    flex:1;
    padding: 20px; /* Padding for the main content area */
    margin-bottom: 20px; /* Space between title/description and gray box */
    margin-left: 30px; /* More space on the left side */
    margin-right: auto;
}
.buy-label span{
    font-size: 150px;
}
.buy-label p{
    font-size: 30px;
}
.buy-bubble {
    flex:1;
    padding: 20px;
    max-width: 100%; /* Ensure the div doesn’t exceed the body width */
    max-height: 100%; /* Ensure the div doesn’t exceed the main height */
    overflow: auto; /* Allow internal scrolling if content overflows */
}
.gray-box {
    display:flex;
    flex-direction: row; /* Create a flexible layout */
    justify-content: space-around; /* Space out the sections evenly */
    background-color: #dadada; /* Light gray background */
    padding: 0px; /* Inner padding for the gray box */
    border-radius: 8px; /* Slightly rounded corners */
}

.section {
    text-align: center; /* Center align text and images in sections */
    flex: 1; /* Each section takes equal space */
    margin: 0px; /* Margin between sections */
}

.section img {
    width: 100%; /* Full width for images */
    max-width: 1000px; /* Set a max width for images */
    border-radius: 8px; /* Slightly round the image corners */
}

.section h2 {
    margin: 0; /* Space above and below headings */
    margin-top: -40px;
    font-size: 60px;
}

.section p {
    margin: 5px 0 15px; /* Space for paragraph */
    margin-inline: 90px;
    font-size: 24px;
}

.section button {
    padding: 15px 100px; /* Padding for buttons */
    border: none; /* Remove default border */
    background-color: #d56d30; /* Button color */
    color: white; /* Text color for button */
    cursor: pointer; /* Pointer cursor on hover */
    border-radius: 5px; /* Rounded corners for buttons */
    margin-bottom: 20px;
}

.section button:hover {
    background-color: #33516b; /* Darker color on hover */
}
.back-button {
    margin-right: auto;
    margin-top: 20px;
    margin-left: 20px;
    padding: 10px 15px;
    background-color: #33516b;
    color: white;
    text-decoration: none; /* No underline */
    border-radius: 5px;
    outline: none;
}
.back-button:hover {
    background-color: #d56d30;
}

footer {
    background-color: rgb(255, 255, 255);
    height: 5vh;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 20px;
}
footer img {
    height: 90%;
}
.even-columns {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    max-height: 90%;
}
.buy-field-information {
    margin: 10px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    font-size: small;
}
.buy-field-information button {
    color: white;
    background-color: #33516b;
    width: 120px;
    padding: 10px;
    margin:10px;
}
.buy-field {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.entry-fields {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px;
}
.entry-fields h1 {
    font-size: x-large;
    padding-bottom: 50px;
}
.entry-fields label {
    padding-left:5px;
}
.entry-fields input {
    width: 90%;
}
.entry-fields input:hover {
    outline: none;
}
.entry-fields input:focus {
    outline: none;
}
.entry-fields button {
    color: white;
    background-color: #d56d30;
    width: 120px;
    padding: 10px;
    margin-top: 30px;
    margin-left: auto;
}

@media (min-width: 720px) {
    .main-content {
        flex-direction: row;
    }
    .even-columns {
    flex-direction: row;
    max-width: 60%;
    }
    .about-button {
        margin-right: 20px;
        padding: 5px;
    }
    .buy-field-information h2{
        font-size: x-large;
    }
    .entry-fields h1 {
        font-size: xx-large;
    }
    .languages button {
        font-size: 16px;
        padding: 5px 10px; /* Add some padding for better clickability */
    }
}
.pricing {
    padding: 0;
    margin-block: 3rem;
    list-style: none;
}

.plan {
--_shadow: var(--shadow, orange);
--_icon: var(--icon, red);
--_button-hover: var(--button-hover, var(--clr-text));

position: relative;
display: grid;
justify-content: start;
gap: 1rem;
background: white;
margin-inline: 2rem;
margin-block: 2rem;
padding: 2rem;
border-radius: 0.75rem;
box-shadow: 0 0 1rem rgb(0 0 0 / 0.122), -1rem -1rem 0 0 var(--_shadow);
}
.plan img{
    width: 100%;
}

.plan__icon {
width: 2.5rem;
fill: var(--_icon);
}

.plan__title {
font-size: var(--fs-500);
font-weight: var(--fw-bold);
}

.plan__price {
font-size: var(--fs-600);
font-weight: 700;
}

.plan__price span {
font-size: var(--fs-300);
font-weight: var(--fw-regular);
}

.plan > .button:last-child {
margin-block-start: 2rem;
}

.button {
    outline: none;
    font-size: var(--fs-300);
    font-weight: var(--fw-bold);
    background: #dadada;
    padding: 1em 2em;
    border: 0;
    border-radius: 100vw;
    cursor: pointer;
    box-shadow: 0 0.25rem 0 rgb(0 0 0 / 0.08);
}

/* .plan::before {
content: "";
position: absolute;
z-index: -1;
inset: 0;
translate: -1.25rem -1.25rem;
border-radius: inherit;
background: var(--_shadow);
} */

.plan .button:hover {
background-color: rgb(240, 240, 240);
}

.plan--pram {
    flex: 1;

    --shadow: var(--clr-yellow-300);
    --icon: var(--clr-yellow-400);
    }
.plan--bike {
    flex: 1;
    --shadow: #33516b;
    --icon: var(--clr-cyan-400);
  }


.register-page {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}

.register-field {
    display:flex;
    flex-direction: column;
    justify-content: flex-start;
    outline: none;
    width: 25%;
}
.register-field form {
    display:flex;
    flex-direction: column;
    padding-bottom: 25px;
}
.register-field input {
    margin: 2px;
    outline: none;
}
.register-field button {
    padding: 7px;
    margin-top: 5px;
    background-color:  #d56d30;
    color: white;
    outline: none;
}
.register-field h2 {
    font-size: medium;
    cursor: pointer;
    margin-bottom: 50px;
}
.register-field h2:hover {
    color: #d56d30;
}
.register-field h3 {
    font-size: medium;
    color: red;
}
.payment-body {
    display:flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.payment-info {
    margin: 10px;
    font-size: small;
}
.buy-section {
    flex: 4; /* Takes up 1/3 of the width */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    background-color: #f4f4f4; /* Optional: set a background color */
}
.buy-top-field {
    padding-top: 30px;
    padding-left: 40px;
    height: 100px;
    width: 100%;
    border-bottom: 2px solid black;
}
.buy-current-position {
    color: #d56d30;
    font-size: xx-large;
}
.buy-other-position {
    color: #33516b;
    font-size: medium;
    margin-left: 30px;
    margin-right: 30px;
}

.buy-fields {
    width: 100%;
    padding: 40px;
    margin-top: 10px;
    font-size: x-large;
    
}
.buy-field-input {
    width: 100%;
    margin-right: 20px;
    height: 35px;
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: x-large;
    font-weight: 100;
    /* box-shadow: inset 0 0 10px 5px #ccc; */
    box-shadow: inset 0 0 10px 5px #ffffff;
}
.buy-field-input:focus {
    outline:none;
}

.buttons-lane {
    width: 100%;
    display: flex;
    flex-direction: row;
    margin-right: 20px;
}
.buy-back-button {
    margin-top: 20px;
    padding: 10px 15px;
    background-color: #33516b;
    color: white;
    text-decoration: none; /* No underline */
    border-radius: 5px;
    outline: none;
}
.buy-next-button {
    margin-top: 20px;
    margin-left: auto;
    padding: 10px 15px;
    background-color: #d56d30;
    color: white;
    text-decoration: none; /* No underline */
    border-radius: 5px;
    outline: none;
}
.buy-window {
    width: 100%;
    height: 90px;
    display:flex;
    flex-direction: row;
    align-items: center;
    background-color: #dadada;
    overflow: hidden;
}
.buy-window img{
    height: 200px;
    width: 200px;
    flex-shrink: 0;
}

.review-product-card {
    background-color: #dadada;
}
.product-title {
    background-color: #d1d1d1;
    padding: 3px;
}
.review-product {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 200px;
    padding: 5px;
    overflow: hidden;
}
.review-product img{
    width: 300px;
    height: 300px;
    flex-shrink: 0;
}
.review-product-info {
    margin-top: auto;
    margin-left: auto;
    font-size: medium;
}
.review-information {
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: small;
    font-weight: 100;
}
.review-info {
    font-size: x-large;
    font-weight: 800;
}


@media (max-width: 720px) {
    .buy-current-position {
        color: #d56d30;
        font-size: large;
    }
    .buy-fields {
        font-size: medium;
    }
    .buy-other-position {
        font-size: small;
    }
    .buy-top-field {
        padding-top: 30px;
        padding-left: 40px;
        height: 80px;
        width: 100%;
        border-bottom: 2px solid black;
    }
    .review-sheet-bottom {
        flex-direction: column;
    }
    .review-product {
        flex-direction: column;
        height: auto;
    }
    .register-field {
        width:90%;
    }
}