body, div, h3, h4, h5, h6, p, ul, img, footer {margin:0px; padding:0px; }


/* Apply to the whole site */
body {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500; /* This is SemiBold */
}

/* If you want it even THICKER for titles */
h1, h2, .bold-text {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700; /* This is Bold */
}

  /* Tell the browser that 'bold' means weight 700 in Quicksand */
strong, b {
    font-weight: 700;
}


main {
   background-color: white;
    margin: 0 auto; 
}

.navbar {
     background-image: linear-gradient(0deg, #008001, #089909); /* Background color for the navbar */
    color: #fff; /* Text color for the navbar */
    padding: 10px 0; /* Increased padding for the top and bottom of the navbar */
}
.container-nav {
    max-width: 1200px; /* Set a maximum width for the content */
    margin: 0 auto; /* Center the content horizontally */
    display: flex;
    justify-content: space-between; /* Align the logo and menu at opposite ends */
    align-items: center; /* Vertically center the content */
}
.logo {
    font-size: 24px; /* Font size for the logo */
    text-decoration: none; /* Remove underline from the logo */
    padding-left: 20px;
    color: #fff; /* Text color for the logo */
}
.menu {
    list-style: none; /* Remove bullet points from the menu */
    display: flex;
    align-items: center; /* Center the menu vertically */
}
.menu li {
    margin-right: 20px; /* Add spacing between menu items */
}
.menu a {
    text-decoration: none; /* Remove underline from menu links */
    color: #fff; /* Text color for menu links */
    font-weight: bold; /* Make menu links bold */
     font-size: 24px; /* Larger font size for menu links */
    transition: color 0.3s; /* Smooth color transition on hover */
}
.menu a:hover {
    color: #f8de7f; /* Change color on hover */
}
header {
    width: 100%;
    margin: 0 auto; 
    text-align: left;
}
p {
    font-size: 17px;
    color: #4C4B4B;
    text-align: justify;
    text-justify: inter-word;
       margin-bottom: 1.2em;   /* space UNDER paragraph */
}
a {
    color: #2041AD;
}
.share {
    text-align: center;
}
.share a {
  text-decoration: none; /* Remove underline */
}
h1 {
    text-align: center;
    padding: 2%;
}
h2 {
    text-align: center;
        margin-bottom: 1em;
}
h3 {
    text-align: center;
        margin-bottom: 1em;
}

.mobile-only {
    display: none; 
}

.desktop-only {
    display: block;
}

.iframe img {
    max-width: 100%;
    height: auto;
}

footer {
  line-height: 1.4;
  background-color: #008001;
  width: 100%;
}
.footer-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 100px;
  align-items: center;
  background-color: #008001; /* Change the background color as needed */
}
.footer-inner .image {
  max-width: 50%; /* Set the max-width for the "image" in PC */
}
.footer-inner .content {
  max-width: 40%; /* Set the max-width for the "content" in PC */
}
footer p {
    color: white;
    font-size: 16px;
}
footer a {
    color: white;
    text-decoration: none;
}
footer a:hover {
    color: #F8DE7F;
}

.empty-row {
    margin-bottom: 20px;
}

img.desktop-only {
    max-width: 100%;
    height: auto;
    width: 100%;
}

.feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 80px;
    align-items: center;
}

.feature-left {
    background: #d4d6d3;
}

.feature-right {
    background: #ffffff;
}
.feature-image img {
    width: 100%;
    height: auto;
    border: 2px solid #0069b5;
    border-radius: 10px;

}
.feature-right .feature-image {
    order: 2;
}

.feature-right .feature-text {
    order: 1;
}

.simplist  li {
    margin-left: 30px;
}

.subscription-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 0 50px 0;
}

.subscription-option {
    width: 300px;
    height: 340px;
    border: 1px solid #ccc;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px; /* Add padding to the option */
}

.subscription-option h2 {
    font-size: 26px;
    color: #4C4B4B;
    margin-bottom: 10px;
}

.subscription-option {
    position: relative;
    transition: box-shadow 0.3s ease; /* Add a transition to the box shadow */
}

