/* ------------------------------------------------
   1) FONTS & GLOBAL VARIABLES
   ------------------------------------------------ */

/* — Merge your @font-face declarations. 
     Ideally, use the more modern .woff / .woff2 if you have them,
     but keep .ttf as fallback if you prefer. 
     Below is a hybrid example combining both 
     (depending on which files you actually have). 
*/

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Open Sans";
  src: url("fonts/OpenSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Open Sans";
  src: url("fonts/OpenSans-Bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

/* — Combine all your :root variables. 
   Keep the ones from style.css plus any extras from styles.css. 
*/

:root {
  --primary-color: #324d3e;
  --secondary-color: #C4D3CB;
  --background-color: #f4f4f4;
  --text-color: #333;
  --light-text: #777;
  --padding-section: 2rem 0;

  /* Additional from styles.css: */
  --white: #fff;
  --content-width: 1200px;
}

/* ------------------------------------------------
   2) BASE RESETS & LAYOUT (Mostly from style.css)
   ------------------------------------------------ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  font-family: "Montserrat", sans-serif;
  color: var(--text-color);
  background-color: white;
  line-height: 1.6;
}

body {
  font-size: 16px;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 0;
}

/* If you also want the .container-psihoterapija 
   or other containers from styles.css: */
.container-psihoterapija {
  width: 90%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 2rem 0;
}

/* ------------------------------------------------
   3) HEADERS & NAV (From style.css with any needed merges)
   ------------------------------------------------ */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background-color: white;
  position: relative;
  z-index: 1000;
  /* If you want any min-height or wrap from the other file, add them: */
  /* min-height: 80px; */
  /* flex-wrap: wrap; */
}

.header-logo-container {
  width: 250px; /* from style.css, adjust as you like */
}

.header-logo {
  width: auto;
  max-width: 250px; 
  height: auto;
  cursor: pointer;
}

/* Navigation */
nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

nav a:hover {
  background-color: var(--primary-color);
  color: white;
  border-radius: 4px;
}

.kontakt {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 4px;
}

.kontakt:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--primary-color);
  border-radius: 3px;
}

/* ------------------------------------------------
   4) OTHER SECTIONS (From style.css)
   ------------------------------------------------ */

/* Example: Hero Section */
.hero {
  width: 100%;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
}

/* Intro Quote */
.intro-quote {
  padding: 5rem 0;
  text-align: center;
}

.intro-quote h1 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.tagline {
  font-size: 1.8rem;
  color: var(--primary-color);
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto;
  text-transform: uppercase; 
}

/* Services */
.services {
  background-color: var(--secondary-color);
  padding: var(--padding-section);
}

.services-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5%;
}

.quote-text {
  flex: 3;
}

/*.quote-text {
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-weight: 500;
}*/

.title {
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-weight: 500;
}


.quote-text p {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.quote-image {
  flex: 2;
  display: flex;
  justify-content: flex-end;
}

.quote-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* About Me */
.about-me {
  padding: var(--padding-section);
  background-color: white;
}

#about-me-id{
  padding: 6rem 0;
} 
.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5%;
}

.image-wrapper {
  flex: 1;
  position: relative;
  margin-bottom: 2rem;
}

.image-background {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80%;
  height: 100%;
  background-color: var(--secondary-color);
  z-index: 1;
  border-radius: 8px;
}

.image-wrapper img {
  position: relative;
  z-index: 2;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  max-width: 80%;
  max-height: 80%;
}

.text-wrapper {
  flex: 1;
}

.text-wrapper p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.btn:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  padding: 3rem 0;
  color: var(--primary-color);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-logo {
  width: 250px;
  margin-bottom: 1.5rem;
}

