body {
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    background: #F4F6F6;
}

html {
  font-family: 'Poppins';
  scroll-behavior: smooth;
}



.total-main {
	width: 100%;
	max-height: 100vh;
    background: #071012;
    background-image: linear-gradient(
        90deg,
        rgba(7, 16, 18, 0.5) 0%,
        rgba(150, 102, 5, 0.5) 100%
    ),
    url("images/ladnew/15f.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}








/* zaciatok real navbaru */


.nav-bar{
    height: 90px;
	width: 100%;
    margin-left: 0 auto;
    background-color: rgb(255, 255, 255);
	position: fixed;
	z-index: 1;
	
}



.brand{
    float: left;
    position: absolute;
    background: url('images/logo/logorszgold.svg');
    width: 209px;
    height: 90px;
    line-height: 49px;
    font-size: 1.5em;
}

.brand a{
    text-decoration: none;
    color: rgb(0, 0, 0);
    padding: 209px 90px;
}

.nav-container{
    max-width: 1000px;
    margin: 0 auto;
}

nav{
    float: right;
	
}

nav ul{
    list-style: none;
	padding:0;  /* tu som odjebal padding lebo tomu jebalo */
}

nav ul li{
    float: left;
    position: relative;
}

nav ul li a{
    display: block;
    padding: 0 20px;
    line-height: 70px;
    background: none;
    text-decoration: none;
    font-weight: 500;
    color: rgb(0, 0, 0);

	
}

.bodka::before {
    content: "•  ";
    color: #C0B283;
}



nav ul li a.aktivna {
  border-bottom: 3px solid #C0B283;
  color: #C0B283;
}

nav ul li a:hover {
	border-bottom: 3px solid #C0B283;
    color: #C0B283;
}



nav ul li a:not(:only-child):after{
    content: '';
    margin-left: 5px;
}

nav ul li ul li {
    min-width: 190px;
}

nav ul li ul li a{
    padding: 15px;
    line-height: 20px;
}

.nav-list i {
	margin-right: 5px;
}
.nav-dropdown{
    position: absolute;
    display: none;
    z-index: 1;
	  background: #fff;
}

.nav-dropdown li a:hover {
	background: white;
	color: #C0B283;
}

.nav-mobile{
    display: none;
    position: absolute;
    top: 0.5rem;
    right: 30px;
    height: 70px;
    width: 70px;
}

#nav-toggle{
    position: absolute;
    left: 18px;
    top: 22px;
    cursor: pointer;
    padding: 10px 35px 15px 0px;
}

#nav-toggle span,
#nav-toggle span::before,
#nav-toggle span::after{
    position: absolute;
    display: block;
    content: '';
    background: #000;
    height: 5px;
    width: 35px;
    transition: all 300ms ease-in-out;
}

#nav-toggle span::before{
    top: -10px;
}

#nav-toggle span::after{
    bottom: -10px;
}

#nav-toggle.active span{
    background-color: transparent;
}

#nav-toggle.active span::before, #nav-toggle.active span::after{
    top: 0;
}

#nav-toggle.active span::before{
    transform: rotate(45deg);
}

#nav-toggle.active span::after{
    transform: rotate(-45deg);
}

@media only screen and (max-width: 768px) {

    .nav-mobile{
        display: block;
    }

    nav{
        width: 100%;
        padding: 70px 0 15px;
		  background: white;
    }

    nav ul{
        display: none;
    }

    nav ul li {
        float: none;
    }

    nav ul li a{
        padding: 15px;
        line-height: 20px;
        padding-left: 25%;
    }


    nav ul li ul li a{
        padding-left: 30%;
    }

    .nav-dropdown{
        position: static;
    }
}

@media screen and (min-width: 799px){
    .nav-list{
        display: block !important;
    }

	
}

@media screen and (max-width: 331px) {
	.brand {
		font-size: 1.2rem;
	}
}

/* koniec real navbaru */






.main-container {
	width: 100%;
	height: 100vh;
	display:flex;
	justify-content: center;
	align-items: center;
}

.main-bg {
    max-width: 100%;
    max-height: 800px;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* push text/content to the right */
    text-align: right;
}