.subscription-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: orange;
    display: none;
    transition: opacity 0.3s ease; /* Add a transition to opacity */
    opacity: 0; /* Initially set opacity to 0 */
}

.subscription-option:hover::before {
    display: block;
    opacity: 1; /* Set opacity to 1 on hover */
}

.subscription-option ul {
    list-style-position: inside; /* bullets on left text aligned with them */
    padding: 0;
    flex: 1;
    color: #4C4B4B;
}
.subscription-option li {
    margin: 5px;
    font-size: 17px;
}
.subscription-option button {
    background-color: #008001;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 15px;
    font-size: 22px;
      font-family: 'Quicksand-SemiBold', sans-serif;
    margin: 10px 0; /* Add margin to the button */
    cursor: pointer;
    /* Transition on both background color and opacity */
transition: background-color 0.5s ease, opacity 0.5s ease;

}
.subscription-option button:hover {
    background-color: #F8DE7F;
    color: black;
    border: none;
}

.subscription-option.popular {
    border: 2px solid #008001;
    box-shadow: 0 8px 20px rgba(0, 128, 1, 0.15);
    transform: scale(1.03);
}

.subscription-option.popular::before {
    display: block;
    opacity: 1;
    background-color: #008001; /* green instead of orange */
}

.subscription-option .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #008001;
    color: white;
    font-size: 14px;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: bold;
    font-family: 'Quicksand-SemiBold', sans-serif;
}



  /* jump to picker  */
.center-button {
  display: flex;
  justify-content: center;
  align-items: center;
}

.my-button {
  background: #008001; /* Solid background color */
  background-image: linear-gradient(0deg, #008001, #089909);
  margin: 0 30px 30px 30px;
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600; /* This is SemiBold */
  font-size: 22px;
  padding: 15px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 1s ease, color 1s ease; /* Use background for the easing effect */
}

.my-button img {
  width: 30px; /* Adjust the width as needed */
  height: auto; /* Maintain aspect ratio */
  margin: -10px 16px -10px -10px;
}

/* Change background color on hover */
.my-button:hover {
  background: #F8DE7F; /* Solid background color on hover */
  color: black;
}




#sketcher-app {
  display: flex;
  gap: 20px;
  background: #F8DE7E;
  padding: 20px;
  box-sizing: border-box;
}

#sketcher-canvas.transparent {
  background-image:
    linear-gradient(45deg, #ccc 25%, transparent 25%),
    linear-gradient(-45deg, #ccc 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #ccc 75%),
    linear-gradient(-45deg, transparent 75%, #ccc 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.sketcher-left {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sketcher-left {
  max-width: 500px;
  aspect-ratio: 1 / 1;
}

#sketcher-canvas {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}


#blackLines {
  transform: scaleX(-1);
}
#gray-controls {
  margin-top: 10px;
}
#black-controls,
#gray-controls {
  display: none;
}

label[for="upload"] {
  display: none;
}


#white-controls {
  display: none;
}

#whiteLines {
  transform: scaleX(-1);
}

.sketcher-right {
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modes label {
  display: block;
  font-weight: bold;
}

.control label {
  display: block;
  font-size: 14px;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.use-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 2%;
}

.use-card {
  border: 1px solid #333;
  border-radius: 10px;
  padding: 24px;
}

.use-image {
  float: right;
  margin: 0 0 12px 18px;
}

.use-image img {
  max-width: 180px;
  border-radius: 12px;
  display: block;
}


.use-text {
  flex: 1;
  font-size: 20px;
  line-height: 1.4;
}
.use-text ul,
.use-text li {
  font-size: 17px;
  line-height: 1.4;
      margin-left: 10px;
        text-align: justify;
}


.tutor {
    background-color: #F8DE7F;
    padding: 30px;
}
.image-tutor {
    text-align: center;
}
.image-tutor img {
    margin: 4px;
    padding: 1px;
    border: solid grey 1px;
    border-radius: 25px;
    display: inline-block;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.7); /* Adds shadow to the images */
    transition: box-shadow 0.3s ease-in-out; /* Smooth transition for shadow removal */
}
.image-tutor img:hover {
    box-shadow: none; /* Removes shadow on hover */
}
.member {
     float:right;
     margin: 2px;
     width: 100px;
       text-decoration: none;
}


