/* You can remove this file or leave it empty if all styling is in style.css */
body {  
  background-color: var(--bg-color, #fff);
 
}

section {
  display: flex;
  justify-content: space-between;
    align-items: flex-start;
	 background-image: url('https://odraz.umelecka.cz/wp-content/uploads/2025/06/packy-kocky.png');
  background-repeat: no-repeat;
  background-size: 120rem;
  background-position: center center;

}
.denis-info-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0; /* No gap so boxes touch */
  margin: 2rem auto;
}

.rectangle-box {
  background: #fff;
  color: #292639;
  border-radius: 1rem 0 0 1rem;
  box-shadow: 0 10px 30px 0 rgba(80, 40, 120, 0.18), 0 2px 14px rgba(0,0,0,0.10);
  width: 100px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: bold;
  border-right: 2px solid #eee;
}

/* Adjust square box so left corners match rectangle */
.square-text-box {
  border-radius: 0 2rem 2rem 2rem; /* Only top-right, bottom-right, and bottom-left corners rounded */
  margin: 0;
  width: 600px;      /* Match the width of the picture */
  height: 350px;     /* Increased height */
  background: var(--card-bg);   /* Use variable for light/dark */
  color: var(--card-text);      /* Use variable for light/dark */
  box-shadow: 0 10px 30px 0 rgba(80, 40, 120, 0.28), 0 2px 14px rgba(0,0,0,0.18); /* Same as .card */
  display: flex;
  flex-direction: column; /* Stack children vertically */
  align-items: flex-start;      /* Align content to the left */
  justify-content: center;
  text-align: left;            /* Align text to the left */
  padding: 2.5rem;   /* Increased padding */
  font-size: 1.2rem; /* Slightly larger font */
  gap: 0 ;           /* Add this for less space between lines */
  line-height: 1.5;         /* Better readability for block text */
  transition: background 0.3s, color 0.3s;
}

.denis-info-vertical {
  width: 600px;
  margin-left: 5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 0;
}

.rectangle-row {
  display: flex;
  flex-direction: row;
  gap: 0; /* No gap between the rectangles */
}

.rectangle-box-vertical {
  background: var(--card-bg);    /* Use variable for light/dark */
  color: var(--card-text);       /* Use variable for light/dark */
  border-radius: 1rem 1rem 0 0;
  box-shadow: 0 10px 30px 0 rgba(80, 40, 120, 0.28), 0 2px 14px rgba(0,0,0,0.18); /* Match square box shadow */
  width: 150px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: bold;
  border-bottom: 2px solid #eee;
  margin: 0;
  cursor: pointer; /* Makes it look clickable */
  transition: background 0.2s, color 0.2s;
}

.rectangle-box-vertical:hover {
  background: #eae4ff;
  color: #7a63ce;
}

.rectangle-box-vertical.active {
  background: #7a63ce;
  color: #fff;
  cursor: default;
}

.general-info p {
  line-height: 1;
  margin: 1rem 0;
}

.video-center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem auto;
  width: 20vw;
    
    height: 70vh;
    overflow: hidden;
    border-radius: 2rem;
}

.video-center iframe {
aspect-ratio: 9 / 16;
height: auto;
}

/*.video-center {
  width: 600px;
  max-width: 95vw;
  margin: 2rem auto 0 auto;
  display: block;
}*/



h1 {
  font-size: 3rem;
  font-weight: 800;
  margin: 2rem 0 1rem 0;
  text-align: left;
  letter-spacing: 0.05em;
  margin-left: 5rem; /* Optional: aligns with your content on desktop */
}

@media (max-width: 799px) {
  h1 {
    text-align: center;
    margin-left: 0;
  }
}

.profile-picture {
  display: block;
  margin: 3rem 0 0 5rem; /* Reduced top margin from 15rem to 3rem */
  width: 600px;
  height: 600px;
  object-fit: cover;
  border-radius: 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  z-index: 10;
}

/* If your .wrapper.main or body is not position: relative, add this to ensure absolute works as expected: */
.wrapper.main, body {
  position: relative;
}

@media (max-width: 799px) {
  section {
  display: block;
  
}
  .video-center {
    width: 95vw;
    max-width: 600px;
    margin: 2rem auto 0 auto;
    display: block;
    height: auto; /* Remove fixed height */
  }
  .video-center iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border: none;
    display: block;
  }


  .denis-info-vertical {
    width: 100vw;
    margin: 0;
    align-items: center;
    display: flex;
    justify-content: center;
  }
  .square-text-box {
    width: 95vw;
    max-width: 600px;
    margin: 0 auto;
    padding: 1rem;
    box-sizing: border-box;
    align-items: center;   /* Center content horizontally */
    text-align: center;    /* Center text */
    display: flex;
    flex-direction: column; /* Ensure vertical stacking */
    word-break: break-word;      /* Break long words if needed */
    font-size: 1rem;             /* Slightly smaller font for mobile */
    line-height: 1.4;
    border-radius: 0 0 1.5rem 1.5rem; /* Only bottom corners rounded */
  }
  .profile-picture {
    width: 300px;               /* Smaller but keeps square shape */
    height: 300px;
    margin: 2rem auto 0 auto;
    display: block;
    object-fit: cover;
    border-radius: 2rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  }
  .rectangle-row {
    width: 95vw;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0;
  }
  .rectangle-box-vertical {
    width: 50%;         /* For two tabs, each takes half the width */
    min-width: 0;
    box-sizing: border-box;
  }
  section {
        background-image: url('https://odraz.umelecka.cz/wp-content/uploads/2025/06/packy-mobil2.png');
        background-repeat: no-repeat;
        background-position: center 37%;
        background-size: 128%;
    }
  }


.tyna-about-text {
  text-align: left;
}

@media (max-width: 799px) {
  .tyna-about-text {
    text-align: center;
    font-size: 1rem;             /* Match font size for about text */
    line-height: 1.4;
    word-break: break-word;
    margin: 0;
  }
}

/* Social icons style */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
}
.social-icons a {
  color: #7a63ce;
  font-size: 2rem;
  transition: color 0.2s;
}
.social-icons a:hover {
  color: #292639;
}