.main-bg h1 {
	color: #fff;
	font-family: 'Poppins';
	font-weight: 600;
	font-size: 3rem;
	margin-bottom: 79%;
}

.main-bg p {
	color: white;
    max-width: 550px;   /* keeps it from overflowing */
    margin: 10rem 0;
    font-family: 'Poppins';
	font-weight: 600;
	font-size: 2rem;
    margin-left: auto;  /* align to right edge */
    text-align: left;
    margin-bottom: 300px;
}

.t1 {
    color: #C0B283;
    margin-left: 100px;
    text-transform: uppercase;
}

.t2 {
    text-transform: uppercase;
    margin-left: 100px;
    color: #C0B283;
}

.t3 {
    color: #C0B283;
    margin-left: 100px;
    text-transform: uppercase;
}

.main-bg a {
	padding: 25px 55px;
	color: #fff;
	background-color: #C0B283;
	margin-top: 4rem;
	display: inline-block;
	font-family: 'Poppins';
	font-size: 16px;
	text-align: center;
	text-shadow: none;
    border-radius: 25px;
	text-decoration: none;
    font-weight: 500;
    margin-left: 170px;
}

.main-bg a:hover {
	color: black;
	background: white;
    font-weight: 400;
}

/* ---- Responsive ---- */
@media (max-width: 757px){
    body {
        overflow-x: hidden; /* Hide horizontal scrollbar */
    }

    .total-main {
        background-image: linear-gradient(
        90deg,
        rgba(7, 16, 18, 0.5) 0%,
        rgba(150, 102, 5, 0.5) 100%
    ),
    url("images/ladnew/15fmob.webp");
    }

    .main-bg {
        align-items: center;  /* center on mobile */
        text-align: center;
    }

	.main-bg p {
		font-size: 1rem;
        max-width: 90%;
        margin-left: 120px;
        margin-bottom:300px;
	}
    

    .main-bg h1 {
	    font-size: 1.2rem;
        margin-bottom: 500px;
        
    }

	.main-bg h2 {
		font-size: 1rem;
	}

	.main-bg button {
		width: 7rem;
		height: 3rem;
		border:none;
	}

	.main-bg a{
		font-size: 13px;
        padding: 15px 20px;
	}
}















.container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 20px;
    
}

.content {
    flex: 1;
    max-width: 600px;
    position: relative;
    
    
}



.heading {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.4;
}

.headingspan {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.4;
    display: block;
    margin-top: 0.67em;
    margin-bottom: 0.67em;
    margin-left: 0;
    margin-right: 0;
}


.content p {
    text-align: left;
    padding-right: 6rem;
    
}

.number {
    position: absolute;
    left: -50px;
    top: -20px;
    font-size: 100px;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.1);
    z-index: -1;
}

.image {
    flex: 1;
    max-width: 414px;
    max-height: 300px;
    text-align: center;
    justify-content: center;
}

.image img {
    max-width: 414px;
    max-height: 300px;
    border-radius: 10px;
}

.cta-button {
    background-color: #C0B283;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
    text-decoration: none;


}



.cta-button:hover {
    background: white;
    color: #C0B283;
}



@media (max-width: 768px) {
    .number {
        font-size: 60px;
        left: -30px;
        top: -10px;
    }

    .heading {
        font-size: 24px;
        text-align: center;
    }

    .headingspan {
        font-size: 24px;
        text-align:center;
        
    }

    .image img {
        max-width: 340px;
        max-height: 230px;
   
    }

    .content p {
        padding: 2rem;
        text-align: center;
    }

    .cta-button {
        margin-left: 15%;
    }
}

