@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&display=swap');

/* === ZÁKLADNÉ NASTAVENIA === */

body {
  font-family: 'Roboto', sans-serif;
  background-color: #F4F6F8; /* jednotné svetlé pozadie pre celý web */
  color: #27364B;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* === HERO SEKCIA === */
.hero-section {
  background-color: #27364B;
  border-top: 4px solid #FF9100;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}

.hero-content {
  z-index: 10;
}

.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 3.2rem;
  margin-bottom: 10px;
  color: #fff;
}

.hero-content h2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: #e5e5e5;
  margin-bottom: 35px;
}

.contact-btn {
  display: inline-block;
  background-color: #FF9100;
  border: 2px solid #FF9100;
  color: #fff;
  padding: 10px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-btn:hover {
  background-color: #ffb347;
  border-color: #ffb347;
  color: #fff;
}

/* === WRAP === */
.main-wrap {
  max-width: 90%;
  margin: 4rem auto;
  background: transparent; /* odstránené extra pozadie */
}

/* === KARTY === */
.tuke-card {
  border-radius: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #ffffff;
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.tuke-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}
.tuke-card .card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 0.8rem;
  color: #27364B;
}

.tuke-card .card-text {
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
  color: #444;
  line-height: 1.6;
}

/* === TMAVÁ KARTA (NEWS) === */
.card-dark {
  background: linear-gradient(180deg, #27364B 0%, #1f2a3c 100%);
  color: #dcdcdc;
}

.card-dark .card-title {
  color: #FFB400 !important;
}

.card-dark .card-text {
  color: #dcdcdc;
}

/* === READ MORE tlačidlo === */
.readmore-btn {
  display: inline-block;
  align-self: flex-start;
  border: 2px solid #FF9100 !important;
  color: #FF9100 !important;
  border-radius: 25px;
  padding: 8px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.3s;
  text-decoration: none;
  margin-top: 10px;
  width: auto;
  text-align: left;
}

.readmore-btn:hover {
  background-color: #FF9100 !important;
  color: #fff !important;
  transform: translateY(-2px);
}

.card-dark .readmore-btn {
  align-self: flex-start;
}

/* === CONTACT FORM SEKCIA === */
.contact-section {
  background: #F6F7F9; /* rovnaké pozadie ako za kartami – pôsobí súvisle */
  padding: 80px 0;
  margin-top: 2rem;
  border-top: 2px solid rgba(0,0,0,0.03);
}

.contact-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 2.4rem;
  color: #27364B;
  margin-bottom: 1.5rem;
  text-align: center;
}

.contact-card {
  background-color: #fff;
  border-radius: 15px;
  padding: 40px 45px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.contact-form label {
  display: block;
  font-weight: 600;
  color: #27364B;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 2px solid #e2e2e2;
  border-radius: 10px;
  padding: 10px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #FF9100;
  box-shadow: 0 0 6px rgba(255,145,0,0.4);
  outline: none;
}

.contact-submit-btn {
  background-color: #FF9100;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  transition: 0.3s;
  cursor: pointer;
}

.contact-submit-btn:hover {
  background-color: #e58a00;
  transform: scale(1.05);
}

/* === FOOTER === */
.tuke-footer {
  background-color: #27364B;
  color: #f1f1f1;
  padding: 40px 0;
  border-top: 4px solid #FF9100;
  font-family: 'Roboto', sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  text-align: center;
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-right: 10px;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.footer-logo:hover {
  opacity: 1;
}

.footer-center p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

.footer-center span {
  font-size: 0.8rem;
  opacity: 0.8;
}

.footer-right a {
  color: #FF9100;
  text-decoration: none;
  font-weight: 500;
  margin-left: 15px;
  transition: color 0.3s;
}

.footer-right a:hover {
  color: #ffb347;
}

/* === RESPONSIVITA === */
@media (max-width: 992px) {
  html { font-size: 18px; }
  .hero-content h1 { font-size: 2.4rem; }
  .hero-content h2 { font-size: 1.2rem; }
}

@media (max-width: 576px) {
  html { font-size: 17px; }
  .hero-content h1 { font-size: 2rem; }
  .hero-content h2 { font-size: 1rem; }
  .contact-card { padding: 25px; }
}