.floatright {
    float: right;
}



#goto2 {
    text-decoration: none;
    list-style: none;
}
.medh:hover {
    border-radius: 25px;
    box-shadow: 0 0 20px rgba(255,255,255,.6);
}


 #drawing-board {
            border: 1px solid #000;
        }

.frame-container {
    position: relative;
    overflow: hidden;
    height: 800px; /* Adjust as needed */
        width: 100%;
}

.frame {
    position: absolute;
    top: -100px; /* Adjust to hide desired top part */
    left: 0;
    width: 100%;
    height: 100%;
}

.sketcher-compare{
  width:100%;
  border-collapse:collapse;
  margin:18px 0;
  font-size:16px;
  line-height:1.4;
  background:#fff;
  border:1px solid #e6e6e6;
  border-radius:12px;
  overflow:hidden; /* keeps rounded corners */
}

.sketcher-compare th,
.sketcher-compare td{
  padding:12px 14px;
  border-bottom:1px solid #eee;
  border-right:1px solid #e6e6e6; /* column separation */
  vertical-align:top;
}

.sketcher-compare th:last-child,
.sketcher-compare td:last-child{
  border-right:none; /* no border on last column */
}

.sketcher-compare thead th{
  font-weight:700;
  background:#f7f7f7;
  text-align:left;
}

.sketcher-compare tbody tr:last-child td{
  border-bottom:none;
}

.sketcher-compare tbody tr:hover{
  background:#fafafa;
}

.sketcher-compare td:first-child{
  font-weight:600;
  width:28%;
}

/* Sketcher column highlight */
.sketcher-compare th:nth-child(3),
.sketcher-compare td:nth-child(3){
  background:#f6fff9;
}

.sketcher-compare td strong,
.sketcher-compare th strong{
  font-weight:800;
}






.faq-container {
    width: 90%;  /* Uses 90% of the screen width, making it responsive */
    max-width: 1000px;  /* Limits the width for larger screens */
    margin: 20px auto;  /* Centers the container */
    padding: 20px;  /* Adds space inside the container */
}


  .faq-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
  }

  .faq-question {
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

.faq-question::after{
  content:"▼";
  font-size:16px;
  transition:transform 0.3s ease;
}

  .faq-answer {
    display: none;
    padding: 10px;
    font-size: 16px;
    color: #333;
      text-align: justify;
  }

  .faq-item.active .faq-answer {
    display: block;
  }

  .faq-item.active .faq-question::after {
    transform: rotate(180deg); /* Rotates the arrow up when open */
  }
  .hidden-faqs {
  display: none;
}

#load-more {
  background: #008001; /* Solid background color */
  margin: 20px auto 30px auto; /* Centers button */
  color: #fff;
  font-family: 'Quicksand-SemiBold', sans-serif;
  font-size: 22px;
  padding: 15px 25px;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  display: block; /* Ensures it takes full width for centering */
  text-align: center; /* Centers the text inside */
  width: fit-content; /* Makes the button only as wide as needed */
  transition: background-color 0.5s ease, opacity 0.5s ease;
}

#load-more:hover {
  background: #F8DE7F; /* Solid background color on hover */
  color: black;
}














@media (max-width: 1240px) {

}

@media (max-width: 1150px) {

.simplist {
  text-align: left; /* Reset the text alignment to left */
}
 .footer-inner {
    flex-direction: column-reverse; /* Reverse the order for mobile devices */
    align-items: center;
    padding: 40px;
  }
.footer-inner .image {
    max-width: 100%; /* Set the max-width for the "image" in tablets */
}
.footer-inner .content {
    max-width: 100%; /* Set the max-width for the "content" in tablets */
}
img { /*ovo je resilo presiroke slike*/
  width: auto ;
  max-width: 100% ;
  height: auto ;
}
iframe { 
 width: 800px ;
  height: 504px;
}
video { /*ovo je resilo presiroke slike*/
  width: auto ;
  max-width: 100% ;
  height: auto ;
} 
.logo {
    width: 8%;
}
.frame {
    position: relative;
    top: -100px; /* Adjust to hide desired top part */
    height: 780px; /* Allow the iframe to take full height */
    width: 500px;
}
}