@media (max-width: 480px) {
    .container {
        flex-direction: column;
    }

    .number {
        font-size: 40px;
        left: 0;
        top: -10px;
    }

    .heading {
        font-size: 24px;
        text-align: center;
    }

    .headingspan {
        font-size: 24px;
        text-align: center;
    }

    .image {
        margin-top: 20px;
    }
}















         .obal-about-section {
        width: 100%;
        min-height: 700px;
        display: flex;
        background: white;
        justify-content: center;
        }

    .about-section {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        padding: 50px 20px;
        gap: 40px;
    }

    .about-text {
        flex: 1 1 400px;
        max-width: 500px;
        text-align: center; /* center heading + underline */
    }

    .about-text h2 {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 20px;
        position: relative;
        display: inline-block; /* shrink underline to text width */
        padding-bottom: 10px;
    }

    /* Fancy underline */
    .about-text h2::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 50px; /* underline width */
        height: 3px;
        background-color: #d4af37; /* gold color */
        border-radius: 2px;
    }

    .about-text p {
        color: #6b6b6b;
        line-height: 1.6;
        margin-bottom: 20px;
        padding-left: 30px;
        padding-right: 30px;
    }




    .social-media {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
    }

    .social-media a {
        color: rgb(19, 15, 15);
        text-decoration: none;
        font-size: 30px;
        margin-right: 5px;
    }

    .social-media a:hover {
        color: #C0B283;
    }



    .about-text .btn {
        background: black;
        color: white;
        padding: 12px 25px;
        border: none;
        border-radius: 25px;
        cursor: pointer;
        text-decoration: none;
        font-weight: bold;
        display: inline-block;
    }

    .about-text .btn:hover {
        background: black;
        color: #C0B283;
    }

    .about-image {
        flex: 1 1 300px;
        text-align: center;
        max-width: 700px;
        
    }

    .about-image img {
        max-width: 700px;
        border-radius: 10px;

    }

    .signature {
        font-family: cursive;
        font-size: 1.5rem;
        margin-top: 10px;
        display: block;
    }

    @media (max-width: 768px) {
        .about-section {
            flex-direction: column;
            text-align: center;
        }
        .about-text {
            max-width: 70%;
        }
        .about-text h2::after {
            width: 40px; /* smaller underline on mobile */
        }

        .about-text p {
        color: #6b6b6b;
        line-height: 1.6;
        margin-bottom: 20px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .about-image {
        flex: 1 1 300px;
        text-align: center;
        max-width: 300px;
    }

    .about-image img {
        max-width: 300px;
        border-radius: 10px;

    }

    }
























.kontakt {
    display:flex;
    justify-content:center;
    align-items:center;
    /* background: url('images/dividers/divider-novy.jpg') no-repeat; */ 
    background:rgb(255, 255, 255);
	background-size: 100% 100%;
	width: 100%;
    margin-top: 6rem;
    
	  
}

.contact-form {
    width: 1000px;
    padding: 20px;
    
   
    opacity: 0.98;
    
    box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 0px 0px outset;
    
}

.contact-form h4 {
  color: black;
  font-weight: 500;
    font-size: 2rem;
    display: block;
    font-size: 1.75em;
    margin-top: 0.67em;
    margin-bottom: 0.67em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}



.contact-form p {
    color: black;
    font-size: 18px;
	margin-top: 40px;
    margin-right: 12rem;
	font-size: 1rem;
    font-weight: 400;
    
}

.contact-form h3 {
    color: #a0893f;
    text-transform: uppercase;
}

.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"] {
    background: #F4F6F6;
	border:none;
	border-bottom:1px solid rgb(185, 185, 185);
    max-width: 750px;
    padding: 10px 3px;
    width: 90%;
    color: black;
}

.contact-form input::placeholder {
    padding-left: 10px;
}




.contact-form input[type="tel"] {
    width: 250px;
}

.contact-form select {
    width: 300px;
    padding: 15px 10px;
    margin: 20px auto;
    background: none;
}

.contact-form input[type="number"] {
    width: 300px;
    padding: 15px 10px;
    margin: 20px auto;
    display: none;
	
}

.contact-form #span {
    display:none;
}

.contact-form textarea {
    
	border:none;
	border-bottom:1px solid rgb(185, 185, 185);
    margin: 20px auto;
	border-radius: 5px;
    padding: 15px 10px;
	width: 740px;
    height: 150px;
    color: black;
    background: #F4F6F6;
}

.contact-form input[type="text"]:focus, .contact-form input[type="email"]:focus, textarea:focus {
    
   
}

.contact-form input[type="submit"] {
    
    background: #C0B283;
	color: white;
	height: 40px;
	width: 200px;
	font: 15px 'Poppins';
	text-shadow: none;
    cursor: pointer;
	border: none;
}