.footer-info p {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.footer-design{
  display: flex ;
  width: 250px;
  height: 50px;
}

/* ------------------------------------------------
   5) MERGED RESPONSIVE MEDIA QUERIES (From styles.css)
   ------------------------------------------------ */

/* MOBILE DEVICES (max-width: 767px, or however your files define it) */

/* ---------------------------------------------------------
   7. PSIHOTERAPIJA IN JAZ PAGE
------------------------------------------------------------ */
.psihoterapija-jaz-wrap {
  margin-top: 5%;
  margin-left: 10%;
  padding-left: 10%;
}

.psihoterapija-jaz-wrap2 p {
  padding-left: 4%;
  padding-bottom: 2rem;
  font-size: 40px;
  color: var(--primary-color);
  font-weight: 400;
}

.container-psihoterapija {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1017px;
  margin: 0 auto;
  gap: 10%;
  padding: 5% 0;
}

.content2,
.content3 {
  display: flex;
  align-items: center;
  gap: 15%;
  flex-wrap: wrap;
  justify-content: center;
}

.image-wrapper2,
.image-wrapper3 {
  position: relative;
  flex: 1;
  max-width: 400px;
}
/*
.image-background2 {
  position: absolute;
  top: -5%;
  left: 7%;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  z-index: 1;
  border-radius: 8px;
}

.image-background3 {
  position: absolute;
  top: -5%;
  right: 7%;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  z-index: 1;
  border-radius: 8px;
}
*/

.image-background2, .image-background3 {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  z-index: 1;
  border-radius: 8px;
}

.image-background2 {
  top: -20px;
  left: 20px;
}

.image-background3 {
  top: -20px;
  left: -20px;
}

.image-wrapper2 img,
.image-wrapper3 img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  position: relative;
  z-index: 1;
}

.text-wrapper2,
.text-wrapper3 {
  max-width: 50%;
}

.text-wrapper2 p,
.text-wrapper3 p {
  margin-bottom: 15px;
  color: var(--text-color);
  line-height: 1.6;
  font-size: 22px;
  font-weight: 400;
}



/* Media queries for responsiveness */
@media screen and (max-width: 1200px) {
  .image-background2, .image-background3 {
    top: -15px;
    left: -15px;
   /* right: auto; */
  }
  
  .image-background3 {
    left: auto;
   /* right: -15px;*/
  }
}

@media screen and (max-width: 768px) {
  .image-background2 {
    top: -10px;
    right: -10px;
    /*left: auto;*/
  }

  .image-background3 {
    top: -10px;
    left: -10px;
  }
  
  /*.image-background3 {
    left: auto;
    right: -10px;
  }*/
}

/* ---------------------------------------------------------
   8. MOJI ZAPISI PAGE
------------------------------------------------------------ */
.moji-zapisi-title {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 5%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4% 0;
  text-align: left;
  font-size: 40px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 2rem 0;
 /* margin-left: 23.5%;*/
  margin-top: 5%;
  color: var(--primary-color);
}

.container-zapisi {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 5%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4% 0;
}

.zapis1,
.zapis2 {
  background-color: var(--secondary-color);
  padding: 5%;
  border-radius: 12px;
  width: 48%;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

.zapis-title,
.zapis-title2 {
  text-transform: uppercase;
  font-size: 16px;
  margin: 0;
  color: var(--primary-color);
}

.zapis1 p,
.zapis2 p {
  flex-grow: 1;
  display: flex;
  align-items: center;
  text-align: left;
  line-height: 1.4;
  font-size: 1.2rem;
  width: 100%;
  color: var(--text-color);
  padding-top: 1rem;
}

.zapis-text {
  padding-top: 15%;
}

.btn-zapisi {
  display: inline-block;
  max-width: 35%;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.3s;
  text-align: center;
  align-self: self-end;
}
.btn-zapisi:hover {
  background-color: #fff;
  color: var(--primary-color);
}

/* ---------------------------------------------------------
   9. CENIK PAGE
------------------------------------------------------------ */
/*.cenik-title-wrap{
  display: flex;
  /*justify-content: center;
  align-items: left;
  padding: 2rem;
  
}*/

.cenik-title {
  font-size: 40px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
  color: var(--primary-color);
  /*margin-left: -41%;*/
  max-width: 900px;
  width: 80%;
  margin: 0 auto 1rem;  /* horizontally center the block itself */
  text-align: left;     /* left-align text on larger screens */
}

.price-list {
  padding: 40px 0;
  background-color: #ffffff;
  text-align: center;
}

.price-content-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  padding-bottom: 10%;
}

.price-content {
  border: 10px solid var(--secondary-color);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  width: 80%;
  background-color: #ffffff;
}

.image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  max-width: 70%;
  height: 60%;
  margin-left: -15%;
}

.price-list table {
  flex: 2;
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  border: none;
}

.price-list th,
.price-list td {
  padding: 10px;
  border-bottom: none;
}

.tabela-naslov {
  color: var(--primary-color);
  font-size: 22px;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  text-align: left;
}

.tabela-naslov2 {
  color: var(--primary-color);
  font-size: 22px;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  text-align: center;
}