/* For tablets */
@media (max-width: 1024px) {
html, body {
overflow-x:hidden;
}
p {
    font-size: 20px;
}
footer a {
    font-size: 22px;
}
footer p {
    font-size: 22px;
}
.picture {
    margin: 0 20px; /* Adjust the spacing between images */
}
.drawing {
        margin: 20px 0 20px 0; /* Remove the margin for tablets */
     max-width: 500px;
}
ol li {
      font-size: 20px;
}
.float-left { /* mobile only apps list */
 text-align: left;
 font-size: 20px;
 margin-left: 5%;
}
  .use-grid {
    grid-template-columns: 1fr;
  }
  .feature {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
    }

    .feature-text {
        order: 1;
    }

    .feature-image {
        order: 2;
    }
}



@media only screen and (max-width: 800px) {
 .subscription-container {
        flex-direction: column;
         margin: 0 auto;
    }
    .subscription-option {
        margin: 10px 0;
    }
}


@media (max-width: 768px) { /* Adjust max-width to target mobile phones */
          #sketcher-app {
    flex-direction: column;
  }
  .sketcher-right {
    width: 100%;
  }
    .modes input[type="radio"],
  input[type="checkbox"]{
    transform: scale(1.4);
    margin-right: 10px;
  }

  .modes label,
  #gray-controls label,
  #white-controls label,
  #black-controls label{
    font-size: 16px;
    line-height: 1.6;
  }
}
        
        

/*razlika izmedju mob i desktop*/
@media only screen and (max-width: 601px) {
    p {
    font-size: 18px;
}
footer a {
    font-size: 20px;
}
footer p {
    font-size: 20px;
}
    .feature {
        padding: 20px;
    }
.logo {
    padding-left: 10px;
    padding-right: 10px; 
}
.menu a {
     font-size: 20px;
}
.menu li {
    margin-right: 18px; /* Add spacing between menu items */
}
article {
    display: block;
    text-align: center; /* Center-align the content */
    padding: 50px 0; /* Adjust padding as needed */
}
.picture {
    margin: 20px auto; /* Center-align and add spacing between stacked images */
}
.controls {
    flex-direction: column;
}
.color-thickness-group {
    flex-direction: column;
}
.input-group {
    width: 100%;
}
ol {
    padding-left: 1.5em; /* Adjust this value to your preference */
    margin-left: 0; /* Remove the default margin */
}
ol li {
    margin-left: -0.5em; /* Counteract the default margin on list items */
}
.frame {
    width:100%;
}
    iframe {
  width: auto ;
  max-width: 100% ;
  height: auto ;
}
.mobile-only {
        display: block;
    }
.desktop-only {
    display: none;
}
.feature-image .desktop-only {
        display: none;
    }
    .feature-image .mobile-only {
        display: block;
    }
  .use-card {
    flex-direction: column;
    text-align: center;
        border: 1px solid #333;
  }

  .use-text {
    font-size: 18px;
  }

  .use-image img {
    max-width: 100%;
  }
}



@media only screen and (max-width: 510px) {
.menu li {
    margin-right: 12px; /* Add spacing between menu items */
}
}    

@media only screen and (max-width: 440px) {
footer p {
margin:2%;
}
h1 {
    font-size: 20px;
}
.my-button {
    font-size: 18px;
}
.menu li {
    margin-right: 8px; /* Add spacing between menu items */
}
.logo {
    font-size: 24px; /* Font size for the logo */
    padding-left: 2px;
}
footer a {
    font-size: 20px;
}
footer p {
    font-size: 20px;
}
}

/* my iPhone and samsung edge use */
@media only screen and (max-width: 415px) {
.menu a {
     font-size: 16px;
}
}

@media only screen and (max-width: 360px) {
.my-button {
    font-size: 16px;
}
.menu a {
     font-size: 14px;
}
}