.contact-form input[type="submit"]:hover {
    background-color: white;
    color: #C0B283;
}




@media (max-width: 1071px) {

    .contact-form {
         text-align: center;
         
    }

    .contact-form p {
        text-align: center;
        padding: 0px 18px;
        margin-right: 0;
    }
	.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"] {
		background: #F4F6F6;
		margin: 20px 20px;
		text-align:center;
		border:none;
		padding: 15px 10px;
		width: 300px;
		color: black;
		box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.3);
	
	}
	
	
	
	.contact-form input[type="tel"] {
		width: 640px;
	}

	.contact-form textarea {
		background: #F4F6F6;
		margin: 20px auto;
		text-align:center;
		border: none;
		box-shadow: 3px 3px 3px 0px rgba(0,0,0,0.3);
		padding: 15px 10px;
		width: 640px;
		height: 300px;
		color: black;
	}
}




@media (max-width: 777px) {
	.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"] {
		background: #F4F6F6;
		margin: 20px 20px;
		text-align:center;
		border:none;
		padding: 15px 10px;
		width: 150px;
		color: black;
		box-shadow: 3px 3px 3px 0px rgba(0,0,0,0.3);
	
	}
	
	
	
	.contact-form input[type="tel"] {
		width: 340px;
	}

	.contact-form textarea {
		background: #F4F6F6;
		margin: 20px auto;
		text-align:center;
		border: none;
		box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.3);
		padding: 15px 10px;
		width: 340px;
		height: 300px;
		color: black;
	}
}





@media (max-width: 468px) {

    .contact-form {
        text-align: center;
    }

    .contact-form h2 {
        margin-right: 0;
    }



	.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"] {
		background: #F4F6F6;
		text-align:center;
		border:none;
		padding: 8px 5px;
		width: 230px;
		color: black;
		box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.3);
        margin:0;
	
	}
	
	
	
	.contact-form input[type="tel"] {
		width: 230px;
	}

	.contact-form textarea {
		background: #F4F6F6;
		text-align:center;
		border: none;
		box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.3);
		padding: 15px 10px;
		width: 230px;
		height: 300px;
		color: black;
	}
}





















  .obal-team-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh; /* aby bolo vertikálne centrované */
  margin: 0;
  background-color: #F4F6F6; /* tmavé pozadie pre kontrast */
  
}

.team-section {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.5rem;
  max-width: 1000px; /* obmedzenie šírky sekcie */
  height: 100%;
  background: #F4F6F6;
  color: #000000;
 
}

.team-content {
  flex: 1 1 250px;
  font-size: 0.9rem; /* menší text */
}

.team-content h2 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  color: #C0B283;
}

.team-content h3 {
  font-size: 1.3rem;
  margin-top: 1rem;
}

.team-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.team-content ul li {
  margin-bottom: 0.3rem;
}

.team-content ul li::before {
  content: "• ";
  color: #C0B283;
}

.team-image {
  flex: 1 1 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-image img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Responzívne pre mobily */
@media (max-width: 768px) {
  .team-section {
    flex-direction: column;
    text-align: center;
  }
  
  .team-content, .team-image {
    flex: 1 1 100%;
  }
}























.footer {
      background-color: #1a1a1a;
      color: white;
      padding: 40px 20px;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 0 auto;
      gap: 40px;
      justify-content: space-evenly;

    }

    .footer-column {
     
      
    }

    .footer-column h4 {
      margin-bottom: 15px;
      font-size: 1.1rem;
    }

    .footer-column h5 {
    	font-size: 16px;
    	font-weight: normal;
    }

    .footer-column p {
    	font-size: 16px;
    }
    .footer-column a {
      color: #ccc;
      text-decoration: none;
      line-height: 1.8;
      font-size: 0.95rem;
    }

    .footer-column a:hover {
      color: #C0B283;
    }

    .footer-logo {
      margin-bottom: 15px;
    }

    .footer-logo img {
      width: 209px;
    }

    .icon {
      margin-right: 10px;
    }

    .map {
      width: 100%;
      height: 200px;
      border: 0;
    }

    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .footer-column {
        max-width: 90%;
      }
    }