.tabela-besedilo {
  font-size: 20px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}

.cenik-cifre {
  font-size: 20px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  text-align: center;
}

/* ---------------------------------------------------------
   10. KONTAKT PAGE
------------------------------------------------------------ */
.hero-contact {
  padding: 80px 0;
  background-color: #ffffff;
  text-align: center;
  margin: 0 0.5rem;
}

.hero-contact1 {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 10px solid var(--secondary-color);
  padding: 2rem;
  background-color: #ffffff;
}

.hero-image1 {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: -4rem;
}

.hero-image1 img {
  max-width: 350px;
  height: auto;
  border-radius: 8px;
}

.form-column {
  flex: 1;
  text-align: left;
  /*padding-right: 20px;*/
}

.stik-z-mano {
  font-size: 32px;
  font-weight: 400;
  color: var(--primary-color);
  margin: 0;
  padding-bottom: 10px;
}

.stik-besedilo {
  padding-bottom: 10%;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  color: var(--primary-color);
  margin: 0;
}

.form-column input,
.form-column textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  border-radius: 5px;
  font-family: "Open Sans", sans-serif;
}

.form-column textarea {
  height: 200px;
}

.form-column button {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.3s;
  font-family: "Montserrat", sans-serif;
}
.form-column button:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.contact-info {
  padding: 80px 0;
  background-color: #ffffff;
  text-align: center;
}

.kontaktne-info p {
  font-size: 32px;
  font-weight: 400;
  color: var(--primary-color);
  margin: 0 0 20px 0;
}

.contact-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 50%;
  text-align: left;
}

.detail {
  display: flex;
  align-items: center;
  padding: 10px 10px 10px 0;
  height: 68px;
  border-radius: 5%;
}

.detail-icon{
  display: flex;
  width: 50px;
  height: 50px;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  margin-right: 10px;
  padding: 10px;
}



.detail p {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  margin: 0;
}

.map {
  max-width: 45%;
  display: flex;
  justify-content: center;
}
.map a {
  display: inline-block;
  cursor: pointer;
}
.map img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s;
}
.map img:hover {
  transform: scale(1.05);
}

/* ---------------------------------------------------------
   11. RESPONSIVE MEDIA QUERIES
------------------------------------------------------------ */
@media (max-width: 768px) {
  header {
    padding: 1rem;
  }

  .header-logo {
    width: 100%;
    margin-bottom: 1rem;
  }


  #about-me-id{
    padding: 4rem 0;
  } 

  .hero img {
    max-height: 400px;
    object-fit: cover;
  }

  .container {
    max-width: 90%;
    padding: 10px;
  }

  .footer-info p {
      font-size: 0.9rem;
  }

  .services-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .content,
  .content2,
  .content3 {
    flex-direction: column;
    text-align: center;
  }

  .image-wrapper {
    max-width: 80%;
    margin-left: 4rem;
    /*margin: 0 auto;*/
  }

  .text-wrapper {
    max-width: 100%;
    padding: 0;
  }

  .text-wrapper p {
    font-size: 16px;
    line-height: 1.4;
    padding: 0 10px;
  }

  .image-background {
    top: -5%;
   /* left: 0; */
   /* width: 100%;*/
    height: 100%;
  }

  .quote-text {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
  .quote-text p {
    font-size: 16px;
    line-height: 1.4;
    padding: 0 10px;
  }

  .quote-image img {
    width: 80%;
    height: auto;
    padding-left: 0;
  }

  .container-psihoterapija {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .text-wrapper2,
  .text-wrapper3 {
    max-width: 90%;
    margin: 0 auto;
  }
  .image-wrapper2 img,
  .image-wrapper3 img {
    max-width: 90%;
  }


  .intro-quote {
    padding: 1.1rem 0;
    text-align: center;
  }

  .moji-zapisi-title {
    text-align: center;
    margin-left: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .container-zapisi {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .zapis1,
  .zapis2 {
    width: 90%;
    min-height: auto;
    margin-bottom: 20px;
  }

  .zapis1 p,
  .zapis2 p{
    font-size: 16px;
  }

  .text-wrapper2 p,
  .text-wrapper3 p {
    
    font-size: 16px;
    
  }


  .cenik-title {
   /* margin: 0 auto; */
    text-align: left;
    margin-left: 1rem;
  }
  .price-content {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
    width: 90%;
  }
  .image-container img {
    margin-left: 0;
    margin-bottom: 1rem;
  }
  .price-list table {
    width: 100%;
  }

  .hero-contact {
    padding: 40px 0;
  }
  .hero-contact1 {
    flex-direction: column;
    padding: 1rem;
    text-align: center;
    border: 8px solid var(--secondary-color);
  }
  .hero-image1 {
    padding-top: 20px;
    margin-bottom: 1rem;
  }
  .contact-content {
    flex-direction: column;
    align-items: center;
  }
  .contact-details {
    max-width: 100%;
    text-align: center;
  }
  .map {
    max-width: 100%;
    margin-top: 20px;
  }

  .btn-zapisi{
    font-size: 0.65rem;
  }
 /* @media (max-width: 768px) {*/
    /* Force each .content block to stack vertically */
    .content2,
    .content3 {
      display: flex;
      flex-direction: column;
    }
  
    /* Reorder content2 so the image is first, text is second */
    .image-wrapper2 {
      order: 1;
      margin-left: 1rem;
    }
    .text-wrapper2 {
      order: 2;
      padding-top: 2rem;
    }
  
    /* Reorder content3 so the image is first, text is second */
    .image-wrapper3 {
      order: 3; /* so it appears after content2's text in final flow */
      margin-left: 1rem;
    }
    .text-wrapper3 {
      order: 4;
    padding-top: 2rem;
  }

  
  .image-background2
   {
    top: -15px;
    left: 10px;
    right: -15px;
    width: 93%;
    height: 100%;
  }

  
  .image-background3 {
    top: -15px;
    left: 10px;
    right: -15px;
    width: 93%;
    height: 100%;
  }

  .psihoterapija-jaz-wrap  {
    margin-left: 0 !important;
    padding-left: 0 !important;
    margin-right: 10% !important;
    text-align: left;
    align-self: center;
  }

  .psihoterapija-jaz-wrap2 p {
    margin-left: 1rem;
    color: var(--primary-color);
    font-weight: 400;
    font-size: 1.5rem;
    text-align: left;
  }
  
}

@media (min-width: 769px) {
  nav ul {
    display: flex !important;
    justify-content: flex-end;
  }
  .menu-toggle {
    display: none;
  }
  nav {
    margin-left: 10%;
  }
}

@media (min-width: 2560px) {
  body {
    font-size: 18px;
  }
  .container,
  .container-psihoterapija,
  .price-content,
  .contact-content,
  .hero-contact1,
  .container-zapisi {
    max-width: 1800px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  /* Larger touch targets */
  nav ul li a {
      display: block;
      padding: 15px;
      width: 100%;
      text-align: center;
      
      /* Ensure tap targets are large enough */
      min-height: 44px;
      line-height: 44px;
      
      /* Remove tap highlight on iOS */
      -webkit-tap-highlight-color: transparent;
  }

  /* Ensure menu is fully interactive */
  nav ul {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: white;
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      padding: 20px;
      box-sizing: border-box;
  }

  nav ul.active {
      display: flex;
  }

  /* Hamburger menu styling */
  .menu-toggle {
      display: block;
      position: absolute;
      right: 5%;
      top: 50%;
      transform: translateY(-50%);
      z-index: 1001;
      width: 44px;  /* Larger touch target */
      height: 44px;
      cursor: pointer;
  }

  .menu-toggle span {
      display: block;
      height: 3px;
      width: 100%;
      background-color: var(--primary-color);
      margin: 7px 0;
      transition: all 0.3s ease;
  }
}

@media screen and (max-width: 767px) {
  header {
    padding: 1rem;
    /* Possibly add flex-wrap, etc., if needed: */
    /* flex-direction: column; */
    /* align-items: center; */
  }

  .header-logo-container {
    width: 150px;
  }

  .menu-toggle {
    display: flex;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: white;
    padding: 1rem 0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    z-index: 100;
    gap: 0;
  }

  nav ul.active {
    display: flex;
  }

  nav li {
    width: 100%;
    text-align: center;
  }

  nav a {
    display: block;
    padding: 1rem;
  }

  .hero-image img {
    height: 40vh;
  }

  .tagline {
    font-size: 1.09rem;
  }

  .title, .psihoterapija-jaz-wrap2 p, .cenik-title p, .stik-z-mano, .moji-zapisi-title {
    font-size: 1.1rem;
  } 

  .title {
    font-size: 14px;
  }
  .services-content, 
  .content {
    flex-direction: column;
  }

  .quote-text, 
  .quote-image {
    flex: 1;
    width: 100%;
  }

  .quote-image {
    margin-top: 2rem;
    justify-content: center;
  }

  .image-wrapper, 
  .text-wrapper {
    flex: 1;
    width: 100%;
  }

  .text-wrapper {
    margin-top: 2rem;
  }

.price-content-wrap{
  padding: 0.5rem;
}

  .price-content {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
    width: 95%;
    box-sizing: border-box;
  }

  .price-list table {
    width: 100%;
  }

  .price-list th,
  .price-list td {
    padding: 5px;
    font-size: 12px; /* Slightly smaller font for mobile */
  }

  .tabela-naslov,
  .tabela-naslov2 {
    font-size: 18px;
  }

  .tabela-besedilo {
    font-size: 12px;
    word-break: break-word; /* Prevent text overflow */
  }

  .cenik-cifre {
    font-size: 14px;
    text-align: center;
  }

  .image-container {
    margin-bottom: 20px;
    max-width: 100%;
  }

  .image-container img {
    max-width: 50%;
    
    height: auto;
    align-items: center;
  }
  /* Add any other small-device queries you need from styles.css. */
}

/* TABLET DEVICES (min-width: 768px) and (max-width: 1023px) */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .header-logo-container {
    width: 180px;
  }

  nav ul {
    gap: 1rem;
  }

  nav a {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .hero-image img {
    height: 60vh;
  }

  .tagline {
    font-size: 1.6rem;
  }

  .image-background {
    top: -15px;
    left: -15px;
  }
}

/* LARGE DEVICES (min-width: 1024px) */
@media screen and (min-width: 1024px) {
  .container {
    padding: 0;
  }

  nav a {
    font-size: 1rem;
  }

  .tagline {
    font-size: 1.8rem;
  }

  .quote-text p,
  .text-wrapper p {
    font-size: 20px;
  }
}

/* EXTRA LARGE DEVICES (min-width: 1440px) */
@media screen and (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }
  
  .quote-image img {
    max-width: 400px;
  }
}

/* If you have more specialized queries for e.g. .container-psihoterapija, 
   Moji Zapisi, contact form, etc., 
   bring them over from styles.css below. */

/* Example: Additional queries from styles.css for .container-psihoterapija, 
   content2, content3, etc. 
   You’d do them similarly, always taking whichever version 
   had the better responsiveness. */

.menu-toggle {
    display: none;
    /* Include any other styling you need,
       like background: none; border: none; etc. */
  }
   /* Hide nav by default on mobile, show when .active is added */
nav ul {
  display: none; /* or transform: translateX(...); etc. */
}

nav ul.active {
  display: block; /* or transform back to position */
}

@media screen and (max-width: 767px) {

  .kontaktne-info p{
    font-size: 1.5rem;
  }

  .detail p {
    font-size: 0.7rem;
  }

  .footer-content p{
    font-size: 0.75rem;
  }

.hero-image1{
  margin: 0;
}

  .hero-image1 img{
    
    max-width: 310px;
  }

  
/* Animate the button lines if you want a fancy "X" on .open */

/*
.menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  margin: 4px 0;
  border-style: none;
  background-color: #324d3e;
  
} */

/* Example "X" transform for 4 lines, but you can tweak it: */



/*
.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #324d3e; /* or your preferred color */
 /* border-radius: 2px;        /* optional rounding */
/* } */

/* Optionally remove the focus outline in most browsers: */
.menu-toggle:focus {
  outline: none;
}
.menu-toggle {
  background: none;    
  border: none;        
  cursor: pointer;

  display: flex;  
  flex-direction: column;
  justify-content: space-between;
  width: 30px;      /* total width of the icon */
  height: 28px;     /* total height; increase if you make lines thicker */
  padding: 0;
  margin: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 4px;          /* make lines thicker, e.g. 4px or 5px */
  background-color: #324d3e;
  border-radius: 2px;   /* optional for slightly rounded lines */
  margin: 2px 0;        /* space between each line */
  transition: all 0.3s;
}

body.menu-open {
  overflow: hidden;
  height: 100%;
  /* Sometimes you also do: height: 100%; to fully lock. */
  /* If you have issues on iOS, you might add:*/
  -webkit-overflow-scrolling: auto; 
  
}


}